*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    display: block;
    background-color: #1F2833;
    justify-content: center;
    align-items: center;
}

/* #1F2833 */
/* #353a41 */

.container{
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}
.left {
    flex: 1;
    text-align: center;
}
.text-box1{
    padding: 0 20px 20px 50px;
    text-align: left;
}
.text-box1 h1{
    color: aliceblue;
    font-size: 50px;
    font-family: "Josefin Sans", sans-serif;
    animation: text 2s 1 ease alternate;
}
@keyframes text{
    0%{transform: translateX(-500px);}
    100%{transform: translateX(0);}
}

.text-box1 h2{
    font-family: "Quicksand", sans-serif;
    padding-top: 10px;
    color: #748d92;
    font-size: 24px;
    animation: h2animation 7s 1 ease alternate;
}
@keyframes h2animation{
    0%{color: transparent;}
    100%{color: #748d92;}
}

.right {
    flex: 1;
    text-align: right;
    width: 50%;
    margin: 0;
    padding: 0;
    height: 100vh;
}

.right img {
    height: 100vh;
    max-width: 100%;
    width: auto;
    border-radius: 50% 0px 0px 50%;
    margin: 0;
    padding: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(../images/aboutme-img.jpg);
    background-size: cover;
}


.container-2{
    width: 100%;
    padding: 20px;
    background-color: #353a41;
    height: auto;
}

/* education time line */
.header-container{
    display: flex;
    align-items: center;
    font-family: "Michroma", sans-serif;
    color: aliceblue;
    padding: 20px 20px 20px 20px;
}
.header-container i{
    margin-right: 10px;
    font-size: 20px;
}

.edu{
    font-size: 40px;
}


.row{
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 10px;
}

.education-item {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    padding:0px 0px 0px 50px; 
}

.icon {
    font-size: 24px;
    margin-right: 10px;
    padding-right: 20px;
}

.education-content h3 {
    font-size: 22px;
    margin: 0;
    color: #ffff;
    font-family: "Quicksand", sans-serif;
}

.education-content h4 {
    font-family: "Quicksand", sans-serif;
    font-size: 18px;
    margin: 5px 0;
    color: #868585;
}

.education-content p {
    margin: 5px 0;
    color: #ccc;
}



/* core values */
.core-values{
    margin-top: 40px;
}

.coreValues{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Michroma", sans-serif;
    color: aliceblue;
    padding: 20px 20px 20px 20px;
    font-size: 40px;
    margin-bottom: 20px;
}

.values-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.value-card {
    background: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Blurred glass effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 250px;
    transition: transform 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.value-card:hover {
    transform: scale(1.05);
}

.value-card img {
    width: 40px;
    margin-bottom: 10px;
}

.value-card h3 {
    font-family: "Quicksand", sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-card p {
    font-family: "Quicksand", sans-serif;
    font-size: 0.9rem;
    color: #fff;
}

/* hobies and intrests */
.hobbies{
    margin-top: 40px;
    margin-bottom: 50px;
}
.hobby-topic{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Michroma", sans-serif;
    color: aliceblue;
    padding: 20px 20px 20px 20px;
    font-size: 40px;
    margin-bottom: 20px;
}

.hobbies-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.hobby1{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    color: aliceblue;
    font-family: "Michroma", sans-serif;

}

.hobby {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.hobby i {
    font-size: 30px;
    color: #007bff;
}

.hobby p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

.hobby:hover {
    transform: scale(1.1);
}

/* back */
.back {
    position: absolute; 
    top: 30px; 
    left: 50px; 
    z-index: 10; 
}

.back a {
    color: #ffffff; 
    font-size: 24px;
    text-decoration: none; 
    transition: color 0.3s ease; 
}

.back a:hover {
    color: aliceblue; 
}

