@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700&display=swap");

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    width: 1rem;
}

html::-webkit-scrollbar-track {
    background: #fff;
}

html::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 5rem;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 5rem 9%;
}

.home{
    min-height: calc(100vh - 6.5rem);
}
.heading {
    text-align: center;
    font-size: 6vw;
    color: #000;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.heading span {
    text-transform: uppercase;
    color: #b38b59;
}

.btn {
    display: inline-block;
    border-radius: 5rem;
    background: #b38b59;
    padding: .7rem 2rem;
    font-size: 1.7rem;
    color: #fff;
    transition: background 0.3s ease;
    text-decoration: none;
    position: relative;
}

.btn:hover {
    background: #a0784e; 
}

.btn i {
    display: inline-block;
    height: 3rem;
    width: 3rem;
    line-height: 3rem;
    font-size: 1.5rem;
    text-align: center;
    background: #fff;
    color: #b38b59;
    border-radius: 50%;
    margin-left: 1rem;
    transition: margin-left 0.2s linear;
}

.btn:hover i {
    margin-left: 1.5rem; 
}

h3{
    font-size: 4rem;
}

h4{
    font-size: 2.5rem;
    font-weight: 500;
}
.text-gold{
    color: #b38b59;
}

/* Home */
.home{
    display: flex;
    align-items: center;
    gap: 4rem;
    img {
        height: 50rem;
        width: 50rem;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.home-box {
    display: flex;
    margin: 20px 0;
    .share a {
        font-size: 2.5rem;
        height: 4.5rem;
        width: 4.5rem;
        line-height: 4.5rem;
        border-radius: 50%;
        background: #1a1a1a;
        color: #fff;
        text-align: center;
        margin-right: 1rem;
    }
    .share a:hover {
        background: #b38b59;
    }
}

/* About */
.about, .education{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.about .box-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.about .column {
    flex: 1 1 42rem;
    display: flex;
    justify-content: center; 
}

.about p {
    font-size: 1.8rem;
    line-height: 2;
    color: #000;
    text-transform: none;
    text-align: justify;
}

.about .box {
    display: flex;
    gap: 2rem;
}


.skills-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.skill-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4; /* Warna latar belakang card */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Bayangan lembut untuk card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.skill-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}

.skill-card p {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); 
}

@media (max-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.education .box-container {
    display: flex;
    flex-wrap: wrap;
}

.education .box-container .box {
    flex: 1 1 40rem;
    margin-left: 2rem;
    padding-top: 0;
    padding-bottom: 3rem;
    padding-left: 3.5rem;
    border-left: 0.1rem solid #000;
    position: relative;
}

.education .box-container .box i {
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    font-size: 1.7rem;
    border-radius: 50%;
    background: #b38b59;
    color: #fff;
    text-align: center;
    position: absolute;
    top: -1rem;
    left: -2.5rem;
}

.education .box-container .box span {
    font-size: 1.7rem;
    color: #fff;
    border-radius: 5rem;
    padding: .5rem 1.5rem;
    background: #1a1a1a;
}

.education .box-container .box h3 {
    font-size: 2rem;
    color: #000;
    padding-top: 3rem;
    font-weight: 700;
}

.education .box-container .box h4 {
    font-size: 1.6rem;
    color: #000;
    font-weight: 600;
}

.education .box-container .box li {
    font-size: 1.4rem;
    color: #000;
    line-height: 2;
    margin-left: 20px;
}

.portfolio {
    text-align: center;
}

/* .portfolio .heading span {
    color: #b38b59;
} */

/* --- Modern Tab Container Styling --- */
.portfolio .tab-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
    background: #f8f6f2;
    border-radius: 2.5rem;
    box-shadow: 0 2px 12px rgba(179,139,89,0.07);
    padding: 0.7rem 1.5rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.portfolio .tab-button {
    padding: 1rem 2.5rem;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 600;
    color: #b38b59;
    border-radius: 2rem;
    transition: background 0.25s, color 0.25s, box-shadow 0.25s;
    outline: none;
    box-shadow: none;
    position: relative;
}
.portfolio .tab-button.active, .portfolio .tab-button:focus {
    background: linear-gradient(90deg, #b38b59 60%, #e2c9a0 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(179,139,89,0.13);
    z-index: 1;
}
.portfolio .tab-button:hover:not(.active) {
    background: #f3e9db;
    color: #a0784e;
}
@media (max-width: 600px) {
    .portfolio .tab-container {
        gap: 0.5rem;
        padding: 0.5rem 0.5rem;
    }
    .portfolio .tab-button {
        font-size: 1.1rem;
        padding: 0.7rem 1.2rem;
    }
}

.portfolio .tab-content {
    display: none;
}

.portfolio .tab-content.active {
    display: block;
}

/* --- PORTFOLIO (MY WORK) MODERN STYLING --- */
.portfolio .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
}

.portfolio .box {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 16px rgba(179,139,89,0.10), 0 1.5px 4px rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
    border: none;
    min-width: 0;
    position: relative;
}
.portfolio .box:hover {
    /* transform: translateY(-8px) scale(1.03); */
}

.portfolio .box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: filter 0.3s;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
}
.portfolio .box:hover img {
    filter: brightness(0.85) saturate(1.1);
}

.portfolio .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    text-align: left;
    gap: 1.2rem;
    flex: 1;
}
.portfolio .content .text {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.portfolio .box h3 {
    font-size: 2.1rem;
    color: #b38b59;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.portfolio .box p {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: left;
}
.portfolio .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0.5rem;
}
.portfolio .tags span {
    font-size: 1.1rem;
    background-color: #f3e9db;
    color: #b38b59;
    padding: .4rem 1.1rem;
    border-radius: 2rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    box-shadow: 0 1px 3px rgba(179,139,89,0.06);
}
.portfolio .button {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}
.portfolio .box a {
    display: inline-block;
    font-size: 1.3rem;
    padding: .6rem 1.6rem;
    background: linear-gradient(90deg, #b38b59 60%, #e2c9a0 100%);
    color: #fff;
    text-align: center;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(179,139,89,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    border: none;
}
.portfolio .box a:hover {
    background: #a0784e;
    color: #fff;
    transform: scale(1.07);
}

@media (max-width: 1024px) {
    .portfolio .box-container {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2rem;
    }
    .portfolio .box img {
        height: 160px;
    }
}
@media (max-width: 768px) {
    .portfolio .box-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .portfolio .box {
        min-width: 0;
    }
    .portfolio .box img {
        height: 230px;
    }
    .portfolio .content {
        padding: 1.2rem 1.2rem 1rem 1.2rem;
    }
    .portfolio .button {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .portfolio .box h3 {
        font-size: 1.7rem;
    }
    .portfolio .box p {
        font-size: 1.35rem;
    }
    .portfolio .tags span {
        font-size: 1.15rem;
        padding: .4rem 1rem;
    }
    .portfolio .content {
        padding: 1.2rem 1rem 1rem 1rem;
    }
    .portfolio .box a {
        font-size: 1.5rem;
        padding: .7rem 1.7rem;
        border-radius: 2.2rem;
    }
    .portfolio .tab-container {
        gap: 0.7rem;
        padding: 0.7rem 0.7rem;
    }
    .portfolio .tab-button {
        font-size: 1.3rem;
        padding: 1rem 1.7rem;
        border-radius: 2rem;
    }
}


#apps .box-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
#apps .box {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 16px rgba(179,139,89,0.10), 0 1.5px 4px rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    min-width: 220px;
    max-width: 350px;
    margin: 0 auto;
}
#apps .box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(179,139,89,0.18), 0 2px 8px rgba(0,0,0,0.10);
}
#apps .box img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background: #fff;
    padding: 1.2rem 0 0.7rem 0;
    display: block;
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
}
#apps .box .content {
    width: 100%;
    padding: 1.2rem 1.2rem 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.7rem;
    flex: 1;
}
#apps .box .content h3 {
    font-size: 1.5rem;
    color: #b38b59;
    margin-bottom: 0.2rem;
    font-weight: 700;
}
#apps .box .content p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: left;
}
#apps .box .button {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 0.3rem;
}
#apps .box .button a, #apps .box .content .btn {
    display: inline-block;
    font-size: 1.3rem;
    padding: .7rem 1.7rem;
    background: linear-gradient(90deg, #b38b59 60%, #e2c9a0 100%);
    color: #fff;
    border-radius: 2.2rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(179, 139, 89, 0.10);
    transition: background 0.2s, color 0.2s;
    border: none;
}
#apps .box .button a:hover, #apps .box .content .btn:hover {
    background: #a0784e;
    color: #fff;
}
@media (max-width: 1024px) {
    #apps .box-container {
        grid-template-columns: repeat(2, 1fr);
    }
    #apps .box img {
        height: 120px;
        padding: 1rem 0 0.5rem 0;
    }
}
@media (max-width: 768px) {
    #apps .box-container {
        grid-template-columns: 1fr;
    }
    #apps .box {
        max-width: 100%;
    }
    #apps .box img {
        height: 100px;
        padding: 0.7rem 0 0.3rem 0;
    }
    #apps .box .content {
        align-items: center;
        text-align: center;
        padding: 1rem 0.7rem 0.7rem 0.7rem;
    }
    #apps .box .button {
        justify-content: center;
    }
}

#uiux .box {
    width: 100%;
}
@media (min-width: 769px) {
    .about, .skills, .education, .portfolio{
        min-height: calc(100vh - 6.5rem);
    }
    .portfolio .box img {
        width: 100%;
        height: 300px;
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 50%;
    }

    .container {
        padding: 3rem 5%;
    }

    h3 {
        font-size: 3rem;
    }

    h4 {
        font-size: 2rem;
    }

    .about .box-container {
        flex-direction: column;
        align-items: center;
    }

    .about .column {
        flex: 1;
        margin-bottom: 2rem;
    }

    .portfolio .box {
        width: calc(100% - 2rem);
    }
    
    #apps .box {
        flex: 0 0 calc(100% - 1rem);
        flex-direction: column;
    }

    #apps .box img {
        width: 100%;
    }

    #apps .box .content {
        width: 100%;
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {

    #apps .box .content h3 {
        font-size: 1.8rem;
    }

    #apps .box .content p {
        font-size: 1.2rem;
    }

    #apps .box .content .btn {
        padding: 0.4rem 1.2rem;
    }
    .portfolio .box-container{
        width: auto;
        min-width: 350px;
    }


    .home{
        flex-direction: column;
        justify-content: center;
    }
    .home .content{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .home img {
        height: 30rem;
        width: 30rem;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.contact-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #f8f8f8;
    padding: 2rem 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    align-items: flex-start;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.7rem;
    color: #222;
}
.contact-label {
    font-weight: 600;
    color: #b38b59;
    margin-right: 0.5rem;
}
.contact-value {
    font-family: 'Poppins', monospace;
    background: #fff;
    padding: 0.2rem 0.7rem;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    color: #333;
}
.copy-btn {
    background: #b38b59;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 2.8rem;
    height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 1.5rem;
    margin-left: 0.5rem;
}
.copy-btn:hover {
    background: #a0784e;
}
.copy-notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: #b38b59;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-size: 1.5rem;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    animation: fadeInOut 1.2s;
}
@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-10px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

/* --- FIX: Website grid always 2 columns on desktop --- */
#website .box-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    #website .box-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* --- APPS TAB: Full Image Grid, Overlay Desc on Hover, 3 Columns Desktop --- */
#apps .box-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
}
#apps .box {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 16px rgba(179,139,89,0.10), 0 1.5px 4px rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: none;
    min-width: 0;
    position: relative;
    align-items: stretch;
    padding: 0;
}
#apps .box-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: 100%;
    min-height: 360px;
    max-height: 600px;
}
#apps .box img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    transition: filter 0.3s, transform 0.3s;
    min-height: 100%;
    min-width: 100%;
}
#apps .box:hover img {
    filter: brightness(0.7) blur(1px);
    transform: scale(1.04);
}
#apps .desc-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.68);
    color: #fff;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    font-size: 1.35rem;
    font-weight: 500;
    text-align: center;
    transition: opacity 0.3s;
    pointer-events: none;
}
#apps .box:hover .desc-overlay {
    opacity: 1;
    pointer-events: auto;
}
#apps .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 1rem 1.5rem 1rem;
    gap: 0.7rem;
    width: 100%;
    background: #fff;
}
#apps .content h3 {
    font-size: 1.6rem;
    color: #b38b59;
    font-weight: 700;
    margin-bottom: 0.2rem;
    text-align: center;
}
#apps .button {
    display: flex;
    justify-content: center;
    margin-top: 0.2rem;
    width: 100%;
}
#apps .box a {
    display: inline-block;
    font-size: 1.35rem;
    padding: .8rem 2.2rem;
    background: linear-gradient(90deg, #b38b59 60%, #e2c9a0 100%);
    color: #fff;
    text-align: center;
    border-radius: 2.5rem;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(179,139,89,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    border: none;
    margin-top: 0.5rem;
}
#apps .box a:hover {
    background: #a0784e;
    color: #fff;
    transform: scale(1.09);
}
@media (max-width: 1200px) {
    #apps .box-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    #apps .box-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    #apps .box-image-wrapper {
        aspect-ratio: 9/16;
        min-height: 320px;
        max-height: 420px;
        height: auto;
    }
    #apps .box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 320px;
        max-height: 420px;
    }
    #apps .content {
        padding: 1rem 0.7rem 1.2rem 0.7rem;
    }
}
@media (max-width: 480px) {
    #apps .box-container {
        gap: 0.7rem;
    }
    #apps .content h3 {
        font-size: 1.2rem;
    }
    #apps .box a {
        font-size: 1rem;
        padding: .4rem 1rem;
    }
    #apps .desc-overlay {
        font-size: 1.05rem;
        padding: 1rem 0.5rem;
    }
    #apps .box .button a, #apps .box .content .btn {
        font-size: 1.5rem;
        padding: .7rem 1.7rem;
        border-radius: 2.2rem;
    }
}

/* --- Reveal Animation (Scroll Effect) --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
    will-change: opacity, transform;
}
.reveal.active {
    opacity: 1;
    transform: none;
}

/* --- Sticky Navbar --- */
.sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 8px rgba(179,139,89,0.07);
    transition: background 0.3s;
}

/* --- Back to Top Button --- */
#backToTopBtn {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 9999;
    background: #b38b59;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2.2rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(179,139,89,0.13);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
#backToTopBtn:hover {
    background: #a0784e;
    transform: scale(1.08);
}

.cta-banner {
    margin-top: 3rem;
    padding: 2.2rem 2.5rem;
    background: #f8f6f2;
    border-radius: 1.2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(179,139,89,0.10), 0 1.5px 4px rgba(0,0,0,0.04);
}
.cta-banner h3 {
    font-size: 2.2rem;
    color: #b38b59;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-banner .btn {
    margin-top: 0.5rem;
}

/* Project slider inside portfolio cards */
.project-slider {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 1rem;
    overflow: hidden;
    background: #f4f4f4;
    margin-bottom: 1rem;
}
.project-slider .slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.35s ease-in-out;
}
.project-slider .slide {
    min-width: 100%;
    height: 100%;
    display: none;
}
.project-slider .slide.active {
    display: block;
}
.project-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-slider .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
/* .project-slider .arrow:hover {
    background: rgba(0,0,0,0.65);
} */
.project-slider .prev { left: 10px; }
.project-slider .next { right: 10px; }
@media (max-width: 768px) {
    .project-slider { height: 160px; }
}


