@charset "UTF-8";
body {
    font-family: "Bona Nova SC", serif;
    font-weight: 400;
    font-style: normal;
    background: linear-gradient(to bottom, #100F17, #1D1B2A, #3A3654, #57527D);
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #2c2b3e;
    border-radius: 10px;
}

header {
    text-align: center;
    padding: 20px;
    background: linear-gradient(to bottom, #E6326B, #E94059, #343145, #09080D);
    border-radius: 10px 10px 0 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.profile-img {
    border-radius: 8px;
    width: 173px;
    height: 253px;
}

.graduate-regular {
    font-family: "Graduate", serif;
    font-weight: 400;
    font-style: normal;
}

p {
    font-size: 18px;
}

h1, h2, h3 {
    font-family: "Graduate", serif;
    font-weight: 400;
    font-style: normal;
}

header h1 {
    margin: 10px 0 5px;
    font-size: 28px;
}

header h2 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: normal;
}

.contact-info {
    font-size: 14px;
    text-align: left;
    margin-top: 20px;
}

.contacts {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contacts img.icon {
    width: 60px;
    height: 65px;
    margin-right: 10px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #ff5f6d;
}

.about-me {
    padding: 20px;
    background-color: #3c3b4f;
    margin-bottom: 20px;
    border-radius: 10px;
}

h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #EC8091;
}

.details {
    padding: 20px;
    background-color: #3c3b4f;
    margin-bottom: 20px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.details div {
    width: 45%;
    margin-bottom: 20px;
}

.details ul {
    list-style-type: none;
    padding: 0;
}

.details ul li {
    margin-bottom: 10px;
}

.interest-icon {
    width: 60px;
    height: 65px;
    margin-right: 10px;
}

.interests ul {
    list-style-type: none;
    padding: 0;
}

.interests ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.interests ul li span {
    margin-left: 10px;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rating p {
    margin-bottom: 5px;
}

.dotrating {
    display: flex;
    gap: 5px;
}

.dotrating1 {
    height: 10px;
    width: 10px;
    background-color: #EBA7B2;
    border-radius: 50%;
    display: inline-block;
}

.dotrating2 {
    height: 10px;
    width: 10px;
    background-color: #D9D9D9;
    border-radius: 50%;
    display: inline-block;
}

.skills p {
    margin-bottom: 10px;
}

.progress-bar-container {
    margin-bottom: 20px;
}

.progress-bar-container p {
    margin: 0 0 5px;
}

.progress-bar {
    position: relative;
    height: 20px;
    background-color: #D9D9D9;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
}

.progress-bar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #EC8091;
}

.progress-bar[style]::before {
    width: inherit;
}

.rating-circle {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: conic-gradient(#ff5f6d 0%, #ff5f6d 75%, #fff 0%);
    color: #fff;
    text-align: center;
    margin-left: 10px;
}

.contact {
    padding: 20px;
    background-color: #3c3b4f;
    margin-bottom: 20px;
    border-radius: 10px;
}

form {
    display: flex;
    flex-direction: column;
}

form input, form textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #2c2b3e;
    color: #ffffff;
}

form button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #EC8091;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

form button:hover {
    background-color: #ffc371;
}

.button-group {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .details div {
        width: 100%;
    }
}
