@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 {

    background-color: #6c757d;
    width: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    padding: 15px 150px;
    position: relative;
}

.Logo {

    text-decoration: none;
    color: #212529;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.8em;
}

.navigation {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation a {
    color: #edede9;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    padding-left: 80px;


}

.navigation a:hover {
    color: rgb(85, 80, 80);
}

.section {
    padding: 100px 200px;

}

.Main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(img/image.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding-left: 80px;

}

.Main h2 {
    color: black;
    font-size: 1.7em;
    font-weight: 500;

}

.Main h2 span {
    display: inline-block;
    color: black;
    font-size: 1.1em;
    margin-top: 10px;
    font-weight: bolder;
}

.main-btn {
    color: #edede9;
    background-color: #495057;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    padding: 0.9375em 2.1875em;
    display: inline-block;
    letter-spacing: 1px;
    border-radius: 15px;
    margin-top: 20px;
    transition: 0.7s ease;
}

.main-btn:hover {
    background-color: #212529;
    transform: scale(1.1);
}

.social-icons a {
    display: inline-block;
    color: black;
    font-size: 2em;
    padding-right: 35px;
    margin-top: 20px;
}

.title {
    display: flex;
    justify-content: center;
    color: black;
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 30px;
    padding-top: 50px;
}

.Services {

    background-color: #495057;

}

.content {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    width: 21.25em;
    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: black;
    font-size: 8em;
    text-align: center;
}

.info {
    text-align: center;
}

.info h3 {
    color: #495057;
    font-size: 1.2em;
    font-weight: 700;
    margin: 10px;
}

.Projects {

    background-color: #e9ecef;

}

.Projects .content {
    margin-top: 30px;

}

.project-card {
    background-color: #fff;
    border: 1px solid #fff;
    min-height: 14em;
    width: 23em;
    overflow: hidden;
    border-radius: 10px;
    margin: 20px;
    transition: 0.7s ease;

}


.project-card:hover {
    transform: scale(1.1);
}


.project-video video {
    width: 100%;
}

.project-info {
    padding: 1em;

}

.project-categroy {

    font-size: 0.8em;
    color: #495057;

}

.project-title {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 10px;
}

.more-details {
    text-decoration: none;
    color: #212529;
}

.more-details:hover {
    color: #adb5bd;
}

.footer {
    background-color: black;
    color: #fff;
    padding: 2em;
    display: flex;
    justify-content: space-between;
}

.footer-title {
    font-size: 1.3em;
    font-weight: 600;
}

.footer-title span {
    color: #6c757d;
}


.footer-icons a {
    font-size: 1.3em;
    padding: 0 12px 0 0;
    color: #fff;
    text-decoration: none;
}
@media (max-width: 1024px) {
    header {
        flex-direction: column;
        padding: 15px 20px;
    }

    .Logo {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .navigation {
        position: static;
        transform: none;
        flex-direction: column;
        align-items: center;
    }

    .navigation a {
        padding: 10px 0;
        font-size: 1em;
    }

    .Main {
        flex-direction: column;
        align-items: flex-start;
        padding: 50px 20px;
        text-align: left;
    }

    .Main h2 {
        font-size: 1.5em;
    }

    .Main h2 span {
        font-size: 1em;
    }

    .main-btn {
        font-size: 1em;
        padding: 0.8em 1.8em;
    }

    .social-icons a {
        font-size: 1.5em;
        padding-right: 15px;
    }

    .content {
        flex-direction: column;
        align-items: center;
    }

    .card,
    .project-card {
        width: 90%;
    }

    .project-video video {
        height: auto;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer-icons a {
        font-size: 1.5em;
        padding-right: 15px;
    }
}
