*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
        
body{
  font-family: "Open Sans", sans-serif;
  font-family: 'Ubuntu', sans-serif;
  background: black;
}


.alert{
  width: 100%;
  height: 55px;
}



/*Navbar styling start from here*/

.text{
  font-weight: bold;
}

nav {
  background: white;
  height: 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  color: black;
  border-bottom: 1px solid lightgray;
}

nav.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-links{
    display: flex;
    gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #6945e0;
}

.nav-actions {
  display: flex;
  gap: 15px;
}

.nav-actions a {
  text-decoration: none;
  font-size: 1.1rem;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease;
}

.signin {
  color: black;
}

.signup{
  background: black;
  color: white;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #333;
  border-radius: 5px;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: black;
  color: #94A3B8;
  position: fixed;
  top: 70px;
  right: 0;
  width: 100%;
  padding: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  z-index: 10000;
}

.mobile-menu.show {
  display: flex;
  max-height: 500px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.mobile-menu a {
  text-decoration: none;
  color: #94A3B8;
  font-size: 1.2rem;
  margin: 10px 0;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #2f80ed;
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

.institute{
  margin-top: 100px;
}
.highlight{
  width: 100%;
  border-radius: 10px;
  margin-top: 50px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background: linear-gradient(to bottom, #0055d3, transparent);
}

.highlight .highlight_content{
  width: 150px;
  border: 1px solid lightgray;
  border-radius: 10px;
  margin-top: 15px;
  margin-bottom: 10px;
  padding: 20px;

}

.highlight_icon{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0055d3;
  text-align: center;
  line-height: 40px;
}

.herosection{
  height: 100vh;
  background: #eff6ff;
}
.hero_text{
  margin-top: 100px;
}

.course{
    margin-top: 100px;
}

.allcourse{
  margin: auto;
  margin-top: 100px;
  width: 95%;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1), -1px -1px 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 15px;
}

.course_box{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.course_box div{
  width: 150px;
  height: 150px;
  border: 1px solid lightgray;
  border-radius: 10px;
  margin-top: 35px;
}


.c_list{
  width: 100%;
/*    background: #eff6ff;*/
    border-radius: 15px;
    padding: 10px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.c_list div{
    min-width: 350px;
    padding: 15px;
    border: 1px solid lightgray;
    background: white;
    border-radius: 10px;
}

.c_list div img{
  width: 318px;
  border-radius: 10px;
  display: block;
}


.whychoose{
  margin-top: 100px;
  background: linear-gradient(180deg, #f7f9ff,#eef2ff);
  background-image: radial-gradient(#cfd6ff 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 20px;
}


.training_process{
  margin-top: 100px;
}


.process_inner{
  margin-top: 60px;
  margin-left: 50px;
}

.process_icon{
  width: 55px;
  height: 55px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: #0055d3;
  color: white;
  text-align: center;
  line-height: 55px;
}














