@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');

canvas{ display: block; vertical-align: bottom; }
#particles-js{ position:absolute; width: 100%; height: 100%; background-color: #ffffff; }
*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

header {
    background-color: #c7c5c5;
    width: 100%;
    position: fixed;
    z-index:99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 200px;
}

.logo{
    font-size: 1.8em;
    text-decoration: none;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    font-weight: 700;
}

.navi a{
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 1.1em;
    font-weight:500;
    padding-left: 30px;
    

}
.navi a:hover{
    color: black;
}
section{
    padding: 100px 200px;
}
.main{
    width:100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    
}
.main h1{
    color:rgb(0, 0, 0);
    font-size: 1.4em;
    font-weight: 500;
}
.main h1 span{
    color:rgb(116, 114, 114);
    font-size: 0.8em;
    font-weight: 500;
}
.main h2{
    color:rgb(0, 0, 0);
    font-size: 1.4em;
    font-weight: 500;
}
.main h2 span{
    color:rgb(0, 0, 0);
    font-size: 3em;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}
.main h3{
    color:rgb(116, 114, 114);
    font-size:2em;
    font-weight:700;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 30px;
}
.main-btn{
    text-decoration: none;
    color:rgb(250, 250, 250);
    letter-spacing: 1px;
    margin-bottom:40px;
    background-color: rgb(0, 0, 0);
    font-size: 1.1em;
    font-weight:600;
    display:inline-block;
    padding: 0.9375em 2.1875em;
    border-radius: 15px;
    transition: 0.5s ease;
}
.main-btn:hover{
    background-color: aliceblue;
    color: rgb(41, 89, 179);
    transform: scale(1.1, 1.1);
}

.about{
    background: #f7f7f7;
    padding: 80px 12%;
}

.about-content{
    max-width: 900px;
    margin: 0 auto;
    color: #333;
    font-size: 1.15em;
    line-height: 1.8;
    text-align: center;
}

.about-content p + p{
    margin-top: 16px;
}

.verified-profiles a{
    color: rgb(41, 89, 179);
    font-weight: 700;
    text-decoration: none;
}

.verified-profiles a:hover{
    text-decoration: underline;
}

.social-icons a{
    color:rgb(0, 0, 0);
    font-size: 1.7em;
    padding-right: 30px;

}
.fa-brands:hover{
    transform: scale(1.1, 1.1);
}
.cards {
    background-color: #dbd8d8;
}
.title{
    display: flex;
    justify-content: center;
    font-size: 2.2em;
    color: rgb(0, 0, 0);
    font-weight: 700;
    margin-bottom: 30px;
}

.content {
    flex-direction: row;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.card {
    background-color: rgb(255, 255, 255);
    width: 17.25em;
    box-shadow: 0 5px 25px rgba( 1 1 1 / 15%);
    margin:15px;
    border-radius: 30px;
    padding: 25px;
    transition: 0.5s ease;
}
.card:hover{
    transform: scale(1.1, 1.1);
}

.icon {
    color:rgb(0, 0, 0);
    font-size: 8em;
    text-align: center;
}

.info {
    
    text-align: center;
}
.info h3{
    color:rgb(0, 0, 0);
    font-size:1.2em;
    font-weight:700;
    margin: 10px;
}
.info p {
    color: black;
}
.projects {
    background-color: #ffffff;
    
}
.projects .content{
    margin-top: 30px;

}
.p-card{
    background-color:#dbd8d8;
    border-radius: 10px;
    border: 1px solid rgb(175, 174, 174);
    min-height: 14em;
    width:23em;
    overflow: hidden;
    margin: 20px;
    transition: 0.5s ease;
}
.p-card:hover{
    transform: scale(1.1, 1.1);
}
.p-card:hover .p-img{
    opacity:0.9;
}
.p-img img{
    width:100%;
    height: 14em;
    object-fit: cover;
    display: block;
}
.p-info{
    padding:1em;
}
.p-cat{
    font-size:0.8em;
    color: black;
}
.p-title{
    display:flex;
    justify-content:space-between;
    text-transform: uppercase;
    font-weight:800;
    margin-top: 10px;
}
.more-details{
    text-decoration: none;
    color:rgb(46, 63, 155)
}
.more-details:hover{
    color: #791b75;
}
.contactus{
    background-color: #dbd8d8;
}
.contactus a{
    text-decoration: none;
}
.contactus h3{
    font-size:1.5em;
    color: black;
}
.contactus .icon{
    font-size:4.5em;
}
.contactus p{
    font-size:1.3em;
    
}
.footer{
    background-color:#000000;
    color: white;
    padding:2em;
    display: flex;
    justify-content: space-between;
}
.f-title{
    font-size:1.2em;
    font-weight:500;
}





























@media (max-width:1023px) {
    header {
        padding: 12px 20px;
    }
    .navi a{
        padding-left: 10px;
    }
    .title{
        font-size: 1.8em;
    }
    section{
        padding:80px 20px;
    }
    .main h1,
    .main h2{
        font-size: 1em
    }
    .main h3{
        font-size:1.6em;
    }
    .content{
        flex-direction: column;
        align-items: center;
    }
    .footer{
        padding: 1em;
    }
    .footer .social-icons a{
        padding: 0 0.8em 0 0;
    }
    .p-card {
        width: 20em;
        margin:15px;
    }
}

@media(max-width:641px){
    body{
        font-size:12px
    }
    .main h1,
    .main h2{
        font-size:0.8em;
    }
    .main h3{
        font-size:1.4em;
    }
    .footer{
        padding: 1em;
    }
    .footer .social-icons a{
        padding: 0 0.8em 0 0;
    }
    .contactus p{
        font-size:1.1em;
        
    }
}
@media (max-width:300px){
    body{
        font-size:10px;
    }
    .footer{
        padding: 1em;
    }
    .footer .social-icons a{
        padding: 0 0.8em 0 0;
    }
}
