
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    padding-top: 95px;
    font-family: Poppins, sans-serif;
}


.container{
  width:90%;
  max-width:1472px;
  margin:auto;
}


.logo-img{
  height:42px;
}


.nav-link{
  font-weight:500;
  margin:0 12px;
  transition:0.3s;
}

.nav-link.active{
  color:#FF5C2A !important;
}

.nav-link:hover{
  color:#FF5C2A !important;
}


.contact-btn{
  background:#FF5C2A;
  color:#fff;
  padding:10px 20px;
  border:none;
  transition:0.3s;
}

.contact-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(0,0,0,0.2);
}



.popular-section{
  background:#FFFFFF;
  padding:80px 0;
}

.popular-title{
  font-size:34px;
  font-weight:700;
}

.popular-sub{
  color:#555;
}

.popular-desc{
  width:70%;
  margin:10px auto;
  color:#777;
  font-size:14px;
}


.course-card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  transition:0.3s;
}

.course-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 25px rgba(0,0,0,0.1);
}

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

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

.course-body h6{
  font-weight:700;
}

.price{
  color:#FF5C2A;
  font-weight:600;
}

.start-btn{
  width:100%;
  border:1px solid #FF5C2A;
  background:none;
  color:#FF5C2A;
  padding:9px;
  border-radius:4px;
  transition:0.3s;
}

.start-btn:hover{
  background:#FF5C2A;
  color:#fff;
  transform:scale(1.03);
}


.see-more{
  margin-top:30px;
}



@media(max-width:992px){
  .popular-desc{
    width:90%;
  }
}

@media(max-width:768px){

  .popular-title{
    font-size:26px;
  }

  .course-body{
    text-align:center;
  }
}



.footer{
  background:#050517;
  color:#fff;
  padding-top:70px;
}

.footer-container{
  width:90%;
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}

.footer-col{
  flex:1;
  min-width:180px;
}


.logo{
  color:#ffd400;
  margin-bottom:15px;
}


.footer-about p{
  font-size:13px;
  color:#FFFFFF;
  width:80%;
  line-height:1.6;
}


.footer-title{
  margin-bottom:20px;
  font-size:18px;
  letter-spacing:1px;
  font-weight:600;
  color:#fff;
  position:relative;
}

.footer-title::after{
  content:"";
  width:0;
  height:2px;
  background:#ffd400;
  position:absolute;
  left:0;
  bottom:-6px;
  transition:0.3s ease;
}

.footer-title:hover::after{
  width:40px;
}

.footer-nav{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-nav a{
  text-decoration:none;
  color:#cfcfcf;
  font-size:13px;
  transition:all 0.3s ease;
  position:relative;
}

.footer-nav a:hover{
  color:#fff;
  padding-left:6px;
}

.footer-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-2px;
  width:0;
  height:1px;
  background:#ffd400;
  transition:0.3s;
}

.footer-nav a:hover::after{
  width:100%;
}


.social-links{
  margin-top:20px;
}

.social-links a{
  margin-right:18px;
  font-size:12px;
  color:#cfcfcf;
  text-decoration:none;
  transition:all 0.3s ease;
  display:inline-block;
}

.social-links a:hover{
  color:#ffd400;
  transform:translateY(-3px);
}

.subscribe{
  font-size:12px;
  color:#cfcfcf;
  margin-top:10px;
}

.footer-bottom{
  border-top:1px solid #2a2a40;
  text-align:center;
  padding:20px 0;
  margin-top:50px;
}

.footer-bottom p{
  font-size:13px;
  color:#cfcfcf;
}

.footer-bottom a{
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}

.footer-bottom a:hover{
  color:#ffd400;
  text-decoration:underline;
}



@media (max-width:1200px){

  .footer-container{
    width:92%;
  }

  .footer-about p{
    width:100%;
  }
}

@media (max-width:992px){

  .footer-col{
    flex:45%;
  }
}

@media (max-width:768px){

  .footer{
    padding-top:50px;
  }

  .footer-container{
    flex-direction:column;
    gap:35px;
  }

  .footer-col{
    width:100%;
  }
}

@media (max-width:480px){

  .footer-col h3{
    font-size:15px;
  }

  .footer-bottom p{
    font-size:12px;
  }
}