
.header{
    height: calc(100vh - 60px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #13151d;
    padding: 0 10%;
}


.header-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* border: 2px solid purple; */
    color: #fff;
    width: 100%;
    /* padding-left: 5vw;
    padding-right: 5vw; */
    max-width: 600px;
}
.header-content {
    color: #fff;
}
.header-content h1{
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
/* .header-content h3{
    font-size: 32px;
    font-weight: 700;
    color: #0ef;
} */




.header-content {
    color: #fff;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align items to the start */
}

.animation {
    display: flex; /* Align text and cursor inline */
    align-items: center; /* Center cursor vertically with text */
}

.text-animation {
    font-size: 34px;
    font-weight: 700;
    display: inline-block; /* Allows the width to be based on content */
    color: #0ef;
    white-space: nowrap; /* Prevents text wrapping */
    overflow: hidden; /* Hides the text during typing effect */
    border-right: 2px solid transparent; /* Placeholder for cursor */
    animation: caret 0.75s step-end infinite; /* Blinking effect */
}
@media (max-width: 450px) {
    .text-animation {
        font-size: 30px; /* Reduced font size */
        font-weight: 500; /* Reduced font weight */
    }

}
.cursor {
    color: #0ef; /* Cursor color */
    font-size: 34px; /* Same size as text */
    margin-left: 10px; /* Fixed space between text and cursor */
}

/* Blinking Cursor Effect */
@keyframes caret {
    50% { border-color: transparent; } /* Hides the border to simulate cursor blink */
}



.header-content .greating p{
    font-size: 16px;
    color: #fff;
    margin: 20px 0 40px;
}
.header-content .desc{
    font-size: 16px;
    color: #fff;
    margin: 20px 0 10px;
}

.social-media a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #0ef;
    border-radius: 50%;
    font-size: 20%;
    /* color: #0ef; */
    text-decoration: none;
    margin: 30px 15px 30px 0;
    transition: .5s ease;
    
}
.social-media a svg{
    fill: #0ef;
}
.social-media a:hover svg {
    fill: #1f242d;
}


.social-media a:hover{
    background: #0ef;
    /* color: #1f242d; */
    box-shadow: 0 0 20px #0ef ;
}

.btn{
    display: flex;
    padding: 12px 28px;
    background: #0ef;
    border-radius: 40px;
    box-shadow: 0 0 10px #0ef;
    font-size: 16px;
    color: #1f242d;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600 ;
    width: 175px;
}
.btn:hover{
    box-shadow: 0 0 20px #0ef ;
}


/* .header-content .btn-box{
    width: 345px;
    height: 50px;
    
    display: flex;
    justify-content: space-between;

}
.btn-box a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background-color: #85b7fd;
    border: 2px solid #85b7fd;
    border-radius: 8px;
    font-size: 19px;
    color: #081b29;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}
.btn-box a:nth-child(2){
    background: transparent;
    color: #85b7fd;
}

.btn-box a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: red;
    z-index: -1;
} */



.header-photo{
    /* background-color: slateblue; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 2px solid purple; */
    width: 100%;

}

.header-photo img{
    height: 400px;
    width: 400px;
}
.header-photo img:hover{
    /* box-shadow: 0 0 25px #dc5dff,
                0 0 50px #a547bf,
                0 0 100px #a547bf; */
    box-shadow: 0 0 25px #0ef,
    0 0 50px #0ef,
    0 0 100px #0ef;
    border-radius: 100%;
}

@media(max-width:800px){ 
    .header{
        height: calc(100vh - 60px);
        flex-direction: column-reverse;
        justify-content: center;
    
    }
    .header-photo img{
        height: 250px;
        width: 250px;
    }
}