.backGroundBox {
    background-color: #006494;
    width: 95%;
    height: 1000px;
    margin: auto;
    margin-top: 40px;
    border: 15px solid #003554;
    padding: 3%;
}

a {
    text-decoration: none;
}

p {
    word-wrap: break-word;
}

a:hover {
    text-decoration: underline;
    text-underline-offset: 1.5px;
}

@keyframes spinborder {
    0% {
        border-top: 15px solid #CC3300;
        border-right: 15px solid #003554;
        border-bottom: 15px solid #003554;
        border-left: 15px solid #003554;
    }

    25% {
        border-top: 15px solid #003554;
        border-right: 15px solid #CC3300;
        border-bottom: 15px solid #003554;
        border-left: 15px solid #003554;
    }

    50% {
        border-top: 15px solid #003554;
        border-right: 15px solid #003554;
        border-bottom: 15px solid #CC3300;
        border-left: 15px solid #003554;
    }

    75% {
        border-top: 15px solid #003554;
        border-right: 15px solid #003554;
        border-bottom: 15px solid #003554;
        border-left: 15px solid #CC3300;
    }

    100% {
        border-top: 15px solid #CC3300;
        border-right: 15px solid #003554;
        border-bottom: 15px solid #003554;
        border-left: 15px solid #003554;
    }

}

.backGroundBox {
    animation-timing-function: linear;
    animation-name: spinborder;
    animation-duration: 4s;
    animation-iteration-count: infinite;

}

a {
    color: #fff;
}

.cv-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.left-column {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 20px;

    /* outline: 1px solid #CC3300; */
}

.right-column {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;

    /* outline: 1px solid #CC3300; */
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 18px;
    color: #666;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.profile-info {
    text-align: center;
    margin-bottom: 30px;
}

.profile-info h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-info h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #f0f0f0;
    font-weight: 300;
}

.profile-info h3 {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 0;
}

.section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    /* transition: all 0.3s ease; */
}

.contact-list li:hover {
    background: rgba(255, 255, 255, 0.2);
    /* transform: translateX(5px); */
    /* border: 1px solid #CC3300; */
    outline: 3px solid #CC3300;
}

.contact-list a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.skills-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}

.skills-list li {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    /* transition: all 0.3s ease; */
    /* border-left: 4px solid rgba(255, 255, 255, 0.4); */
}

.skills-list li:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    outline: 2px solid #CC3300;
}

.experience-item,
.education-item,
.cert-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    /* border-left: 5px solid rgba(255, 255, 255, 0.4); */
    /* transition: all 0.3s ease; */
}

.top-title-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    /* border-left: 5px solid rgba(255, 255, 255, 0.4); */
    /* transition: all 0.3s ease; */
}

.experience-item:hover,
.education-item:hover,
.cert-item:hover {
    background: rgba(255, 255, 255, 0.15);
    /* transform: translateY(-3px); */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    outline: 1px solid #CC3300;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.item-title {
    font-size: 1.3rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 5px;
}

.item-company {
    font-size: 1.1rem;
    color: #ddd;
    font-style: italic;
}

.item-date {
    font-size: 0.9rem;
    color: #bbb;
    font-weight: 500;
}

.item-description {
    color: #e0e0e0;
    line-height: 1.6;
}

.item-description ul {
    margin-top: 10px;
    padding-left: 20px;
}

.item-description li {
    margin-bottom: 8px;
}

.professional-summary {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    /* text-align: justify; */
    /* background: rgba(255, 255, 255, 0.08); */
    padding: 25px;
    border-radius: 12px;
    /* border-left: 5px solid rgba(255, 255, 255, 0.4); */
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.certification-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    /* transition: all 0.3s ease; */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.certification-item:hover {
    /* background: rgba(255, 255, 255, 0.15); */
    /* transform: translateY(-3px); */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    outline: 2px solid #CC3300;
    border: none;
}

.certification-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.module-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    /* transition: all 0.3s ease; */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    outline: 1px solid rgba(255, 255, 255, 0.2);;
}

.module-item:hover {
    /* transform: translateY(-3px); */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    outline: 1px solid #CC3300;
    border: none;
}

@media (max-width: 1168px) {
    .cv-layout {
        grid-template-columns: 1fr;
        padding: 15px;

        /* Center the layout itself */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .left-column {
        position: static;
        top: unset;
        margin-bottom: 20px;

        /* Center this block */
        width: 90%;
        max-width: 800px;
    }

    .right-column {
        width: 90%;
        max-width: 800px;
    }

    .profile-photo {
        width: 120px;
        height: 120px;
    }

    .profile-info h1 {
        font-size: 1.5rem;
    }

    .profile-info h2 {
        font-size: 1.1rem;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .item-header {
        flex-direction: column;
        gap: 10px;
    }

    .skills-list {
        display: none;
    }

    .skills-list-title {
        display: none;
    }
}