@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

header {
    background-color: #f0f0f0;
    width: 100%;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    transition: padding 0.3s ease;
}

.logo {
    text-decoration: none;
    color: #3a6cf4;
    font-weight: 500;
    font-size: 1.5em;
}

.navigation a {
    text-decoration: none;
    color: #3a6cf4;
    font-weight: 400;
    font-size: 1.1em;
    padding-left: 20px;
}

.navigation a:hover {
    color: #601cfc;
}

section {
    padding: 80px 20px;
    text-align: center;
}

.main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url(images/background.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 20px;
}


.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}


.main h2 {
    color: #fff;
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 10px;
}

.main h2 span {
    color: #4e9eff;
    font-size: 2em;
    font-weight: 600;
}

.main h3 {
    color: #fff;
    margin: 10px 0 20px;
    font-size: 1em;
    font-weight: 700;
}

.main-btn {
    color: #fff;
    background-color: #4e9eff;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    padding: 0.8em 1.5em;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: 0.5s ease;
}

.main-btn:hover {
    background-color: #0a49f6;
    transform: scale(1.05);
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}


.title {
    text-align: center;
    color: #3a6cf4;
    font-size: 1.8em;
    font-weight: 800;
    margin-bottom: 20px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.card {
    background-color: #fff;
    width: 90%;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(1, 1, 1, 0.15);
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    transition: transform 0.5s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card .icon {
    color: #3a6cf4;
    font-size: 5em;
    text-align: center;
    margin-bottom: 10px;
}

.info {
    text-align: center;
}

.info h3 {
    color: #3a6cf4;
    font-size: 1em;
    font-weight: 700;
    margin: 10px 0;
}

.projects {
    background-color: #000016;
    padding: 40px 20px;
}

.projects .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.project-card {
    background-color: #fff;
    width: 90%;
    max-width: 350px;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.project-card:hover {
    transform: scale(1.05);
}

.project-image img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.project-info {
    padding: 15px;
    text-align: center;
}

.project-category {
    font-size: 0.9em;
    color: #000;
}

.project-title {
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 5px;
    font-size: 1em;
}

.more-details {
    text-decoration: none;
    color: #3a6cf4;
}

.more-details:hover {
    color: #601cfc;
}

.contact .icon {
    font-size: 3em;
    text-align: center;
}

.contact .info h3 {
    color: #000;
}

.contact .info p {
    font-size: 1em;
}

.footer {
    background-color: #000016;
    color: #fff;
    padding: 1.5em;
    text-align: center;
}

.footer-title {
    font-size: 1.1em;
    font-weight: 600;
}

.footer-title span {
    color: #3a6cf4;
}

.footer .social-icons {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.footer .social-icons a {
    font-size: 1.2em;
    margin: 0 10px;
}

@media (max-width: 640px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .navigation {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .main {
        padding: 15px;
    }

    .main h2 {
        font-size: 1em;
    }

    .main h3 {
        font-size: 0.9em;
    }

    .main-btn {
        padding: 0.6em 1.2em;
    }

    .social-icons {
        gap: 10px;
        flex-wrap: wrap;
    }

    .social-icons a {
        font-size: 1.3em;
    }
}

@media (max-width: 360px) {
    .main h2 {
        font-size: 0.9em;
    }

    .main-btn {
        padding: 0.5em 1em;
    }

    .card {
        padding: 15px;
    }

    .social-icons {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.navigation {
    margin-left: -10mm;
}
