
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fffdfd;
    color: #0916c7;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #0311db;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #0400ec;
    font-size: 16px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    header {
        padding: 10px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    nav {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #1304ee;
        transform: scaleY(0);
        transition: transform 0.2s ease-in-out;
    }
    
    nav.show {
        transform: scaleY(1);
    }
    
    nav a {
        margin: 10px 0;
    }
}


.mockup{
    color: #1d05fa;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    padding-left: 30px;
}
.mockup a:hover{
    color: #00d9ff;
}
section{
    padding: 100px 200px;
}

.main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(images/Slide2.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.main h2 {
    color: #ffffff;

}

.main-content h2 {
    color: #fdfafa;
    font-size: 1.4em;
    font-weight: 500;
}

.main h2 span {
    display: inline-block;
    color: #ffffff;
    font-size: 3em;
    font-weight: 600;
}

.main-content h3 {
    color: #ffffff;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 30px;

}

.main-btn{
    color: #ffffff;
    background-color: rgb(14, 0, 212);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 700;
    display: inline-block;
    padding: 0.9375em 2.1875em;
    letter-spacing: 1px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: 0.8s ease;

}
.main-btn:hover {
    background-color: #0400ff;
    transform: scale(1.1 , 1.1);
}

.button-legiit{
        color: #ffffff;
        background-color: rgb(14, 0, 212);
        text-decoration: none;
        font-size: 1.1em;
        font-weight: 600;
        display: inline-block;
        padding: 0.8375em 1.1875em;
        letter-spacing: 1px;
        border-radius: 15px;
        margin-bottom: 40px;
        transition: 0.8s ease;
        margin: -4px;
    
}
.button-legiit:hover {
    background-color: #0400ff;
    transform: scale(1.1 , 1.1);
}

.button-fiveer{
    color: #ffffff;
    background-color: rgb(14, 0, 212);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    display: inline-block;
    padding: 0.8375em 1.1875em;
    letter-spacing: 1px;
    border-radius: 15px;
    margin-bottom: 40px;
    transition: 0.8s ease;


}
.button-fiveer:hover {
background-color: #0400ff;
transform: scale(1.1 , 1.1);
}



.social-icons {
    color: #ffffff;
    font-size: 1.7em;
    padding-right: 30px;
}

.title{
    display: flex;
    justify-content: center;
    color: #0013e4;
    font-size: 2.5em;
    font-weight: 800;

}



.content {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.card {
    background-color: #ffffff;
    width: 19em;
    box-shadow:  0 5px 25px rgb(1 1 1 /35%);
    border-radius: 10px;
    padding: 25px;
    margin: 15px;
    transition:  0.8s ease;
   margin-bottom: 30px;


}

 .card:hover {
    transform: scale(1.1);
 }

 .info  {
    text-align: center;
 }

 .info h3 {
    color: #001ba3;
    font-size: 1.5em;
    font-weight: 700;
    margin: 10px;
 }

 


.projects {
  width: 100%;
  padding: 80px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.projects .title {
  font-size: 36px;
  margin-bottom: 50px;
}

.projects .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.project-card {
  width: 300px;
  margin: 0 20px 40px;
  border: 1px solid #0703f5;
  background-color: #fff;
  box-shadow: 0px 4px 20px rgba(255, 255, 255,);
  transition: 0.8 s ease;
  
}
.card:hover {
    transform: scale(1.1);

}

.project-image {
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: auto;
}

.project-info {
  padding: 20px;
}

.project-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.project-title span {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.project-title a {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}

.project-title a:hover {
  color: #ff5a5f;
  border-color: #ff5a5f;
}

.project-info a {
    color: #0300a5;
}


.cont{
    color: #000ead;
}
 
.info a{
    color: #000000;
    font-size: 0.8em;
    margin: 5px;
    
}  
.info b {
  margin-top: 2px;  
   
}



.footer{
    background-color: #000016;
    color: #f9f9f9;
    padding: 2em;
    display: flex;
    justify-content: space-between;
}

