body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  background: #0f172a;
  color: white;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 40px;
  margin-right: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

/* Hero */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(to right, #2563eb, #1e3a8a);
  color: white;
}

.hero button {
  padding: 12px 25px;
  border: none;
  background: white;
  cursor: pointer;
  font-weight: bold;
}

/* About */
.about {
  padding: 50px;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.about img {
  width: 250px;
  border-radius: 10px;
}

/* Courses */
.courses {
  padding: 50px;
  text-align: center;
}

.course-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  width: 250px;
  padding: 20px;
  background: #2563eb;
  color: white;
  border-radius: 10px;
}

/* Contact */
.contact {
  padding: 50px;
  text-align: center;
}

.social a {
  margin: 10px;
  text-decoration: none;
  color: #2563eb;
  font-weight: bold;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #0f172a;
  color: white;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}
html {
  scroll-behavior: smooth;
}
.card {
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.enroll-btn {
  margin-top: 10px;
  padding: 8px 15px;
  border: none;
  background: white;
  color: #2563eb;
  cursor: pointer;
  font-weight: bold;
}

.enroll-btn:hover {
  background: black;
  color: white;
}
/* 🔴 Live Section */
.live {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(to right, #f1f5f9, #e2e8f0);
}

.live h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0f172a;
}

.live p {
  color: #555;
  margin-bottom: 30px;
}

/* Cards Container */
.live-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Individual Card */
.live-card {
  background: white;
  padding: 25px;
  width: 240px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

/* Hover Effect 🔥 */
.live-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Heading inside card */
.live-card h3 {
  margin-bottom: 10px;
}

/* Time text */
.live-card p {
  font-weight: bold;
  margin-bottom: 15px;
}

/* Button */
.enroll-btn {
  padding: 10px 18px;
  border: none;
  background: #2563eb;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

/* Button hover */
.enroll-btn:hover {
  background: black;
}
@media (max-width: 768px) {
  .live-container {
    flex-direction: column;
    align-items: center;
  }
}
/* 🌌 Premium Hero */
.hero {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Glow Button */
.hero button {
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  background: white;
  color: #2563eb;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background: black;
  color: white;
  box-shadow: 0 0 20px rgba(255,255,255,0.6);
}
.card {
  width: 260px;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.enroll-btn {
  margin-top: 10px;
  padding: 8px 15px;
  border: none;
  background: white;
  color: #2563eb;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.enroll-btn:hover {
  background: black;
  color: white;
}
.live-badge {
  display: inline-block;
  background: red;
  color: white;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 20px;
  margin-bottom: 8px;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0.4; }
}
.yt-video {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }

  .card {
    width: 90%;
  }
}
/* Certification Section */
.certification {
  padding: 50px;
  text-align: center;
  background: #f8fafc;
}

.certification h2 {
  margin-bottom: 10px;
}

.cert-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cert-card {
  background: #2563eb;
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.cert-card:hover {
  transform: scale(1.05);
}
.cert-text {
  margin-top: 10px;
  font-weight: bold;
  color: #ffd700;
}
.card {
    background: #1e293b;
    padding: 20px;
    border-radius: 12px;
    width: 250px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.card:hover {
    transform: scale(1.05);
    border: 1px solid #00c6ff;
    box-shadow: 0 0 25px rgba(0,198,255,0.7);
}