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

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

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

.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;
    }
}



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

/* ================= BLACK SECTION ================= */

.premium-section {
  background: #0c0f14;
  color: white;
  padding: 100px 8%;
}

.premium-header {
  text-align: center;
  margin-bottom: 60px;
}

.premium-header h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.premium-header span {
  color: #00e0ff;
}

.premium-header .highlight {
  color: #00e0ff;
}

.premium-header p {
  margin-top: 20px;
  color: #bbb;
}

.premium-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.feature h3 {
  margin: 15px 0 10px;
}

.feature p {
  font-size: 14px;
  color: #aaa;
}

.icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: auto;
}

.yellow { background: #f4c542; }
.blue { background: #00bcd4; }
.red { background: #ff6b6b; }
.green { background: #2ecc71; }

/* ================= LIGHT SECTION ================= */

.why-section {
  background: #f4f4f4;
  padding: 100px 20px;
  text-align: center;
}

.why-container {
  max-width: 800px;
  margin: auto;
}

.why-container h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

.why-container h2 span {
  color: #ffb400;
}

.why-container p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.illustration {
  margin-top: 40px;
  font-size: 60px;
}

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

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

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

  .premium-header h1 {
    font-size: 32px;
  }

  .why-container h2 {
    font-size: 26px;
  }
}


/* ================= DARK SECTION ================= */

.dark-section{
  background:#0c0f14;
  color:white;
  padding:100px 10%;
}

.dark-title{
  text-align:center;
  font-size:36px;
  margin-bottom:80px;
}

.dark-block{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:100px;
  gap:50px;
}

.dark-block.reverse{
  flex-direction:row-reverse;
}

.dark-img{
  font-size:100px;
  text-align:center;
  ;img {
    width: 100%;
    height: auto;
  }
}

.dark-text{
  flex:1;
}

.dark-text h3{
  font-size:22px;
  margin-bottom:20px;
}

.dark-text p{
  color:#ccc;
  line-height:1.8;
}

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

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

@media(max-width:768px){
  .courses-grid{
    grid-template-columns:1fr;
  }

  .dark-block{
    flex-direction:column;
    text-align:center;
  }

  .dark-block.reverse{
    flex-direction:column;
  }
}


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

.container{
  width:85%;
  margin:auto;
  padding:80px 0;
  text-align:center;
}

.section-title{
  font-size:32px;
  font-weight:700;
}

.section-sub{
  color:#666;
  margin-bottom:50px;
}

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

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

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

.course-image{
  height:200px;
  background:linear-gradient(135deg,#2b8cff,#005bea);
}

.course-image.alt1{
  background:linear-gradient(135deg,#ff9966,#ff5e62);
}
.course-image.alt2{
  background:linear-gradient(135deg,#00c6ff,#0072ff);
}
.course-image.alt3{
  background:linear-gradient(135deg,#56ab2f,#a8e063);
}

.course-body{
  padding:20px;
  text-align:left;
}

.course-body h3{
  font-size:16px;
  margin-bottom:10px;
}

.price{
  display:flex;
  gap:10px;
  align-items:center;
}

.old{
  text-decoration:line-through;
  color:#999;
  font-size:14px;
}

.new{
  color:#ff9900;
  font-weight:600;
}






/* ================= 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;
}
.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;
}