@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@500&display=swap');

*{
    margin: 0%;
    padding: 0%;
    font-weight: 500;
    font-size: 14px;

}

.fa-phone, .fa-envelope, .fa-map-marker-alt {
    color: #F37021; /* Change icon color to orange */
}

body{
    background:linear-gradient(135deg, #E3E3E3 0%,#9a9a9a 100%);
    display: grid;
    place-items: center;
    font-weight: 450;
    opacity: 1;
}

.jobblock {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px; /* Reduced space between job blocks */
}

.job-details {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.job-title-company, .job-years {
    flex: 1;
    min-width: 0; /* Prevents flex item from growing beyond its content */
    font-weight: bold; /* Make text bold */
}

.job-title-company {
    flex-grow: 8; /* More room for job title and company */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-years {
    flex-grow: 2; /* Limit growth for year alignment */
    text-align: right;
}

.job-responsibilities {
    flex-basis: 100%;
    margin-top: 5px; /* Adjust as needed for visual spacing between job details and responsibilities */
}


.none
{
    display: none;
}
.resume
{
    margin-top: 20px;
    width: 800px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}
#print
{
    background-color: #fff;
    padding: 30px 50px;
    height: 1120px;

}

.head
{
    display: grid;
    grid-template-columns: 3fr 1.5fr;
}
.head .main .name
{
    font-size: 55px;
    font-family: 'Raleway', sans-serif;
}
.head .main  span:nth-child(2)
{
    color: rgb(100, 100, 100);
    font-size: 55px;
    font-family: 'Raleway', sans-serif;
    margin-left: 5px;
}
.head .main .post
{
font-family: 'Barlow', sans-serif;
}
.head .contacts
{
    text-align: right;
    padding-top: 7px;
}
.head .contacts .content
{
    font-weight: 500;
    padding-right: 5px;
}
.head .contacts .symbol
{
    margin-right: 5px;
    font-size: 15px;
    width: 17px;
    height: 17px;
}
.line
{
    height: 0.5px;
    background-color: rgb(87, 87, 87);
    margin: 25px 0;
    margin-bottom: 50px;
}
.mainbody
{
    display: grid;
    grid-template-columns: 10fr 1fr 17fr;
    height: 900px;
}
.mainbody .border
{
    background-color: rgb(87, 87, 87);
    width: 3px;
    opacity: 2;
    max-height: 85%;

}
.mainbody .rightside
{
    padding-left: 20px;
}
.title
{
    font-weight: 700;
    font-size: 18px;
    border: none;
    padding-bottom: 3px;
    border-bottom: 2px #f37021 solid;
}
.skill
{
    margin-bottom: 6px;
}
button
{
    margin: 15px 0;
}
.language
{
    margin-bottom:6px;
}
.language span:nth-child(odd)
{
    font-weight: 700;
}
.edublock {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px; /* Adjusted gap between education entries */
}

.edu-details {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.edu-name, .edu-years {
    flex: 1;
    min-width: 0;
    font-weight: bold; /* Make text bold */
}

.edu-name {
    flex-grow: 8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.edu-years {
    flex-grow: 2;
    text-align: right;
}




.edublock .head
{
    font-weight: 700;
    font-size: 17px;
}

.navbtn
{
position: fixed;
top: 40%;
left: 4%;
transform: translate(-40%,-4%);
height: 60px;
width: 60px;
border-radius: 50%;
border:#F37021 2px solid;
transition: 300ms ease-in-out;
box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}
.navbtn:nth-child(2)
{
top: 50%;
left: 4.4%;
transform: translate(-50%,-4.4%);
}
.navbtn:nth-child(3)
{
top: 60%;
left: 4.8%;
transform: translate(-60%,-4.8%);
}
.navbtn:hover
{
    background-color: #F37021;
    color: #fff;
    border: #000 2px solid;
    height: 65px;
    width: 65px;
}
.input-checkbox{
    margin-right: 10px;
}
.education-head{
    font-weight: 700;
    font-size: 17px;
}

            /* Animate the navigation buttons */
            .navbtn {
                transition: transform 0.3s ease-in-out;
            }
    
            .navbtn:hover {
                transform: scale(1.2);
            }
    
            /* Animate the main section */
            #resume {
                animation: fadeIn 1s ease-in-out;
            }
    
            /* Animate the footer */
            footer {
                text-align: center;
                margin-top: 20px;
                opacity: 0;
                animation: fadeIn 1s ease-in-out 0.5s forwards;
            }
    
            /* Additional hover effect for the footer link */
            footer a:hover {
                color: #3498db;
            }
    
            @keyframes fadeIn {
                from {
                    opacity: 0;
                    transform: translateY(-20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            
    