/* Global Styles */
body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

/* Credential Container */
.credential-container {
    display: flex;
    max-width: 1200px;
    /* margin: 50px auto; */
    gap: 30px;
}

/* Left Section (Profile) */
.credential-left {
    width: 30%;
    height: 100%;
    padding: 30px;
    text-align: center;
}
.user-profile-card {
    background-color: #1e1e1e;
    border-radius: 20px;
    position: fixed;
    padding: 30px;

}
.user-profile-image img {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
}
.credential-right{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    /* align-items: center; */
}

h1 {
    font-size: 24px;
    /* margin-top: 15px; */
}

h3 {
    font-size: 16px;
    color: #aaa;
    /* margin-top: -10px; */
}

.user-social-media span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #333;
    border-radius: 50%;
    /* margin: 5px; */
}

.user-contact-btn {
    background-color: #333;
    color: #fff;
    width: 100%;
    padding: 10px;
    border: none;
    font-size: large;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
}

/* Right Section */
.credential-right {
    width: 65%;
    /* background-color: #1e1e1e; */
    padding: 30px;
    border-radius: 15px;
}

.education-degree,.experience-role{
    color:#5B78F6;
}

.experience-company,.experience-year,.education-year , .education-institution{
    color:rgba(128, 128, 128, 0.696);
}
.education-institution,.experience-company{
    font-size: 14px;
    font-weight: bold;
}

.experience-box, .education-box, .skill-box {
    /* background-color: #252525; */
    /* padding: 15px; */
    border-radius: 10px;
    /* margin-bottom: 15px; */
}

/* Skill Section */
.skill-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-box h4 {
    font-size: 16px;
}

@media (max-width: 768px) {
    .credential-container {
        flex-direction: column;
        align-items: center;
    }
    .credential-left, .credential-right {
        width: 90%;
    }
}.user-social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.profile-user-span {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #007bff;
    transition: background-color 0.3s ease-in-out;
}

.profile-user-span a {
    color: #ffffff;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 50%;
}



.skills-section {
    color: #fff;
    margin-top: 40px;
}

.skills-section h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.skill {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.skill-percent {
    font-size: 16px;
    font-weight: bold;
    color: #888;
}

.skill-name {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.skill p {
    font-size: 14px;
    color: #888;
    margin: 0;
}
