@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    
}

body{
    font-family: 'Inter', sans-serif;
    background-color: #0F1720;
    height: 100vh;
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px 0 80px;

}

.logo h4{
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #E6F0F2;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;

}

.logo img{
    width: 10px;
    height: 10px;
}

.icon img{
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-left: 20px;
}

.icon {
    display: flex;
    align-items: center;
    gap: 24px;
}
.contant {
    position: relative;
    overflow: hidden;
}

.contant .cercal-bg {
    width: 800px;
    height: 800px;
    background-color: #112a2e;
    position: absolute;
    border-radius: 50%;
    right: -180px;
    top: 50px;
    z-index: -1;
}

.contant .home {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 80px;
    margin: 240px 0 160px 0;
    gap: 40px;
}

.contant .home .cercal-1 {
    width: 400px;
    height: 400px;
    background-color: #19C8A6;
    border-radius: 50%;
    position: relative;
}

.contant .home .taxt{
    max-width: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}
.contant .home .taxt #hello {
    font-size: 18px;
    font-weight: 400;
    color: #19C8A6;
    line-height: 21px;
}

.contant .home .taxt h1 {
    font-size: 64px;
    font-weight: 700;
    color: #E6F0F2;
    line-height: 75px;
}

.contant .home .taxt h1 span {
    color: #19C8A6;
}

.contant .home .taxt .sub-taxt {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.contant .home .taxt .sub-taxt #line-1 {
    font-size: 24px;
    font-weight: 400;
    color: #8A9AA0;
    line-height: 28px;
}

.contant .home .taxt .sub-taxt .line-11 #line-2 {
    font-size: 24px;
    font-weight: 400;
    color: #E6F0F2;
    line-height: 28px;
}

.contant .home .taxt .sub-taxt .line-11 .line {
    width: 165px;
    height: 4px;
    display: flex;
    gap: 5px;
    background-color: #8A9AA0;
    border-radius: 2px;
    animation: move 2s infinite;
}

.contant .home .taxt p {
    font-size: 16px;
    font-weight: 400;
    color: #8A9AA0;
    line-height: 24px;
    margin-top: 20px;
}

.contant .home .taxt .btn {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.contant .home .taxt .btn a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 8px;
    transition: 0.5s;
}

.contant .home .taxt .btn a#one {
    background-color: #19C8A6;
    color: #0F1720;
}
.contant .home .taxt .btn a#one:hover {
    background-color: #0F1720;
    color: #19C8A6;
    border: 2px solid #19C8A6;
}
.contant .home .taxt .btn a#tow {
    background-color: transparent;
    color: #E6F0F2;
    border: 2px solid #E6F0F2;
}

.contant .home .taxt .btn a#tow:hover {
    background-color: #E6F0F2;
    color: #0F1720;
    border: 2px solid #E6F0F2;
}
@keyframes move {
    0%{
        transform: translateX(0);
    }
    50%{
        transform: translateX(10px);
    }
    100%{
        transform: translateX(0);
    }
}

.contant .cercal-bg2 {
    width: 600px;
    height: 600px;
    background-color: #112a2e;
    position: absolute;
    border-radius: 50%;
    left: -150px;
    bottom: -150px;
    z-index: -1;
}

.contant .home .cercal-1 img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
}
.contant .home .cercal-1 .round-box {
    position: absolute;
    background-color: #0F1720;
    border: 2px solid #19C8A6;
    border-radius: 50px;
    text-align: center;
    width: 190px;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #E6F0F2;
    padding: 16px 24px;
}

.contant .home .cercal-1 .round-box.one {
    top: 270px;
    left: -60px;
}

.contant .home .cercal-1 .round-box.tow {
    bottom: 15px;
    right: -60px;
}
.contant .home .taxt .btn a:hover {
    cursor: pointer;
}

.all-det{
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 160px;
}

.head {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 40px;
}

.head h2 {
    font-size: 36px;
    font-weight: 700;
    color: #E6F0F2;
    line-height: 42px;
}

.head p {
    font-size: 16px;
    font-weight: 400;
    color: #8A9AA0;
    line-height: 24px;
    margin-top: 10px;
}

.all-det .card-box{
    display: flex;
    gap: 30px;
    justify-content: center;

}

.all-det .card-box .card {
    background-color: #0D1518;
    padding: 40px 20px;
    border-radius: 16px;
    max-width: 300px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    transition: 0.5s;
}

.all-det .card-box .card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #E6F0F2;
    line-height: 28px;
    margin-bottom: 10px;
}

.all-det .card-box .card p {
    font-size: 16px;
    font-weight: 400;
    color: #8A9AA0;
    line-height: 24px;
}

.icon .fa-solid {
    color: #19C8A6;
    font-size: 48px;
    margin-bottom: 20px;
}


.all-det .card-box .card:hover {
    background-color: #009e7c18;
    cursor: pointer;
    transition: 0.5s;
    scale: calc(1.1);
}

.card-box .card .link{
    display: flex;
    align-items: self-end;
    gap: 10px;
    margin-top: 20px;
}
 
.card-box .card .link a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #19C8A6;
}
.card-box .card .link i {
    color: #19C8A6;
}

.talent-box {
    border-radius: 16px;
    padding: 40px 40px 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    background-color: #112A2E;
    gap: 40px;
}

.talent-box .talent {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.talent-box .talent h3 {
    font-size: 24px;
    font-weight: 600;
    color: #E6F0F2;
    line-height: 28px;
}
.talent-box .talent p {
    font-size: 16px;
    font-weight: 400;
    color: #8A9AA0;
    line-height: 24px;
}

.talent-box .talent .progress-bar {
    width: 100%;
    height: 8px;
    background-color: #0F1720;
    border-radius: 4px;
    overflow: hidden;
}

.talent-box .talent .progress-bar .html{
    width: 100%;
    height: 100%;
    background-color: #19C8A6;
    border-radius: 4px;
}

.talent-box .talent .progress-bar .css {
    width: 90%;
    height: 100%;
    background-color: #19C8A6;
    border-radius: 4px;
}
.talent-box .talent .progress-bar .javascript {
    width: 75%;
    height: 100%;
    background-color: #19C8A6;
    border-radius: 4px;
}

.talent-box .talent .progress-bar .wordpress {
    width: 80%;
    height: 100%;
    background-color: #19C8A6;
    border-radius: 4px;
}

.talent-box .talent .taxt {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


