@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
  font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;

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



}
.Logo {
    text-decoration: none;
    color: black;
    font-weight: 700;
    font-size: 1.8em;



}
.Navigation a {
    text-decoration: none;
    color: #171616;
    font-weight: 500;
    font-size: 1.1em;
    padding-left: 30px;


}
.Navigation a:hover {
    color: beige;
}
section {
    padding: 100px 200px;
    
}
.hoda {
    display: flex;
    align-items: flex-start;
    gap : 15px;
    flex-direction: column;

}
.main {
    width: 100%;
    min-height: 100vh;
    
    background: url(img/WhatsApp\ Image\ 2026-01-24\ at\ 4.55.50\ PM.jpeg) no-repeat;
    background-size: cover;
    background-position:center;
    
    
    

}
.main h2 {

    color: black;
    font-size: 1.4em;
    font-weight: 800;

    
}
.main h2 span {
    
    color: #084566;
    font-size: 2em;
    font-weight: 700;

    
}
.main h3 {
    color: black;
    font-size: 1.2em;
    font-weight: 600;
    
}
.main-btn {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: #084566;
    padding: 10px 25px;
    margin-top: 20px;
    border-radius: 15px;
    font-weight: 600;
    transition: 0.7s ease;

} 
.main-btn:hover {
    background-color: black;
    transform: scale(1.1);
}

.social-icons a {
    color: black;
    font-size: 1.7em;
    padding-right: 15px;
    gap: 10px;
    
    
}
.title {
    display: flex;
    justify-content: center;
    color: #084566;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 30px;

}
.content {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;

}
.card {
    background-color: white;
    width: 25%;
    box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
    border-radius: 10px;
    padding: 25px;
    margin: 15px;
    transition: 0.7s ease;

}
.card:hover {
    transform: scale(1.1);

}
.icon {
    color: #084566;
    font-size: 8em;
    text-align: center;

}
.info {
    text-align: center;
}


.info h3 {
    color: #084566;
    font-size: 1.2em;
    font-weight: 700;
    margin: 10px;


}
.Projects {
    background-color: #dac9c996;

}
.Projects .content {

    margin-top: 30px;

}

.project-card {

    background-color: white;
    border: 1px solid white;
    min-height: 13em;
    width: 23em;
    overflow: hidden;
    border-radius: 10px;
    margin: 20px;
    transition: 0.7s ease;
}

.project-card:hover {
    transform: scale(1.1);

}
.project-image img {
    width: 100%;
   
    
}

.project-info {
    padding: 1em;

}
.project-category {

    font-size: 0.8em;
    color: #000;

    
}

.project-title {

    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 10px;
}

.more-details {

    text-decoration: none;
    color: #084566;

}
.more-details:hover {
    color: #310a84c8;

}
.contact .icon {
    font-size: 4.5em;

}
.contact .info h3 {
    color: #000;
    
}
.card-contact {
    background-color: white;
    width: 40%;
    box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
    border-radius: 10px;
    padding: 40px;
    margin: 15px;
    transition: 0.7s ease;


}
.cards-contactt {
    display: flex;
  
  flex-direction: column;
  align-items: center;
}
.footer {
    background-color: #9eadba;
    color: black;
    padding: 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.footer-title {

    font-size: 1.3em;
    font-weight: 600;

}

.footer-title span {
    color: #084566;
}
.s-icons {
    display: flex;
    gap : 5px;
    
}
.fa-brands {
    color: black;
}

@media (max-width: 1023px){
    header {
        padding: 10px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
     .Navigation {
        padding-left: 0 ;
        display: flex;
        justify-content: center;
        gap: 10px;
   

    }
    .Navigation a {
        font-size: 13px ;
        padding-left: 10px;
    }
    .title {
        font-size: 1.8em;

    }
    section {
        padding: 80px 20px;

    }
    .main-content h2 {
        font-size: 1em;

    }

    .main-content h3 {
        font-size: 1.6em;

    }

    .content {
        flex-direction: row;
        align-items: center;
        

    }
    .footer-title {
        font-size: 1em;
    }
    
}

@media (max-width: 641px){
    
    body {
        font-size: 12px;

    }
    .main-content h2 {
        font-size: 0.8em;

    }
    .main-content h3 {
        font-size: 1.4em;
        
    }
    .card {
        width: 80%;
    }
    .content {
        flex-direction: column;
        align-items: center;

    }
    .card-contact {
        width: 100%;
    }
    .footer-title {
        font-size: 1em;
    }
}
@media (max-width: 300px){
    
    
    body {
        font-size: 10px;

    }
    header {
        padding: 8px 5px;
        flex-direction: row;
        justify-content: space-between;
    }
    .logo {
        font-size: 0.9em ;
    }
    .Navigation {
        padding-left: 0;
        gap: 3px;
    }
    .Navigation a {
        font-size: 9px;
    }
    .card {
        width: 80%;
    }
    .card-contact {
        width: 100%;
    }
    .footer-title {
        font-size: 1em;
    }
}


