@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Prompt', sans-serif;
}

body {
  background: #0f0f14;
  color: white;
}

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

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: #0b0b0f;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  color: #ffb400;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #ddd;
  font-weight: 400;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ffb400;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.dark {
  background: #1f1f25;
  color: white;
}

.btn.primary {
  background: #ffb400;
  color: black;
    ; a{
        text-decoration: none;
        color: #fff;
    }
}



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

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 8%;
  min-height: 90vh;
  background: radial-gradient(circle at 20% 30%, #5b2d8d, transparent 40%),
              radial-gradient(circle at 80% 70%, #ff0066, transparent 40%),
              linear-gradient(135deg, #2a1c55, #0f0f14);
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 48px;
  color: #ffb400;
  margin-bottom: 15px;
}

.hero-content h2 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-content p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Path Buttons */

.paths {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.paths button {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.paths button:hover {
  background: #ffb400;
  color: black;
  border: none;
}

/* ================= IMG HEADER ================= */

.circle-img {
  width: 550px;
  height: 550px;
  border-radius: 50%;
  object-fit: cover;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .video-card {
    margin-top: 40px;
  }

  .nav-links {
    display: none;
  }
}





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

.courses-section {
  padding: 80px 8%;
  background: #f5f5f5;
  color: #111;
}

.courses-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 40px;
}

.courses-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.courses-header p {
  color: #555;
  max-width: 500px;
}

.inhouse-btn {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  background: black;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

/* ================= GRID ================= */

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

/* ================= CARD ================= */

.course-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.course-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.course-content {
  padding: 20px;
}

.course-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
}

.course-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .courses-header {
    flex-direction: column;
  }

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


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

.footer {
  background: linear-gradient(to right, #0f0f0f, #141414);
  color: #ddd;
  padding-top: 60px;
  font-family: 'Prompt', sans-serif;
}

.footer-container {
  width: 85%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding-bottom: 50px;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #aaa;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffb400;
}

.footer-col .mt {
  margin-top: 25px;
}

.contact li {
  color: #bbb;
}

/* ================= BOTTOM BAR ================= */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #888;
  flex-wrap: wrap;
  gap: 10px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}