* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
}
/* Hero section */
.Hero {
  background: linear-gradient(
    136deg,
    rgba(31, 95, 244, 1) 0%,
    rgba(31, 95, 244, 1) 35%,
    rgba(15, 18, 191, 1) 69%  );
  padding: 10px 10px 40px 10px;
  text-align: center;
  width: 100%;
}
.Hero nav {
  margin: 20px 0px 50px 0px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  gap: 40px;
  z-index: 90;
}
#home > nav > a{
  color: #fff;
  font-family: poppins;
  text-decoration: none;
  font-weight: 600;
  font-size: 25px;
}
nav .fa-network-wired{
  font-size: 35px;
  color: rgb(14, 16, 171) ;
}
.fa-xmark, .fa-bars {
  color: #fff;
  font-size: 25px;
  cursor: pointer;
  display: none;
}
nav ul {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 10px 0px;
}
nav ul li {
  list-style: none;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: poppins;
}
nav ul li a::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #fff;
  display: block;
  margin: auto;
  transition: all 0.5s;
}
nav ul li a:hover::after {
  width: 100%;
}
nav .bt {
  display: flex;
  gap: 30px;
  padding: 0px 0px 0px 30px;
}
.bt button {
  background-color: transparent;
  padding: 7px 35px;
  border-radius: 10px;
  border: 2px solid lightblue;
  transition: all .3s;
}
.bt button:hover{
  transform: scale(1.05);
}
.bt button a {
  color: #fff;
  text-decoration: none;
  font-family: poppins;
  font-weight: 600;
}
button.btn-color {
  background-color: blue;
  border: none;
}
.hero-text {
}
.hero-text h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 30px;
  font-family: "Onest", sans-serif;
}
.hero-text p {
  font-family: poppins;
  color: #fff;
  margin-bottom: 20px;
  font-size: 16px;
}
.hero-text .buttons {
  width: 500px;
  padding: 8px 0px;
  max-width: 100%;
  margin: 0px auto;
  background-color: #fff;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 100px;
}

.buttons input {
  padding: 8px 5px;
  background-color: transparent;
  border: none;
  width: 350px;
  max-width: 80%;
  outline: none;
  font-size: 16px;
}
.buttons button {
  background: linear-gradient(
    136deg,
    rgba(31, 95, 244, 1) 0%,
    rgba(31, 95, 244, 1) 35%,
    rgba(15, 18, 191, 1) 69% );
  color: #fff;
  padding: 0px 15px;
  border: none;
  border-radius: 20px;
  font-family: poppins;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
}
.buttons button:hover{
  transform: scale(1.05);
}

/* float */
.hero-img {
  text-align: center;
  margin: 0px auto;
}
.hero-img img {
  width: 600px;
  margin-top: -100px;
  padding: 0px 20px;
}
/* sponsors  */
.sponsors {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}
.sponsors div {
}
.sponsors div img {
  width: 100px;
}
/* the menu maggic  I.e media query*/
@media (max-width: 700px) {
  .dark{
    background-color: #0000005e;
    width: 100%;
    height: 100%;
    z-index: 5;
    position: fixed;
    display: none;
    justify-content: center;
  }
  nav .fa-network-wired{
  display: none;
  }
  #home > nav > a{
  font-size: 20px;
}

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    padding: 30px;
    z-index: 100;
    background-color: rgb(3, 3, 144);
    text-align: center;
    top: 0px;
    right: -220px; /* This is where the magic happens */
    left: 50;
    width: 50%;
    height: 100%;
    transition: 0.3s;
  }
  nav .bt {
    gap: 10px;
  }
  .bt button {
    padding: 3px 12px;
  }

  .fa-solid {
    display: block;
  }

  .hero-img img {
    width: 350px;
  }
  .hero-text .buttons {
    width: 500px;
    padding: 0px 1px;
    background-color: transparent;
    flex-direction: column;
    margin-right: auto;
    margin-left: auto;
  }
  .buttons input {
    padding: 10px 5px;
    background-color: #fff;
    margin: 0px auto;
    border-radius: 5px;
  }
  .buttons button {
    padding: 8px 25px;
    margin: 0px auto;
    background: transparent;
    border: 1px solid;
    border-radius: 5px;
  }
  .sponsors {
    flex-direction: column;
  }
}
/* Services section */
.Service {
  text-align: center;
}
.Service h2 {
  font-family: "Onest", sans-serif;
  font-size: 30px;
  text-align: center;
  margin-top: 60px;
}
.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  padding: 15px 0px;
  gap: 20px;
  justify-content: center;
  text-align: center;
}
.service-items {
  background-color: #fff;
  padding: 40px 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 12px 20px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}
.service-items:hover {
  transform: scale(1.05);
}
.service-items div {
  background-color: #6764bc;
  border-radius: 300px;
  width: 50px;
  margin: 0px auto;
  padding: 15px 5px;
  color: #fff;
  font-size: 25px;
}
.service-items h2 {
  font-family: "Onest", sans-serif;
  font-size: 20px;
  margin-top: 15px;
}
.service-items p {
  font-family: poppins;
  margin: 10px 0px;
}
.service-items a {
  text-decoration: none;
  color: #6764bc;
  font-weight: 500;
  font-family: poppins;
}

/* kind of Contact us */
.sideByside {
  padding: 10px 0px;
  text-align: center;
  background-color: #f6f4ff;
  padding: 30px 20px;
  margin-top: 20px;
}
.contain {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 80px;
  gap: 40px;
}
.side-text {
  text-align: left;
}
.side-text h2 {
  font-family: "Onest", sans-serif;
  font-size: 30px;
}
.side-text p {
  font-family: poppins;
  margin-top: 30px;
}
.side-text button {
  padding: 7px 15px;
  margin-top: 20px;
  border-radius: 15px;
  border: none;
  background: linear-gradient(
    136deg,
    rgba(31, 95, 244, 1) 0%,
    rgba(31, 95, 244, 1) 35%,
    rgba(15, 18, 191, 1) 69%
  );
  color: #ffff;
  font-family: poppins;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.side-text button:hover {
  transform: scale(1.05);
}
.sideImg {
}
.sideImg img {
  width: 500px;
  border-radius: 20px;
}
/* Side by side */
@media (max-width: 700px) {
  .contain {
    flex-direction: column;
  }
  .side-text {
    text-align: center;
  }
  .sideImg img {
    width: 350px;
  }
}
/* Work sart section */
.createAccount {
  background: linear-gradient(
    136deg,rgba(31, 95, 244, 1) 0%,
    rgba(31, 95, 244, 1) 35%,
    rgba(15, 18, 191, 1) 69%
  );
  padding: 60px 80px;
}
.createContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  align-content: center;
  gap: 520px;
  margin-bottom: 20px;
}
.createText-items {
  text-align: left;
}
.createText-items h2 {
  color: #fff;
  font-family: "Onest", sans-serif;
}

.createText-itmes div {
}
.button button {
  padding: 7px 15px;
  margin-top: 20px;
  border-radius: 15px;
  border: none;
  background: #fff;
  color: rgba(31, 95, 244, 1);
  font-family: poppins;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button button:hover {
  transform: scale(1.05);
}
/*  Work Smarter */
.flex {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 30px;
  margin-top: 60px;
}
.flexText {
  margin-top: 40px;
}
.content {
  margin: 30px 0px;
}
.content h2 {
  font-family: "Onest", sans-serif;
  color: #fff;
  font-size: 20px;
  text-align: left;
}
.content p {
  font-family: poppins;
  color: #fff;
  font-size: 16px;
  text-align: left;
}
.flex .img img {
  width: 500px;
  border-radius: 20px;
}
/* media query  */
@media (max-width: 700px) {
  .flex {
    flex-direction: column-reverse;
  }
  .content h2 {
    text-align: center;
  }
  .flex .img {
    margin: 0px auto;
    text-align: center;
  }
  .flex .img img {
    width: 300px;
    margin: 0px auto;
  }
  .createContainer {
    flex-direction: column;
    gap: 0px;
  }
  .content p {
    text-align: center;
  }
  .flexText {
    margin-top: -20px;
  }
}
/* The package */
.packages {
  text-align: center;
  padding: 60px 80px;
}
.packages h2 {
  font-family: "Onest", sans-serif;
  font-size: 30px;
}
.btns {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0px;
}
.btn {
  background-color: #fff;
  border: 1px solid grey;
  color: blue;
  padding: 8px 35px;
  text-align: center;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-weight: 600;
  border-radius: 20px;
  transition: all 0.3s;
}
.btn:hover {
  transform: scale(1.05);
}
.btns .color {
  background-color: blue;
  border: none;
  color: #fff;
}
/* The two button media */
@media (max-width: 700px) {
  .btns {
    flex-direction: column;
  }
  .btn {
    border-radius: 10px;
    padding: 12px 20px;
  }
}
.main-body{
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  padding: 15px 0px;
  gap: 20px;
  justify-content: center;
}
.packagesContent {
  background-color: #fff;
  text-align: center;
  padding: 40px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 12px 20px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.center {
  text-align: left;
}
.packagesContent:hover {
  transform: scale(1.05);
}

.packagesContent h4 {
  font-family: "Onest", sans-serif;
}
.packagesContent h2 {
  font-family: "Onest", sans-serif;
  color: blue;
}
.packagesContent span {
  color: grey;
  font-size: 13px;
  font-family: poppins;
}
.packagesContent p {
  font-family: poppins;
}
.packagesContent hr {
  color: grey;
  margin: 30px 0px;
}
.list {
  margin: 10px 0px;
}
.list li {
  list-style: none;
  font-family: poppins;
}
.packagesContent button {
  color: #fff;
  background: linear-gradient(
    136deg,
    rgba(31, 95, 244, 1) 0%,
    rgba(31, 95, 244, 1) 35%,
    rgba(15, 18, 191, 1) 69%
  );
  padding: 8px 25px;
  text-align: center;
  font-family: "Onest", sans-serif;
  margin-top: 40px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 20px;
  border: none;
  transition: all 0.3s;
  cursor: pointer;
}
.packagesContent button:hover {
  transform: scale(1.05);
}
/* The coloured */
.main-body > .packagesContent:nth-child(2) {
  background: linear-gradient(
    136deg,
    rgba(31, 95, 244, 1) 0%,
    rgba(31, 95, 244, 1) 35%,
    rgba(15, 18, 191, 1) 69%
  );
}
.packagesContent:nth-child(2) > .center > h2,
h4 {
  color: #fff;
}
.packagesContent:nth-child(2) > .center > h2 span {
  color: #fff;
}
.packagesContent:nth-child(2) > .center > p {
  color: #fff;
}

.packagesContent:nth-child(2) > .center > hr {
  color: #fff;
}
.packagesContent:nth-child(2) > .center > .list li {
  color: #fff;
}
.packagesContent:nth-child(2) > button {
  color: blue;
  background: #fff;
  margin-top: 30px;
}
/* }Testimonial  */
.Testimony {
  text-align: center;
  padding: 60px 80px;
}
.Testimony h2 {
  font-family: "Onest", sans-serif;
}
.testimony-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  padding: 15px 0px;
  gap: 20px;
  justify-content: center;
}
.testimony-container .items {
  background-color: #fff;
  text-align: center;
  padding: 40px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 12px 20px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.items .star {
  color: rgb(22, 22, 208);
}
.items p {
  font-family: poppins;
  text-align: left;
  margin: 10px 0px;
}
.profile {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}
.profile img {
  width: 50px;
  border-radius: 50%;
}
.text {
  text-align: left;
}
.text h2 {
  font-family: "Onest", sans-serif;
  color: rgb(4, 4, 114);
}
.text p {
  font-family: poppins;
  margin: 0px;
}
/* THE FOOTER : LAST  */
footer{
    padding: 20px 50px;
    background: #030335;
    margin-top: 100px;
}
.Footer-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.brand{
    display: flex;
    align-items: center;
}
.main{
    width: 400px;
    max-width: 100%;
}
.brand img{
    width: 30px;
}
.brand h2{  
    font-family: "Onest", sans-serif;
    color: #fff;
}
.main .text p{
    font-family: poppins;
    padding-right: 13px;
    color: #fff;
}
.icons{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    color: #030335;
}
.icons div{
    border-radius: 50%;
    padding: 6px;
    font-size: 12px;
    background-color: #fff;
    cursor: pointer;

}
.sub-flex{
    margin-top: 20px;
    width: 350px;

}
.sub-flex h3{
    font-family: "Onest", sans-serif;
    color: #fff;
}
.sub-flex ul{
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0px;
}
.sub-flex ul li{
    list-style: none;

}
.sub-flex ul li a{
    text-decoration: none;
    font-family: poppins;
    font-weight: 600;
    color:  #fff;
}
.sub-flex p{
    font-family: poppins;
    color: #fff;
}
.fa-clock{
  color: #fff;
}
.sub-flex button{
    padding: 5px 10px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    font-family: poppins;
    font-weight: 500;
    cursor: pointer;
    background-color: blue;
    color: #fff;
}
.sub-flex input{
  font-family: poppins;
  border-radius: 8px;
  padding: 4px 6px;
  border: none;
  outline: none;
}

footer hr{
    width: 100%;
    border: .7px solid grey;
    margin-top: 15px;
}
.last{
    text-align: center;
    margin-top: 5px;
    font-family: poppins;
    color: #fff;
}
/* THE FOOTER MEDIA QUERY */
@media(max-width:600px){
    .Footer-container{
      flex-direction: column;
      justify-content: center;
      text-align: left;
    }
    .main{
        margin:0px 55px 0px 0px ;
    }
}


