@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;
    scroll-behavior: smooth;
    box-sizing: border-box;

}

.Logo {
    min-width: 50px;
    max-width: 100px;
}

header {
    background-color: rgba(15, 23, 42, 0.5);
    width: 100%;
    position: fixed;
    z-index: 999;
    padding: 12px 175px;
    justify-content: space-between;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navigation a {
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 400;
    padding-left: 25px;
    color: #ffffff;
}

.navigation a:hover {
    color: #05377b;
}

section {
    padding: 100px 175px;
}

.main {
    width: 100%;
    min-height: 100vh;
    align-items: center;
    color: #fff;
    display: flex;
    text-decoration: none;
    background: url(backgrpund.jpg) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.main h2 {
    font-size: 1.2em;
    font-weight: 600;
}

.main h2 span {
    background: linear-gradient(to right, #67d3e0, #86e7f2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.8em;
    font-weight: 800;
}

.main h3 {
    font-size: 1em;
    font-weight: 400;
    word-spacing: 10px;
    letter-spacing: 2.5px;
}

.main-btn {
    display: inline-block;
    text-decoration: none;
    margin: 10px;
    margin-left: 0px;
    padding: 17px;
    border: #fff;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.7s ease
}

.Social-Media {
    display: flex;
    gap: 25px;
}

.Social-Media a {
    color: #fff;
    font-size: 1.55em;
    text-decoration: none;
}

.main-btn:hover {
    background-color: #fff;
    color: #101118;
}

body {
    background-attachment: fixed;
    background-image: url(backgrpund_Blure.png);
    background-position: center;
    background-size: cover;
}

.title {
    display: flex;
    font-size: 3.5em;
    justify-content: center;
    margin-bottom: 50px;
    background: linear-gradient(to right, #67d3e0, #86e7f2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.card {
    display: inline-block;
    width: 27em;
    margin: 40px;
    padding: 25px;
    border: #fff;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.7s ease
}

.card:hover {
    background-color: #fff;
    color: #101118;
    transform: scale(1.1);
    box-shadow: 0 5px 25px rgba(1 1 1 / 15);
}

.icon {
    display: flex;
    justify-content: center;
    font-size: 6.5em;
    padding: 25px;
    padding-bottom: 50px;
}

.description h2 {
    text-align: center;
    font-weight: 800;
    padding-bottom: 15px;
}

.description h3 {
    font-weight: 500;
    text-align: center;
}

.links {
    padding-top: 20px;
    background: linear-gradient(to right, #67d3e0, #86e7f2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.7s ease;
}

.links:hover {
    background: linear-gradient(to right, #6773e0, #86e7f2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: scale(1.1);
}

#contact .description h3 {
    background: linear-gradient(to right, #67d3e0, #86e7f2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    font-size: 1.2em;
    transition: all 0.7s ease;
}

#contact .description a {
    text-decoration: none;
}

#contact .description h3:hover {
    background: linear-gradient(to right, #6773e0, #86e7f2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: scale(1.1);
}

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

.footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.5);
    z-index: 999;
    padding: 12px 175px;
    text-decoration: none;
    text-align: center;
    max-height: 4em;
}

.footer-title {
    color: #fff;
    font-size: 1em;
    padding-top: 0.45em;
    padding-right: 6.3em;
}

.footer-title span {
    font-weight: 600;
}

.signature {
    min-width: 30px;
    max-width: 110px;
}

.footer span {
    background: linear-gradient(to right, #678de0, #86b1f2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 1023px) {
    header {
        padding: 12px 20px;
    }

    .navigation a {
        padding-left: 10px;
    }

    .title {
        font-size: 2.8em;
    }

    section {
        padding: 80px 20px;
    }

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

    .main h2 span {
        font-size: 1.5em;
    }

    .main h3 {
        font-size: 0.8em;
    }

    .content {
        flex-direction: column;
        align-items: center;
    }
        .signature {
        order: 3; 
        margin-top: 10px; 
    }
}

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

    header {
        flex-direction: column; 
        padding: 10px;
    }

    .navigation {
        padding-top: 10px;
    }

    .navigation a {
        padding: 5px;
    }

    .main {
        padding: 80px 20px;
    }

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

    .main h2 span {
        font-size: 1.2em;
    }

    .main h3 {
        font-size: 0.7em;
        letter-spacing: 1.5px;
        word-spacing: 5px;
    }

    .main-btn {
        padding: 12px;
        font-size: 0.9em;
    }

    .Social-Media a {
        font-size: 1.2em;
    }

    .title {
        font-size: 2.2em;
        margin-bottom: 30px;
    }

    .card {
        width: 100%; 
        margin: 20px 0;
    }

    .footer {
        flex-direction: column; 
        align-items: center; 
        max-height: none;
        text-align: center;
    }

    .footer-title {
        padding-right: 0;
        padding-bottom: 10px;
    }

    .footer .Social-Media {
        justify-content: center;
        padding-bottom: 15px; 
    }
    
    .footer .Social-Media a {
        font-size: 1.8em; 
    }

    .signature {
        order: 3; 
        margin-top: 10px; 
    }
}