@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400;700&family=Roboto+Mono:ital@0;1&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	font-family: 'Pixelify Sans', cursive;
	font-family: 'Roboto Mono', monospace;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url(background.jpg); 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.container {
    position: relative;
    width: 100%;
    max-width: 970px;
    min-height: 1000px;
    background-color: #000000;
    margin: 50px; 
    box-shadow: 0 35px 55px rgba(0, 0, 0, 0.1); 
}
.top {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #231fbf, #69175f);
	padding:50px;
}
h2 {
    font-size: 3em;
    color: #fff;
    text-transform: uppercase;
    line-height: 0.7em;
    letter-spacing: 0.1em;
}
h2 span {
    font-size: 0.4em;
    font-weight: 300;
}
.group {
    position: relative;
    display: grid;
    gap: 40px;
    width: 100%;
    grid-template-columns: 2fr 3fr;
	margin-top: 20px;
}
.group .imgBx {
    position: relative;
    width: 100%;
}
.group .imgBx img {
    width: 100%;
} 
.group p {
    color: #fff;
    font-size: 1.05em;
}
.bottom {
    position: relative;
    display: grid;
    margin: 50px 50px 0;
    gap: 40px;
    grid-template-columns: 2fr 3fr;
}
.bottom .left_side {
    margin-top: 50px;
}
h4{
	font-size: 1.1em;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: #fff;
	background: #231fbf;
	padding: 0 15px;
	margin-top: 40px;
	display: inline-flex;
}
.contactInfo {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}
.contactInfo li {
    list-style: none; /* Remove list-style */
    display: flex;
    gap: 10px;
}
.contactInfo li .icon{
	color: #231fbf;
}
.contactInfo li .text{
	color:#A5D7E8;
}
.skills {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
	margin: 20px 0;
}
.skills .skillsBox {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 2fr 3fr;
}
.skills .skillsBox p {
    color: #eaabab; /* Set text color to #333 */
}
.skills .skillsBox .value {
    position: relative;
    width: 100%;
    height: 10px;
    background: #eee;
}
.skills .skillsBox .value::before {
    position: absolute;
    width: var(--i,0);
    height: 100%;
    background: #302d90;
    content: '';
    transition: width 2.3s ease-in; 
}
.edu_group {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}
.edu_groupBx {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 3fr;
}
.edu_groupBx p:nth-child(1){
	font-weight: 500;
}
.edu_groupBx b{
	font-weight: 600;
	color: #231fbf;
}
.edu_groupBx b span{
	position: relative;
	font-size: 0.8em;
	color: #666;	 
}
.hobbies {
    padding: 0 50px 50px;
}
.hobbies ul {
    display: flex;
    margin-top: 30px;
    gap: 20px;
    justify-content: space-between;
}

.hobbies ul li {
    list-style: none;
    color: #333;
    width: calc(100% / 6);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #f3f3f3;
    text-align: center;
    cursor: pointer;
}
.hobbies ul li:hover{
	background-color: #231fbf;
	color: #fff;

}
.hobbies ul li i{
	font-size: 2em;

}


.hidden{
	opacity: 0;
	transition: all 1s ease-out;
	filter: blur(5px);
	transform: translateX(-200%);
}
.hiddenright{
    opacity: 0;
	transition: all 1s ease-out;
	filter: blur(5px);
	transform: translateX(100%);
}
.show{
	opacity: 1;
	transform: translateX(0);
	filter: blur(0);
}

.cards:nth-child(2){
	transition-delay: 200ms;
}
.cards:nth-child(3){
	transition-delay: 400ms;
}
.cards:nth-child(4){
	transition-delay: 600ms;
}
.edu_groupBx .hiddenright:nth-child(1){
    transition-delay: 200ms;
}
.edu_groupBx .hiddenright:nth-child(2){
    transition-delay: 400ms;
}
.edu_groupBx .hiddenright:nth-child(3){
    transition-delay: 600ms;
}