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

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

html {
    font-size: 62.5%;
}

/* .home-section header portion style */

.home-section {
    width: 100%;
    height: 100vh;
}

header {
    height: 10vh;
    padding: 8rem 15rem 4rem 15rem;
}

main {
    height: 87vh;
    padding: 8rem 15rem 0 15rem;
}

.logo-img img {
    width: 20rem;
}

.home-section header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-section header nav ul {
    display: flex;
    gap: 5rem;
    margin-top: 2.5rem;
}

.home-section header nav ul li {
    list-style: none;

}

.home-section header nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 2.5rem;
    font-weight: 500;
}

/* .home-section main portion style */

.left-right-section {
    height: 65vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.title-section {
    height: 10vh;
    text-align: center;
}

.title-section h1 {
    font-size: 3.7rem;
    color: #367D87;
}

.title-section h1 span {
    font-size: 2.6rem;
    color: #255175;
}

.left-main-sction img {
    width: 35rem;
    border-radius: 50%;
}

.right-main-sction {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
}


.intro-1 {
    font-size: 2.3rem;
    font-weight: 600;
    color: #55555A;

}

.intro-2 {
    font-size: 4.8rem;
    font-weight: 600;
    color: #367D87;
}

.intro-3 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #555555;
}


.right-main-sction div button a {
    text-decoration: none;
    color: #fff;
}

.right-main-sction div button {
    width: 25rem;
    height: 5rem;
    border-radius: 5rem;
    background-color: #555555;
    outline: none;
    border: none;
    font-size: 2rem;
    margin: 2rem;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease-out;
}

.right-main-sction div button:hover {
    background-color: #64afb9;
    border: none;
}

.right-main-sction div:last-child {
    width: 20rem;
    display: flex;
    justify-content: space-between;
}

.right-main-sction div a {
    text-decoration: none;
}

.right-main-sction div i {
    color: #000;
    cursor: pointer;
    font-size: 4rem;
}

/* .project section styleing  */

.project-section {
    padding: 0 6rem 8rem;
}

.projects-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.project-heading h1 {
    text-align: center;
    font-size: 5rem;
    margin: 2rem;
}

.project-heading p {
    text-align: center;
    font-size: 2.5rem;
    margin: 3rem;
}

.project-card {
    border: none;
    width: 35rem;
    height: 45rem;
    background-color: #fff;
    border-radius: 2rem;
    outline: none;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 3rem;
    box-shadow: 0 0 1rem black;
}

.project-img-section {
    width: 30rem;
    height: 30rem;
    border: none;
    border-radius: 2rem;
    outline: none;
    margin-top: 1.5rem;

}

.project-img-section img {
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    outline: none;
}

.project-title-section h2 {
    font-size: 3rem;
}

.project-button-section button {
    width: 13rem;
    height: 4rem;
    border-radius: 5rem;
    background-color: #fff;
    border: 1px solid #000;
    font-size: 1.3rem;
    margin: 1rem 2rem;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease-out;
}

.project-button-section button:hover {
    background-color: #5dcedd;
    border: none;
}

.copyright p {
    text-align: center;
    font-size: 2rem;
    margin: 4rem;
}







