COURSE PAGES – GALACTIC THEME

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: radial-gradient(circle at top, #020617, #0f172a);
  color: #e5e7eb;
}

/* HERO */
.course-hero {
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
}

.course-hero h1 {
  font-size: 3rem;
  color: #e0e7ff;
  margin-bottom: 12px;
}

.course-hero p {
  max-width: 720px;
  margin: auto;
  color: #c7d2fe;
  font-size: 1.1rem;
}

/* SECTION */
.course-section {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}

/* GLASS CARD */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(12px);
}

/* TOPICS */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.topic {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* PRICING */
.price {
  font-size: 2.2rem;
  color: #38bdf8;
  margin-bottom: 10px;
}

.enroll-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6366f1, #38bdf8);
  color: #020617;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.enroll-btn:hover {
  transform: scale(1.05);
}

/* FOOTER */
.course-footer {
  text-align: center;
  padding: 40px 20px;
  color: #94a3b8;
}

/* Specifically for Generative AI Course Page */
body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#0f172a;
color:white;
}

/* HERO */

.course-hero{
text-align:center;
padding:100px 20px 60px 20px;
}

.course-hero h1{
font-size:48px;
margin-bottom:10px;
}

.course-hero p{
max-width:600px;
margin:auto;
opacity:0.8;
}

.limited-badge{
margin-top:15px;
font-weight:bold;
color:#ffd700;
}

/* SECTIONS */

.course-section{
margin:40px auto;
max-width:1100px;
padding:40px;
}

.glass-card{
background:rgba(255,255,255,0.05);
border-radius:10px;
}

/* TABLES */

.course-tables{
display:flex;
gap:30px;
flex-wrap:wrap;
margin-top:20px;
}

.course-table{
flex:1;
min-width:320px;
}

table{
width:100%;
border-collapse:collapse;
margin-top:15px;
}

th, td{
border:1px solid rgba(255,255,255,0.2);
padding:12px;
text-align:left;
}

th{
background:rgba(255,255,255,0.1);
}

.course-price{
margin-top:15px;
font-size:20px;
font-weight:bold;
text-align:center;
}

/* BUTTON */

.register-btn{
display:block;
margin-top:20px;
text-align:center;
padding:12px;
background:#6366f1;
color:white;
text-decoration:none;
border-radius:6px;
font-weight:bold;
transition:0.3s;
}

.register-btn:hover{
background:#4f46e5;
}

/* TOPICS */

.topics-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin-top:20px;
}

.topic{
background:rgba(255,255,255,0.08);
padding:20px;
border-radius:8px;
text-align:center;
}

/* FOOTER */

.course-footer{
text-align:center;
padding:40px 0;
opacity:0.6;
}

/* For Back to Home Screen button - Start */
.top-nav{
position:fixed;
top:20px;
left:20px;
z-index:1000;
}

.home-btn{
text-decoration:none;
padding:8px 14px;
background:rgba(255,255,255,0.1);
color:white;
border-radius:6px;
font-size:14px;
backdrop-filter:blur(5px);
transition:0.3s;
}

.home-btn:hover{
background:rgba(255,255,255,0.2);
}

/* For Back to Home Screen button - Complete */

