@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
    margin: 0;
    padding: 1px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #d9e6f6; /* Light blue background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    min-height: 1000px;
    background: #fff;
    color: white;
    font-size: 0.8em;
    font-weight: 300;
    margin: 20px;
    display: grid;
    grid-template-columns: 1fr 3fr; /* Adjust the column widths as needed */
    box-shadow: 0 35px 55px rgba(0, 0, 255, 0.1); 
} 

.container .left-side {
    position: relative;
    color: white;
    background: #003366; /* Dark blue background */
    padding: 30px;
    max-width: 400px;
    
}

.profileText {
    
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 255, 0.2); /* Dark blue border */
}

.profileText .imgBx {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid white; /* Add white border */
    overflow: hidden;
    margin: 0 auto; 
   
}

.profileText .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Set the width to 100% of the parent container's width */
    height: 100%; /* Set the height to 100% of the parent container's height */
    object-fit: cover;
    margin-bottom:50px;
}


.profileText h2 {
    color: #fff; /* White color */
    font-size: 1.5em;
    margin-top: 20px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    line-height: 1.4em;
}

.profileText h2 span {
    font-size: 0.8em;
    font-style: 300;
}

.contactInfo {
    padding-top: 10px;
}

.title {
    color: #908f92; /* White color */
    text-transform: uppercase;
    font-size: 1.5em;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contactInfo ul {
    position: relative;
    
}

.contactInfo ul li {
    position: relative;
   
    list-style: none;
    margin: 10px 0;
    cursor: pointer;
}

.contactInfo ul li .icon {
    display: inline-block;
    width: 30px;
    font-size: 18px;
    color: #b9b9d1; /* Light blue color */
}

.contactInfo ul li span
{
    color: #fff;
    font-weight: 300;
}
.contactInfo.education li
{
margin-bottom: 15px;

}
.contactInfo.education h5
{
    color: rgb(226, 225, 231);
    font-weight: 500;
    font-size: 1em;
}
.contactInfo.education h4
{
    color: rgb(252, 248, 248);
    font-weight: 500;
}
.contactInfo.education h4:nth-child(2)
{
color: #fff;
font-weight: 300;
}
.contactInfo.language .percent {

    position: relative;
    width: 100%;
    height: 6px;
    background: #908f92; /* Red background */
    display: block;
    margin-top: 5px;
}

.contactInfo.language .percent div {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #908f92; /* Dark red background */
}
.circle-bullets {

    list-style-type: none;
    padding-left: 20px; /* Adjust as needed */
}

.circle-bullets li {
   color:#f0f1ed;
   font-weight: 500;
    position: relative;
    padding-left: 30px; /* Adjust as needed */
}

.circle-bullets li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10px; /* Size of the circle */
    height: 10px; /* Size of the circle */
    border-radius: 50%;
    background-color: #908f92;; /* Color of the circle */
}


.container .right-side{

    color:#003366;
    position: flex;
    background: #fff;
    padding: 40px;
    
}

.about {
    padding-top: 20px;

}

.about:last-child {
    margin-bottom: 0;
}

.title2 {
    color: #004080; /* Dark blue color */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

p {
    color: #333;
}

.about .box {
    display: flex;
    flex-direction: row;
    margin: 10px 0;
}

.about .box .year_company {
    min-width: 150px;
}

.about .box .year_company h5 {
    text-transform: uppercase;
    color: #2c489e; /* Light blue color */
    font-weight: 600;
}

.about .box .text h4 {
    text-transform: uppercase;
    color: #0f104d; /* Dark red color */
    font-size: 16px;
}

.skills .box {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 150px 1fr;
    justify-content: center;
    align-items: center;
}

.skills .box h4 {
    text-transform: uppercase;
    color: #2c489e; /* Light blue color */
    font-weight: 500;
}

.skills .box .percent {
    position: relative;
    width: 100%;
    height: 10px;
    background: #c1baba;
}

.skills .box .percent div {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #004080; /* Dark blue color */
}

.interest ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.interest ul li {
    list-style: none;
    color: #2c489e;
    font-weight: 500;
    margin: 10px 0;
}

.interest ul li .fa {
    color: #003366; /* Dark blue color */
    font-size: 18px;
    width: 20px;
}
