@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Playwrite+IN&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Stack+Sans+Notch:wght@200..700&display=swap);
* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--c91435);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgb(201 20 53 / 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    z-index: 9999;
}
.btn-back-to-top:hover {
    background-color: var(--c00bceb);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgb(0 188 235 / 0.4);
}
.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
body {
    background-color: #fbfbfb;
    font-family: "poppins";
}
section#myhome {
    width: 100%;
    padding: 0;
    margin-top: -3.5rem;
    margin-bottom: 2.5rem;
}
.container-home {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}
.home-left {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    position: relative;
}
.home-left::before {
    content: "";
    position: absolute;
    left: -1.8rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--c91435), var(--c00bceb));
    border-radius: 4px;
}
.home-greeting {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.home-greeting::after {
    content: "";
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--c91435), var(--c00bceb));
    border-radius: 2px;
}
.home-name {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #222;
    margin: 0;
    font-family: var(--ssn);
    line-height: 1;
    position: relative;
    display: inline-block;
}
.home-name::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 65%;
    height: 6px;
    background: linear-gradient(90deg, var(--c91435), transparent);
    border-radius: 3px;
}
.home-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
    padding: 1.4rem 1.7rem;
    background: rgb(255 255 255 / 0.95);
    border-left: 4px solid var(--c00bceb);
    border-radius: 0 16px 16px 0;
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.07);
}
.subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--c00bceb);
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 0;
    flex-wrap: wrap;
}
.subtitle-prefix {
    color: var(--c91435);
    font-weight: 600;
    white-space: nowrap;
    font-size: 1.2rem;
}
.animated-text-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.7rem;
    background: linear-gradient(135deg, rgb(201 20 53 / 0.1), rgb(0 188 235 / 0.1));
    border-radius: 25px;
    box-shadow: inset 0 2px 10px rgb(0 0 0 / 0.06);
    border: 1px solid rgb(201 20 53 / 0.2);
    min-width: 290px;
    justify-content: center;
    backdrop-filter: blur(10px);
}
.animated-text {
    position: absolute;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.275);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--c00bceb);
}
.animated-text.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
}
.home-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.btn-download-cv {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--c91435), #e02849);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgb(201 20 53 / 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.05rem;
}
.btn-download-cv:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 40px rgb(201 20 53 / 0.45);
}
.home-socials {
    display: flex;
    gap: 1.1rem;
    margin-top: 0.5rem;
    align-items: center;
}
.home-socials a {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #fff;
    border: 2px solid rgb(0 0 0 / 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #444;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.07);
}
.home-socials a:hover {
    background: var(--c91435);
    color: #fff;
    transform: translateY(-6px) rotate(5deg);
    box-shadow: 0 10px 25px rgb(201 20 53 / 0.35);
}
.home-right {
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 25px;
    padding: 1.8rem;
    box-shadow: 0 10px 35px rgb(0 0 0 / 0.1);
    border: 1px solid rgb(0 0 0 / 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.home-image-wrapper:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgb(0 0 0 / 0.15);
}
.home-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 18px;
}
main {
    width: 100%;
}
@media (min-width: 992px) {
    .container,
    .container-about,
    .container-certf,
    .container-project,
    .container-experience,
    .wrapper-form-main {
        max-width: 1200px;
        margin-inline: auto;
        width: 100%;
        padding: 0 2rem;
    }
}
@media (max-width: 991px) {
    .container,
    .container-about,
    .container-certf,
    .container-project,
    .container-experience,
    .wrapper-form-main {
        max-width: 100%;
        margin-inline: 0;
        padding: 0 1.5rem;
    }
}
:root {
    --playwrite-in: "Playwrite IN", serif;
    --poppins: "Poppins", serif;
    --ssn: "Stack Sans Notch", sans-serif;
    --c91435: #c91435;
    --c00bceb: #00bceb;
    --c0084d1: #0084d1;
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid rgb(0 0 0 / 0.08);
    left: 0;
}
.navbar-container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.nav-logo {
    font-family: var(--ssn);
    font-size: 1.25rem;
    color: #222;
    text-decoration: none;
    font-weight: 700;
}
.nav-menu {
    display: flex;
}
.nav-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links li a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}
.nav-links li a:hover,
.nav-links li a:focus {
    color: var(--c91435);
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-toggle {
    display: flex;
    align-items: center;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgb(0 0 0 / 0.1);
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    width: 100%;
}
.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-family: var(--poppins);
    font-size: 0.9rem;
    color: #444;
    transition: all 0.2s ease;
}
.dropdown-menu li a:hover {
    color: var(--c91435);
    background-color: rgb(201 20 53 / 0.05);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
@media (max-width: 820px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.25rem;
        background-color: #fff;
        border-bottom: 1px solid rgb(0 0 0 / 0.08);
        box-shadow: 0 10px 30px rgb(0 0 0 / 0.08);
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links li a {
        width: 100%;
        padding: 0.75rem 0;
    }
    .dropdown {
        width: 100%;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 1rem;
        margin: 0;
        min-width: auto;
    }
    .dropdown-menu li a {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }
}
.nav-toggle span {
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background-color: #333;
    display: block;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
section {
    scroll-margin-top: 100px;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 0.3);
    background: #666;
}
::-webkit-scrollbar-thumb {
    background: var(--c91435);
    border-radius: 5px;
}
section#myhome {
    margin-block: 3.4rem;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
}
.left-content > .content-name {
    font-size: 3.1em;
    font-family: var(--ssn);
}
.left-content > p.salam {
    font-size: 20px;
    font-family: var(--ssn);
}
.left-content > .subtitle {
    font-size: 1.2rem;
    line-height: 50px;
    color: var(--c00bceb);
}
.subtitle > span {
    color: var(--c91435);
}
p.about-content {
    font-size: 19px;
    font-weight: 500;
}
.content-right {
    display: flex;
    justify-content: center;
    align-items: center;
}
.img-content > img {
    width: 500px;
}
section#about-me {
    border-radius: 20px;
    padding: 25px;
    margin-block: 3rem;
}
.tag {
    display: inline-block;
    margin-bottom: 20px;
}
.left-about-content > .img-about-content img {
    width: 400px;
    border-radius: 20px;
}
.right-about-content > h2 {
    font-family: var(--playwrite-in);
    line-height: 1.2em;
}
.right-about-content h1.myname {
    font-size: 3rem;
    color: var(--c91435);
    font-family: var(--ssn);
}
.right-about-content .about-text {
    font-size: 18px;
    font-weight: 600;
}
.right-about-content .icon-sosmed {
    display: flex;
    margin-top: 20px;
    align-items: center;
    gap: 10px;
}
.icon-sosmed a {
    font-size: 28px;
    background-color: var(--c00bceb);
    display: inline-block;
    padding: 7px;
    color: #fff;
    text-align: center;
    border-radius: 55px;
}
.icon-sosmed a:hover {
    background-color: var(--c91435);
    color: #fff;
    outline: none;
}
section#skills {
    margin-block: 100px;
}
section#skills .information-skills h2 {
    font-size: 30px;
    text-align: center;
    font-family: var(--ssn);
}
section#skills .information-skills p {
    text-align: center;
}
.information-skills {
    margin-bottom: 20px;
}
.container-skills {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.skills-content img {
    width: 200px;
    padding: 10px;
}
section#experience {
    margin-block: 100px;
}
section#experience .information-experience h2 {
    font-size: 30px;
    text-align: center;
    font-family: var(--ssn);
    margin-bottom: 5px;
}
section#experience .information-experience p {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}
.container-experience {
    position: relative;
    width: 100%;
    padding: 2rem 0;
}
.container-experience::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--c91435), var(--c00bceb));
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}
.timeline-left {
    justify-content: flex-start;
}
.timeline-right {
    justify-content: flex-end;
}
.timeline-content {
    width: calc(50% - 50px);
    position: relative;
}
.timeline-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.05);
    border: 1px solid rgb(0 0 0 / 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.1);
}
.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: #fff;
    border: 4px solid var(--c91435);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgb(201 20 53 / 0.1);
    z-index: 10;
}
.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.experience-title h3 {
    font-size: 1.25rem;
    color: #222;
    margin-bottom: 0.4rem;
    font-family: var(--ssn);
}
.company-name {
    font-size: 1rem;
    color: var(--c91435);
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.work-period {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}
.experience-badge {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(0 0 0 / 0.05);
}
.experience-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.experience-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}
.experience-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: auto;
}
.skill-tag {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: #f0f0f0;
    color: #555;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.experience-card:hover .skill-tag {
    background: rgb(201 20 53 / 0.1);
    color: var(--c91435);
}
@media (max-width: 992px) {
    .container-experience::before {
        left: 20px;
        transform: none;
    }
    .timeline-item {
        justify-content: flex-start !important;
        margin-bottom: 2.5rem;
    }
    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 40px;
    }
    .timeline-dot {
        left: 20px !important;
        transform: translateX(-50%) !important;
    }
}
section#certf {
    margin-bottom: 100px;
}
section#certf .information-certf h2 {
    font-size: 30px;
    text-align: center;
    font-family: var(--ssn);
    margin-bottom: 5px;
}
section#certf .information-certf p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}
.certf-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.certf-tab {
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgb(0 0 0 / 0.1);
    background: #fff;
    font-family: var(--poppins);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #444;
}
.certf-tab:hover {
    border-color: var(--c91435);
    color: var(--c91435);
}
.certf-tab.active {
    background: var(--c91435);
    color: #fff;
    border-color: var(--c91435);
    box-shadow: 0 4px 15px rgb(201 20 53 / 0.3);
}
.container-certf {
    width: 100%;
}
.certf-page {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}
.certf-page--active {
    display: grid;
}
.certf-card {
    height: 100%;
}
.certf-card-inner {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.05);
    border: 1px solid rgb(0 0 0 / 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.certf-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.1);
}
.certf-card-inner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid rgb(0 0 0 / 0.05);
}
.certf-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}
.certf-info h3 {
    font-family: var(--ssn);
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.certf-links {
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
}
.certf-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f8f9fa;
    color: #444;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}
.certf-links a:hover {
    background: var(--c91435);
    color: #fff;
    transform: rotate(5deg);
}
@media (max-width: 768px) {
    .certf-page {
        grid-template-columns: 1fr;
    }
}
@media (min-width: 320px) {
    body {
        margin-inline: 2rem;
    }
    .container {
        max-width: 500px;
    }
    .left-content h1.content-name {
        font-size: 35px;
    }
    .left-content h3.subtitle {
        font-size: 11.4px;
        line-height: 1.5rem;
    }
    .left-content p.about-content {
        font-size: 13px;
    }
    .content-right .img-content img {
        width: 330px;
    }
    .left-about-content .img-about-content img {
        width: 250px;
        margin-bottom: 15px;
    }
    .left-content .get-in-touch {
        display: flex;
        align-items: center;
        margin-top: 10px;
    }
    .left-content {
        padding-bottom: 35px;
    }
    .container-about {
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    .container-about .right-about-content h1.myname {
        font-size: 25px;
        line-height: 2.4rem;
        padding-block: 10px;
    }
    .container-about .right-about-content p {
        font-size: 15px;
    }
    .skills-content img {
        width: 200px;
        padding: 10px;
    }
    .footer-wrapper {
        display: flex;
        flex-direction: column;
    }
    .image-certification {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
    .wrapper-img-certf img {
        width: 50px;
    }
    .footer-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 35px;
        padding: 35px;
        border-radius: 10px 10px 0 0;
    }
    .get-in-touch {
        display: flex;
        align-items: center;
        padding: 10px;
        margin-top: 10px;
    }
    .get-in-touch img {
        width: 25px;
    }
    a.get-in-touch {
        margin-top: 10px;
        background-color: var(--c91435);
        font-weight: 600;
        padding-inline: 20px;
        font-size: 12px;
        color: #fff;
        border-radius: 5px;
        text-decoration: none;
        width: max-content;
        text-align: center;
    }
    a.get-in-touch ion-icon {
        opacity: 1;
        font-size: 1.5rem;
        margin-left: 10px;
    }
    a.get-in-touch:hover {
        background-color: var(--c00bceb);
        transform: scale(1.1);
        transition: ease-in-out 0.2s;
    }
    .content-footer .wrapper-content-ft1 {
        margin-bottom: 15px;
    }
    .content-footer .wrapper-content-ft1 h2 {
        font-size: 17px;
    }
    .wrapper-content-ft1 ul li,
    .wrapper-content-ft1 ul li a {
        list-style-type: none;
        color: #333;
        text-decoration: none;
    }
    .wrapper-content-ft1 ul li a:hover {
        font-weight: 700;
    }
    .Copyright {
        margin-block: 10px;
        font-size: 90px;
    }
    .Copyright p {
        font-family: var(--ssn);
    }
    .wrapper-main .Copyright {
        padding-inline: 35px;
    }
    .wrapper-main .Copyright {
        margin-bottom: 20px;
        font-size: 12px;
    }
    .wrapper-main .Copyright .copy-mobile {
        display: block;
    }
    .wrapper-main .Copyright .copy-desktop {
        display: none;
    }
    .wrapper-main {
        border-top: 2px solid #000;
    }
}
section#project {
    margin-block: 100px;
}
section#project .information-project h2 {
    font-size: 30px;
    text-align: center;
    font-family: var(--ssn);
    margin-bottom: 5px;
}
section#project .information-project p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}
.project-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.project-tab {
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgb(0 0 0 / 0.1);
    background: #fff;
    font-family: var(--poppins);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #444;
}
.project-tab:hover {
    border-color: var(--c91435);
    color: var(--c91435);
}
.project-tab.active {
    background: var(--c91435);
    color: #fff;
    border-color: var(--c91435);
    box-shadow: 0 4px 15px rgb(201 20 53 / 0.3);
}
.container-project {
    width: 100%;
}
.project-page {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}
.project-page--active {
    display: grid;
}
.project-card {
    height: 100%;
}
.project-card-inner {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.05);
    border: 1px solid rgb(0 0 0 / 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.project-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.1);
}
.project-card-inner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgb(0 0 0 / 0.05);
}
.project-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}
.project-info h3 {
    font-family: var(--ssn);
    font-size: 1.15rem;
    color: #222;
    margin-bottom: 1rem;
}
.project-links {
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
}
.project-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f8f9fa;
    color: #444;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}
.project-links a:hover {
    background: var(--c91435);
    color: #fff;
    transform: rotate(5deg);
}
@media (max-width: 768px) {
    .project-page {
        grid-template-columns: 1fr;
    }
    section#project {
        margin-block: 60px;
    }
}
section#form-message {
    margin-block: 100px;
    padding: 0;
}
section#form-message .information-contact h2 {
    font-size: 30px;
    text-align: center;
    font-family: var(--ssn);
    margin-bottom: 5px;
}
section#form-message .information-contact p {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}
.container-contact {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.info-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.05);
    border: 1px solid rgb(0 0 0 / 0.05);
    transition: transform 0.3s ease;
}
.info-card:hover {
    transform: translateX(10px);
}
.info-icon {
    width: 50px;
    height: 50px;
    background: rgb(201 20 53 / 0.1);
    color: var(--c91435);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.info-text h4 {
    font-family: var(--ssn);
    font-size: 1rem;
    color: #222;
    margin-bottom: 0.2rem;
}
.info-text p {
    font-size: 0.9rem;
    color: #666;
}
.info-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
}
.info-socials a {
    color: #444;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.info-socials a:hover {
    color: var(--c91435);
}
.contact-form-container {
    background: #fff;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgb(0 0 0 / 0.08);
    border: 1px solid rgb(0 0 0 / 0.05);
}
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    margin-left: 0.5rem;
}
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.input-wrapper ion-icon {
    display: none;
}
.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 15px;
    border: 1.5px solid #eee;
    background: #fcfcfc;
    font-family: var(--poppins);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}
.input-wrapper textarea {
    min-height: 120px;
    resize: vertical;
}
.textarea-wrapper ion-icon {
    display: none;
}
.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--c91435);
    background: #fff;
    box-shadow: 0 5px 15px rgb(201 20 53 / 0.05);
}
.btn-send {
    margin-top: 1rem;
    padding: 1.2rem;
    border-radius: 15px;
    border: none;
    background: var(--c91435);
    color: #fff;
    font-family: var(--ssn);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-send:hover {
    background: #a8102a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgb(201 20 53 / 0.3);
}
.btn-send ion-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.btn-send:hover ion-icon {
    transform: translate(5px, -5px);
}
@media (max-width: 992px) {
    section#myhome {
        margin-top: 0.5rem !important;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-form-container {
        padding: 1.5rem;
    }
    .container-home {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .home-left {
        align-items: center;
    }
    .home-left::before {
        display: none;
    }
    .home-name {
        font-size: 2.5rem;
    }
    .home-name::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .home-image-wrapper {
        max-width: 380px;
    }
    .subtitle {
        flex-direction: column;
        gap: 0.7rem;
    }
    .animated-text-wrapper {
        padding: 0.5rem 1.3rem;
        min-width: 250px;
    }
    .animated-text {
        font-size: 1.1rem;
    }
}
@media (max-width: 576px) {
    section#myhome {
        margin-top: 1rem !important;
    }
    .container-home {
        padding: 0 1.2rem;
    }
    .home-name {
        font-size: 2.2rem;
    }
    .home-description {
        padding: 1.2rem;
        text-align: left;
    }
    .home-image-wrapper {
        max-width: 300px;
        padding: 1.3rem;
    }
    .btn-download-cv {
        padding: 0.95rem 2rem;
    }
    .home-socials a {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
}
#form-message {
    padding: 0;
    margin-block: 100px;
}
.form-headline {
    display: none;
}
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}
.lightbox-overlay.show {
    opacity: 1;
    visibility: visible;
}
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 16px;
}
.lightbox-img {
    max-width: 100%;
    max-height: calc(90vh - 96px);
    border-radius: 10px;
    box-shadow: 0 20px 60px rgb(0 0 0 / 0.6);
    transform: translateY(10px) scale(0.98);
    transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.2, 1);
    object-fit: contain;
    z-index: 1;
}
.lightbox-overlay.show .lightbox-img {
    transform: translateY(0) scale(1);
}
.lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    border-radius: 999px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.4);
    cursor: pointer;
    font-size: 1.6rem;
    color: #222;
    border: none;
    z-index: 2;
    pointer-events: auto;
}
.lightbox-caption {
    margin-top: 12px;
    color: #fff;
    text-align: center;
    font-weight: 600;
}
@media (max-width: 820px) {
    .lightbox-overlay {
        background: rgb(0 0 0 / 0.92);
        padding: 8px;
    }
    .lightbox-content {
        max-width: 96vw;
        max-height: 86vh;
        padding: 12px;
    }
    .lightbox-img {
        max-height: calc(86vh - 72px);
        border-radius: 8px;
    }
    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    .lightbox-caption {
        font-size: 0.95rem;
        padding: 0 6px;
    }
}
@media (max-width: 480px) {
    .lightbox-content {
        max-width: 100vw;
        max-height: 80vh;
        padding: 8px;
    }
    .lightbox-img {
        max-height: calc(80vh - 56px);
        border-radius: 6px;
    }
    .lightbox-close {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    .lightbox-caption {
        font-size: 0.9rem;
    }
}
.wrapper-form-main {
    display: none;
}
@media (min-width: 768px) {
    .container {
        max-width: 700px;
    }
}
@media (max-width: 992px) {
    .container {
        max-width: 960px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .container-about {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .right-about-content h2 {
        font-size: 20px;
    }
    .right-about-content h1.myname {
        font-size: 2.5rem;
    }
    .right-about-content .about-text {
        font-size: 17px;
    }
    .icon-sosmed a {
        font-size: 25px;
        height: 1.8em;
    }
    .icon-sosmed a:hover {
        background-color: var(--c91435);
        color: #fff;
        transition: ease-in-out 0.3s;
    }
}
@media (min-width: 1200px) {
    body {
        margin-inline: 3.3rem;
    }
    .container {
        max-width: 100%;
        display: flex;
        gap: 40px;
        padding: 35px;
    }
    .left-content .content-right {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .left-content h1.content-name {
        font-size: 3.1em;
    }
    .left-content h3.subtitle {
        font-size: 1.2rem;
        line-height: 50px;
    }
    .left-content p.about-content {
        font-size: 1rem;
    }
    .content-right .img-content img {
        width: 468px;
    }
    .container-about {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        padding: 35px;
        border: 2px dashed var(--c91435);
        box-shadow: 0 4px 30px rgb(0 0 0 / 0.1);
        background: rgb(251 251 251 / 0.13);
        border-radius: 16px;
        box-shadow: 0 4px 30px rgb(0 0 0 / 0.1);
        backdrop-filter: blur(7.8px);
        -webkit-backdrop-filter: blur(7.8px);
        border: 1px solid rgb(251 251 251 / 0.11);
        border-radius: 10px;
        gap: 50px;
    }
    .left-about-content > .img-about-content img {
        width: 370px;
    }
    a.get-in-touch {
        margin-top: 10px;
        background-color: var(--c91435);
        font-weight: 600;
        padding: 10px;
        color: #fff;
        border-radius: 5px;
        font-size: 15px;
        text-decoration: none;
        width: 31%;
    }
    a.get-in-touch ion-icon {
        opacity: 1;
        margin-left: 10px;
        font-size: 1.5rem;
    }
    a.get-in-touch:hover {
        background-color: var(--c00bceb);
        transform: scale(1.1);
        transition: ease-in-out 0.2s;
    }
    .right-about-content {
        line-height: 1.7em;
    }
    .right-about-content > h2 {
        font-family: var(--playwrite-in);
        margin-bottom: 10px;
    }
    .container-about .right-about-content h1.myname {
        font-size: 3rem;
        color: var(--c91435);
    }
    .container-about .right-about-content .about-text {
        font-size: 15px;
        font-weight: 600;
    }
    .right-about-content .icon-sosmed {
        display: flex;
        margin-top: 20px;
        align-items: center;
        gap: 10px;
    }
    .skills-content img {
        width: 235px;
    }
    .icon-sosmed a {
        width: 45px;
        height: 1.5em;
    }
    section#certf,
    section#skills {
        margin-block: 10em;
    }
    .image-certification {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .certf-content img {
        width: 300px;
        padding-top: 18px;
    }
    .wrapper-img-certf img {
        width: 60px;
    }
    .footer-wrapper .content-footer .information-footer {
        width: 50%;
    }
    .wrapper-main {
        border-top: 2px solid #000;
    }
    .wrapper-main .Copyright {
        padding-inline: 35px;
    }
    .footer-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 30px;
        border-radius: 10px 10px 0 0;
    }
    .footer-wrapper > .content-footer {
        display: flex;
        gap: 90px;
    }
    .wrapper-content-ft1 {
        gap: 10px;
    }
    .wrapper-main .Copyright .copy-desktop {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .footer-wrapper .wrapper-content-ft1 ul li,
    .wrapper-content-ft1 ul li a {
        text-decoration: none;
        text-decoration: none;
        list-style-type: none;
        color: #333;
    }
    .wrapper-content-ft1 ul li a:hover {
        font-weight: 700;
    }
    .wrapper-content-ft1 h2 {
        font-size: 14px;
    }
    .Copyright {
        margin-block: 10px;
        font-family: var(--playwrite-in);
    }
    .info-project-title {
        text-align: center;
    }
    .info-project-title h2 {
        font-size: 30px;
        text-align: center;
    }
    .wrapper-main .Copyright .copy-desktop {
        display: block;
    }
    .wrapper-main .Copyright .copy-mobile {
        display: none;
    }
    .wrapper-project {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    .wrapper-project .wrapper-content-project {
        display: flex;
        padding: 15px;
        flex-wrap: wrap;
        gap: 25px;
        flex-direction: row;
        justify-content: center;
    }
    .wrapper-content-project .img-project-content img {
        width: 300px;
    }
    .wrapper-content-project .img-project-content img:hover {
        transform: scale(1.2);
        transition: ease-in-out 0.2s;
    }
    .info {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .info h3 {
        font-size: 15px;
    }
    .info a {
        font-size: 15px;
        display: inline-block;
        color: #333;
        padding: 10px 10px;
        text-align: center;
    }
    .info a:hover {
        transition: ease-in-out 0.2s;
        color: #c91435;
        transform: scale(1.5);
    }
    .info .link ion-icon {
        font-size: 1.4rem;
    }
    #form-message {
        padding: 60px;
        margin-block: 55px;
    }
    #form-headline h2 {
        font-size: 30px;
        text-align: center;
    }
    .wrapper-form-content #form {
        display: flex;
        flex-direction: column;
    }
    .wrapper-form-main {
        margin-top: 35px;
    }
    #form label {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 5px;
    }
    #form input {
        padding: 10px;
        border-radius: 10px;
        border: 0.1px solid #000;
        outline: none;
        font-family: var(--poppins);
        color: var(--c91435);
        font-weight: 600;
        margin-bottom: 10px;
    }
    #form input:focus {
        border: 0;
        box-shadow: 0 2px 5px #000;
    }
    #form textarea {
        height: 150px;
        font-family: var(--poppins);
        padding: 10px;
        outline: none;
        border: 0.1px solid #000;
        border-radius: 10px;
        font-size: 14px;
        color: var(--c91435);
        font-weight: 600;
        margin-bottom: 15px;
    }
    .wrapper-form-content .buttonSend {
        margin-top: 15px;
        padding: 10px;
        width: 100%;
        background-color: var(--c00bceb);
        border: 0;
        color: #fff;
        font-size: 16px;
        border-radius: 5px;
        font-family: var(--poppins);
        font-weight: 600;
    }
    .buttonSend:hover {
        cursor: pointer;
        background-color: var(--c0084d1);
    }
}
footer {
    background-color: #fff;
    color: #333;
    margin-top: 4rem;
    border-top: 2px solid var(--c91435);
    position: relative;
    overflow: hidden;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgb(201 20 53 / 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgb(0 188 235 / 0.03) 0%, transparent 50%);
    pointer-events: none;
}
.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
}
.footer-section h3,
.footer-section h4 {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}
.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--c91435), var(--c00bceb));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background: linear-gradient(135deg, var(--c91435), var(--c00bceb));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
}
.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}
.footer-about {
    max-width: 100%;
}
.footer-badges {
    display: flex;
    margin-top: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}
.badge-item {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255 / 0.8);
    border: 2px solid var(--c91435);
    border-radius: 16px;
    padding: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgb(201 20 53 / 0.1);
}
.badge-item:hover {
    background: linear-gradient(135deg, rgb(201 20 53 / 0.08), rgb(0 188 235 / 0.08));
    border-color: var(--c00bceb);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgb(201 20 53 / 0.2);
}
.badge-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.footer-links li a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
    font-weight: 500;
}
.footer-links li a:hover {
    color: var(--c91435);
    transform: translateX(8px);
    font-weight: 600;
}
.social-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid var(--c91435);
    border-radius: 50%;
    color: var(--c91435);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgb(201 20 53 / 0.1);
}
.social-icon:hover {
    background: linear-gradient(135deg, var(--c91435), var(--c00bceb));
    border-color: #fff0;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgb(201 20 53 / 0.3);
}
.footer-bottom {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgb(201 20 53 / 0.15);
    text-align: center;
    background: #fff0;
}
.copyright-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    letter-spacing: 0.3px;
    font-weight: 500;
}
.heart {
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
    color: var(--c91435);
}
@keyframes heartbeat {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}
.desktop-only {
    display: inline;
}
.mobile-only {
    display: none;
}
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2.5rem;
        padding: 2.5rem 1.5rem;
    }
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
    }
    .footer-section p {
        font-size: 0.9rem;
    }
    .badge-item {
        width: 70px;
        height: 70px;
    }
}
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    .footer-section:not(.footer-about) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .footer-about {
        grid-column: 1 / -1;
    }
    .footer-badges {
        gap: 0.8rem;
    }
    .badge-item {
        width: 65px;
        height: 65px;
    }
    .footer-bottom {
        padding: 1.2rem 1.5rem;
    }
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: inline;
    }
}
@media (max-width: 480px) {
    footer {
        margin-top: 2.5rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    .footer-section:not(.footer-about) {
        grid-template-columns: 1fr;
    }
    .footer-section h3,
    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    .badge-item {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }
    .social-links {
        gap: 0.8rem;
    }
    .social-icon {
        width: 40px;
        height: 40px;
    }
}
@media (max-width: 400px) {
    section#myhome {
        margin-top: 1.5rem !important;
    }
    .container-home {
        padding: 0 0.8rem;
    }
    .home-name {
        font-size: 1.6rem;
    }
    .home-description {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    .contact-form-container {
        padding: 1rem;
    }
    .input-wrapper input,
    .input-wrapper textarea {
        padding: 0.75rem 0.9rem;
        font-size: 0.85rem;
    }
    .info-card {
        padding: 1rem;
    }
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .info-text h4 {
        font-size: 0.9rem;
    }
    .info-text p {
        font-size: 0.8rem;
    }
    .btn-download-cv {
        padding: 0.7rem 1.4rem;
        font-size: 0.85rem;
    }
    .home-socials a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    section#myhome {
        margin-top: -2rem;
    }
}
