/*RESET CSS START */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');




*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Poppins", serif;
}


:root{
--bg-color: #000000
--second-bg-color: #b17457 ;
--text-color: #f8eded ;
--main-color: #f9e400
}


html{
    font-size:60%;
    overflow-x: hidden;
}

body{
    background-color: #000000;
    color: #f8eded
}

span{
    color: #f9e400;
}

section{
    min-height: 100vh;
    padding: 10rem 12% 10rem ;
}
/*RESET CSS END */

/*HEADER START */

.header{
    position: fixed;
top: 0% ;
left: 0%;
width: 100%;
padding: 4rem 12% 4rem;
background-color:rgba(0,0,0,0) ;
backdrop-filter: blur(10px);
display: flex;
justify-content: space-between;
align-items: center;
z-index: 5;
}


.logo{
font-size: 3rem ;
color: #ffffff  ;
font-weight: 800;
cursor:pointer;
transition: 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(1.1);
    text-shadow: 0 0 25px #f9e400;
}

.logo span{
transform: scale(1.1);
text-shadow: 0 0 25px #f9e400;
}

.logo2 {
font-size: 3rem ;
color: #ffffff  ;
font-weight: 800;
cursor:pointer;
transition: 0.3s ease-in-out;
position: relative;
left: 20%;
}

.logo2:hover {
    transform: scale(1.1);
    text-shadow: 0 0 25px #f9e400;
}

.logo2 span{
transform: scale(1.1);
text-shadow: 0 0 25px #f9e400;
}

.navbar {
    cursor:pointer;
    transition: 0.3s ease-in-out;
    position: relative;
    right: 7%;
    letter-spacing: 15px;
}


.navbar:hover {
    transform: scale(1.1);
    text-shadow: 0 0 25px #f9e400;  
}

.navbar span{
 transform: scale(1.1);
text-shadow: 0 0 25px #f9e400;
}

/*HEADER END */


/* HOME START */

.home{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15rem;
}

.home-content {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    text-align: left;
    margin-top: 3rem;
}

.home-content h1{
    color: #b9ae36;
    font-size: 6rem;
    font-weight: 700;
    margin-top: 1.5rem;
    line-height: 2
    
}

.home-content h4{
    color: #b9ae36;
    font-size: 6rem;
    font-weight: 700;
    margin-top: 1.5rem;
    line-height: 2;
}


.home-img {
    border-radius: 50%;
}

.home-img img {
    width: 20vw;
    position: relative;
    top: 3rem;
    border-radius: 80%;
    box-shadow: 0 0 25px var(--main-color) ;
    cursor: pointer;
    transition: 0.4s ease-in-out;
} 

.home-img img:hover {
    box-shadow: 0 0 25px var(--main-color), 0 0 50px var(--main-color), 0 0 100px var(--main-color);

}

.home-content p{
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
    max-width: 1000px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width:4.5rem;
    height: 4.5rem;
    background-color: transparent;
    border: 2px solid var(--main-color);
    font-size: 2.5rem;
    border-radius: 50%;
    color: #f9e400;
   margin: 3rem 1.5rem 3rem 0;
   transition: 300ms ease-in-out;
}

.social-icons a:hover {
    color:var(--text-color);
    transform: scale(1.3) translateY(-5px);
    box-shadow: 0 0 25px var(--main-color);
    background-color: #6e6729;
}


/*HOME END  */

/* EDUCATION START */
.heading {
    font-size: 9rem;
    text-align: center;
    margin: 5rem 0;
}

.education {
    background-color: #697565;
    padding: 100px 15px;
}

.timeline-items {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.timeline-items::before{
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    background-color: #f9e400;
    left:50%;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 40px;
    width: 100%;
    position: relative;
    color: #fafafa;
    transition: 0.4s ease-in-out;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd){
    padding-right: 52%;
    font-size: medium;
    padding-bottom: 10%;

}

.timeline-item:nth-child(even) {
padding-left: 52%;
margin-top: -70;
font-size: medium;

}

.timeline-content{
    background-color: #000000;
    border: 3px solid var(--main-color);
    padding: 30px 50px;
    border-radius: 4rem;
    box-shadow: 0 0 10px var(--main-color);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.timeline-content:hover {
    box-shadow: 0 0 25px var(--main-color);
    transform: scale(1.05);
}

.timeline-content h3 {
    font-size: 20px;
    color: #ffffff;
    margin: 0 0 10px;
    font-weight: 500;
    font-weight: bold;
}

.timeline-content p{
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-thumb{
    background-color: #f9e400;
    border-radius: 4rem;
}

::-webkit-scrollbar-track {
    background-color: #000000;
    width: 50px;
}
/* EDUCATION END */

