*{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}
body{
  overflow-x: hidden;
}

.top-nav {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background:linear-gradient(rgba(4,9,30,0.8),rgba(4,9,30,0.8));
  color: #fff;
}

.left-section img {
  max-width: 150px;
  height: auto;
}

.center-section {
  text-align: center;
  color: gold;
}

.center-section h1 {
  font-size: 35px;
  margin: 5px 0;
}

.center-section p {
  font-size: 16px;
  margin: 5px 0;
  color: #ffffff;
}

.right-section {
  display: flex;
  align-items: center;
}

.circle-images img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-left: 10px;
}


.header{
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;

}
nav .skew{
  width: 32%;
  margin-left:-30px;
  height: 90px;
  background-image: linear-gradient(rgba(17, 17, 17, 0.8),rgba(17, 17, 17, 0.8));
  margin-left: 0%;
  -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  position: relative;
  cursor: pointer;

}

nav{
  display: flex;
  justify-content: space-between;
  height: 90px;
  padding:0%;
  margin: 0 auto;
  align-items: center;
  background:rgba(4, 9, 30, 0.5);
  width: 100%;
}
nav img{
  width: 70px;
  height: 70px;
  margin: 2% 10px;
  border: 3px solid yellow;
  border-radius: 50px;
}

.nav-links ul li{
  list-style: none;
  display: inline-block;
  padding: 8px 2px;
  position: relative;
  margin-top: 1%;
  margin-right: 20px;
}
.nav-links ul li a{
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;

}
.nav-links ul li::after{
  content: '';
  width:0;
  height: 2px;
  background:rgb(242, 187, 6);
  display: block;
  margin: auto;
}
.nav-links ul li:hover::after{
  width: 100%;
}
nav .fa-solid{
  display: none;
}
marquee a{
  color: rgb(242, 187, 6);
  font-size: 1.5em ;
}
/* Style the dropdown */
.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(35, 36, 51);
  width: 250px;
  z-index: 1;
  color: gold;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  padding: 10px 20px;
  display: block;
  text-decoration: none;
}

.dropdown-content a:hover {
  color: gold;
  background-color: rgba(4,9,30,0.8);
}


@media(max-width:700px){

  .header{
      overflow: hidden;

  }
  .top-nav{
    display: inline-block;
  }
  .center-section h1{
    font-size: 25px;
    margin: auto;
  }
  .center-section h2,h3{
    font-size: 20px;
  }
  .center-section .enlight{
    display: none;
  }
  .center-section p{
    font-size: 20px;
  }
  .circle-images{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%; 
    margin: 0 auto;
  }
  .circle-images img {
    display: inline-block;
    width: 70px;
    height: 70px;
  }
  .left-section img{
    display: block;
    margin: 0 auto;
    width: 70px;
    height: 70px;
  }
  .nav-links ul li a{
    font-size: 0.9rem;
  }
  

  nav .skew{
      width: 100%;
      height: 90px;
  }
  nav .skew img{
      margin-top: 4%;
      width: 60px;
      height: 60px;
  }

  nav img{
      margin: 2% 5px;
  }

  .text-box span{
      font-size: 10px;
  }
  .nav-links ul li{
      display: block;
      text-align: left;
      font-size: 10px;  
    }
  .nav-links{
      position: absolute;
      background: rgba(4,9,30,0.8);
      height: auto;
      width: 200px;
      top: 0;
      right: -200px;
      text-align:left;
      z-index: 2;
      transition: 1s;
  }
  nav .fa-solid{
      display: block;
      margin: 10px;
      font-size: 22px;
      cursor: pointer;
      margin-right: 5%;
  }
  .nav-links ul{
      padding: 30px;
  }
}

@media (min-width: 700px) and (max-width: 900px){

  .header{
      height: 42vh;
      overflow: hidden;
  }
  nav .skew{
      width: 80%;
      height: 90px;
  }
  .text-box span{
      font-size: 10px;
  }
  .nav-links ul li a{
    font-size: 15px;
  }
  .nav-links ul li{
      display: block;
      margin: 0%;
  }
  .nav-links{
      position: absolute;
      background: rgba(4,9,30,0.8);
      height: 100vh;
      width: 200px;
      top: 0;
      right: -200px;
      text-align:left;
      z-index: 2;
      transition: 1s;
  }
  nav .fa-solid{
      display: block;
      margin-right: 5%;
      font-size: 22px;
      cursor: pointer;
      font-size: 40px;
  }
  .nav-links ul{
      padding: 30px;
  }
}

@media (max-width: 1024px) {
  nav img{
    width: 50px;
    height: 50px;
    margin: 2% 0px
  }
}
