*{
  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;
}
p{
  color: #94a3b8;
}
.hero_section .container{
  border: 1px solid #1E293B;
}
h1{
  letter-spacing: 1px;
  color: #F8FAFC;
}
h2{
  color: white;
  letter-spacing: 1px;
}

.logo h2{
  font-weight: bold;
}

/*Navbar styling start from here*/

nav {
  background: black;
  height: 70px;
  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: white;
  border-bottom: 1px solid #1E293B;
}

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: white;
  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: white;
}

.signup{
  background: white;
  color: black;
}

.signup:hover {
  background: #6945e0;
  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;
  }
}


/*hero section start from here*/

.hero_section{
  width: 100%;
  height: 100vh;
  padding: 25px;
  background: black;
}

.hero_section h1{
  letter-spacing: 1.5px;
  margin-top: 220px;
  font-size: 48px;
  color: #F8FAFC;
}
.hero_section p{
  color: #94A3B8;
}


.hero_section a{
  text-decoration: none;
  display: block;
  font-weight: bold;
}

.joinbtn{
  background: white;
  color: black;
  padding: 5px 25px;
  border: none;
  border-radius: 5px;
  transition: 0.5s;
}
.joinbtn:hover{
  background: #6945e0;
  color: white;
}


/*why styling start from here*/

.why p{
  color: #94a3b8;
}
.why .why_card h6{
  color: white;
}
.why .why_card p{
  color: #94a3b8;
}
.why .why_card{
  height: 300px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #1e293b;
  margin-top: 40px;
}
.why_card_icon{
  width: 55px;
  height: 55px;
  border: 1px solid #1e293b;
  border-radius: 8px;
  text-align: center;
  line-height: 50px;
}
.why_card_icon img{
  width: 45px;
  height: 45px;
}

/*getstarted styling*/

.getstarted{
  margin-top: 120px;
}
.getstarted h6{
  color: white;
}
.getstarted li{
  margin-left: 30px;
  color: #94a3b8;
}
.getstarted_img img{
  width: 100%;
  height: 300px;
}

/*authentication styling*/
.authentication{
  margin-top: 120px;
}
.authentication h6{
  color: white;
}
.authentication li{
  margin-left: 30px;
  color: #94a3b8;
}
.authentication_img img{
  width: 100%;
  height: 300px;
}
.auth_step{
  width: 100%;
  margin: auto;
  border: 1px solid #1e293b;
  padding: 20px;
  border-radius: 8px;
}
.auth_step .project_icon{
  width: 55px;
  height: 55px;
  border-radius: 8px;
  border: 1px solid #1e293b;
  margin-bottom: 15px;
  text-align: center;
  line-height: 52px;
}
.project_icon img{
  width: 45px;
  height: 45px;
}


/*project*/
.project{
  margin-top: 120px;
}
.project p{
  color: #94a3b8;
}
.project .project_card{
  width: 100%;
  height: 250px;
  padding: 20px;
  border: 1px solid #1e293b;
  border-radius: 8px;
  margin-top: 40px;
}
.project_card h6{
  color: white;
}
.project_card li{
  color: #94a3b8;
  margin-left: 30px;
}
.project_icon{
  width: 55px;
  height: 55px;
  border-radius: 8px;
  border: 1px solid #1e293b;
  margin-bottom: 15px;
  text-align: center;
  line-height: 52px;
}
.project_icon img{
  width: 45px;
  height: 45px;
}
/*hostingdeployment*/
.hostingdeployment{
  margin-top: 120px;
}
.hostingdeployment h6{
  color: white;
}
.hostingdeployment li{
  margin-left: 30px;
  color: #94a3b8;
}
.hostingdeployment_best{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}



/*emailservices*/
.emailservices{
  margin-top: 120px;
}
.emailservices_card{
  padding: 20px;
  border: 1px solid #1e293b;
  border-radius: 8px;
  margin-top: 40px;
}
.emailservices_card h6{
  color: white;
}
.emailservices_card li{
  margin-left: 30px;
  color: #94a3b8;
}
.emailservices_card_icon{
  width: 55px;
  height: 55px;
  border: 1px solid #1e293b;
  border-radius: 8px;
  text-align: center;
  line-height: 52px;
}
.emailservices_card_icon img{
  width: 45px;
  height: 45px;
}


/*security*/
.security{
  margin-top: 120px;
}
.security h6{
  color: white;
}
.security li{
  list-style: number;
  margin-left: 30px;
  color: #94a3b8;
}











/*footer section style*/
.footer{
  width: 100%;
  height: 450px;
  margin-top: 120px;
  background: black;
  color: white;
  border-top: 1px solid #1e293b;
}
.footer p{
  color: #94a3b8;
}
.footer div{
  padding: 20px;
}

.footer li{
  list-style: none;
  margin-top: 15px;
}

.footer li a{
  text-decoration: none;
  color: #94a3b8;
}

.footer li a:hover{
  color: blue;
}

.footer h2{
  font-weight: bold;
}



@media (max-width: 768px){
    .hero_section h1{
        margin-top: 110px;
        font-size: 25px;
    }
    .mobile-menu.show{
        height: 1000px;
    }
}

@media (max-width: 1000px){
    .hero_section{
        height: 600px;
    }
}



