/* -------------- Awal Section Head -------------- */

.head {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/img/bgportfolio.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    z-index: -1;
    padding: 10%;
}

.left-head {
    display: block;
}

.left-head h1 {
    font-size: 70px;
    width: 60%;
    color: #fff;
    line-height: 1.2;
    margin-top: 30px;
    margin-bottom: 70px;
}

.btn-contact-us {
    background: linear-gradient(to right, #070276, #0363A8, #0D04DC);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #070276;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease-in-out, border 0.4s ease-in-out;
}

.btn-contact-us::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #070276, #0363A8, #0D04DC);
    transition: opacity 0.4s ease-in-out;
    opacity: 1;
    z-index: -1;
    border-radius: 50px;
}

.btn-contact-us:hover::before {
    opacity: 0;
}

.btn-contact-us:hover {
    background: transparent;
    color: #070276;
    border-color: #070276;
}

/* -------------- Akhir Section Head -------------- */

/* -------------- Awal Section More Project -------------- */

.more-project {
    background-image: url('/img/bgmoreproject.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
}

.head-more {
    font-size: 60px;
    margin-bottom: 30px;
    background: linear-gradient(-45deg, rgba(7, 2, 118, 1), rgba(4, 54, 220, 1), rgba(7, 2, 118, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container-project {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.container-project h1 {
    margin-bottom: 15px;
    background: linear-gradient(-45deg, rgba(7, 2, 118, 1), rgba(4, 54, 220, 1), rgba(7, 2, 118, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container-project h3 {
    margin-bottom: 15px;
}

.project {
    backdrop-filter: blur(30px);
    border: 2px solid #c0c0c0;
    border-radius: 30px;
    padding: 20px;
    gap: 20px;
}

/* -------------- Akhir Section More Project -------------- */

/* -------------- Awal Section Completed Project -------------- */

.completed-project {
    display: none;
    background-image: url('/img/imgcompleted.png');
    background-repeat: no-repeat;
    background-size: 750px;
    background-position: right top;
    z-index: -1;
    font-size: 16px;
}

.completed-project img {
    width: 50%;
}

.head-completed {
    display: block;
}

.head-completed h1 {
    font-size: 60px;
    margin-bottom: 30px;
    background: linear-gradient(-45deg, rgba(7, 2, 118, 1), rgba(4, 54, 220, 1), rgba(7, 2, 118, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.head-completed h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.head-body-completed {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.line {
    display: none;
}

.button-head {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.button-head p {
    padding: 10px;
}

.btn-share:hover {
    background: transparent;
    color: #070276;
    border-color: #070276;
}

.btn-share {
    background: linear-gradient(to right, #070276, #0363A8, #0D04DC);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #070276;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease-in-out, border 0.4s ease-in-out;
}

.btn-share::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #070276, #0363A8, #0D04DC);
    transition: opacity 0.4s ease-in-out;
    opacity: 1;
    z-index: -1;
    border-radius: 50px;
}

.btn-share:hover::before {
    opacity: 0;
}

.btn-contact:hover {
    background: transparent;
    color: #070276;
    border-color: #070276;
}

.klien {
    margin: 30px 0;
}

.footer-body-completed {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

/* -------------- Akhir Section Completed Project -------------- */

@media (max-width: 480px) {
    /* -------------- Awal Section Head -------------- */

    .head {
        background-position: center;
        padding: 20px;
    }

    .left-head {
        display: block;
        padding: 50% 0 50% 0;
    }

    .left-head h1 {
        font-size: 40px;
        width: 100%;
        text-align: center;
    }

    .left-head p {
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .btn-contact-us {
        font-size: 14px;
        left: 33%;
    }

    /* -------------- Akhir Section Head -------------- */
    /* -------------- Awal Section More Project -------------- */
    
    .more-project {
        padding: 20px;
    }

    .head-more {
        font-size: 24px;
    }

    .container-project {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: 15px;
    }

    .project h1 {
        font-size: 22px;
    }

    .project p {
        font-size: 14px;
    }

    /* -------------- Akhir Section More Project -------------- */
    /* -------------- Awal Section Completed Project -------------- */

    .completed-project {
        background-size: 300px;
        font-size: 14px;
        padding: 20px;
    }

    .completed-project img {
        width: 100%;
    }

    .head-completed {
        display: block;
    }

    .head-completed h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .head-completed h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .head-body-completed {
        display: block;
    }

    .line {
        display: block;
    }

    .button-head {
        gap: 20px;
        margin-bottom: 15px;
    }

    .button-head p {
        padding: 10px;
    }

    .footer-body-completed {
        display: block;
    }

    .klien {
        margin: 15px 0;
    }

    .left-footer-completed {
        margin-bottom: 15px;
    }

    /* -------------- Akhir Section Completed Project -------------- */
}

@media (min-width: 481px) and (max-width: 768px) {
    /* -------------- Awal Section Head -------------- */

    .head {
        background-position: center;
        padding: 6%;
    }

    .left-head {
        padding: 35% 0 35% 0;
    }

    .left-head h1 {
        font-size: 50px;
        width: 80%;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .left-head p {
        font-size: 15px;
        width: 80%;
        margin-bottom: 30px;
    }

    .btn-contact-us {
        font-size: 15px;
    }

    /* -------------- Akhir Section Head -------------- */

    /* -------------- Awal Section More Project -------------- */

    .more-project {
        padding: 30px;
    }

    .head-more {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .container-project {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 25px;
    }

    .project {
        padding: 15px;
    }

    .project h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .project h3 {
        font-size: 18px;
    }

    .project p {
        font-size: 16px;
    }

    /* -------------- Akhir Section More Project -------------- */

    /* -------------- Awal Section Completed Project -------------- */

    .completed-project {
        background-size: 450px;
        font-size: 15px;
        padding: 30px;
    }

    .completed-project img {
        width: 85%;
    }

    .head-completed h1 {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .head-completed h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .head-body-completed {
        flex-direction: column;
        gap: 15px;
    }

    .line {
        display: block;
        margin: 10px 0;
        border-top: 1px solid #ccc;
    }

    .button-head {
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-body-completed {
        flex-direction: column;
        gap: 20px;
    }

    .klien {
        margin: 20px 0;
    }

    .left-footer-completed {
        margin-bottom: 20px;
    }

    /* -------------- Akhir Section Completed Project -------------- */
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* -------------- Awal Section Head -------------- */

    .head {
        background-position: center;
        padding: 8%;
    }

    .left-head {
        padding: 25% 0 25% 0;
    }

    .left-head h1 {
        font-size: 60px;
        width: 70%;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .left-head p {
        font-size: 16px;
        width: 65%;
        margin-bottom: 40px;
    }

    /* -------------- Akhir Section Head -------------- */

    /* -------------- Awal Section More Project -------------- */

    .more-project {
        padding: 40px;
    }

    .head-more {
        font-size: 50px;
        margin-bottom: 25px;
    }

    .container-project {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-bottom: 25px;
    }

    .project {
        padding: 18px;
    }

    .project h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .project h3 {
        font-size: 20px;
    }

    /* -------------- Akhir Section More Project -------------- */

    /* -------------- Awal Section Completed Project -------------- */

    .completed-project {
        background-size: 550px;
        padding: 40px;
    }

    .completed-project img {
        width: 50%;
        height: 50%;
    }

    .head-completed h1 {
        font-size: 50px;
        margin-bottom: 25px;
    }

    .head-completed h2 {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .head-body-completed {
        gap: 20px;
        margin-bottom: 15px;
        display: block;
    }

    .button-head {
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-body-completed {
        flex-direction: row;
        gap: 25px;
    }

    .klien {
        margin: 25px 0;
    }

    /* -------------- Akhir Section Completed Project -------------- */
}