* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: Arial, Helvetica, sans-serif; */
}

html {
    scroll-behavior: smooth;
}

/* FONTS */

@font-face {
    font-family: "intervogue-bold";
    src: url("fonts/Fontspring-DEMO-intervogue-bold.otf") format("OpenType");
}
@font-face {
    font-family: "Sriracha-Regular";
    src: url("fonts/Sriracha-Regular.ttf") format("TrueType");
}

@font-face {
    font-family: "CaveatBrush-Regular";
    src: url(fonts/CaveatBrush-Regular.ttf);
}

body {
    /*background-color: #051723; FINAL!!! */
    background-color:  #051723;
    /* background: linear-gradient(#051723,#19AFFF,) !important; */
    /* background: linear-gradient(#000000,#051723); */
    /* height:100vh; */
    /* background: linear-gradient(#051723,#C0C0C0);
    height: 100vb; */
}

.gradient{
    /* background-color: pink; */
    background: linear-gradient(#000000,#051723);
    position: absolute;
    height: 100vh;
    width: 100%;
    z-index: -10;
}
/* NAVBAR */

.navbar{
    /* visibility: hidden; */
    /* position: fixed; */
    /* justify-content: left; */
    /* border-bottom: 2px solid white; */
    display: flex;
    top: 0;
    height: 6.5rem;
    /* width: 100vw; */
    color: white;
    background-color: black;
}


    /* Logo */
.logo{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6.5rem;
    width: 8rem;
    /* background-color: aqua; */
}

.logo video{
    height: 100%;
    width: auto;
    /* border:2px solid white; */
}

.logo:hover video{
    transform: scale(1.1);
    transition-timing-function: ease-in-out;
    transition-duration: 1s;
}

    /* navbar-main */
.navbar-main {
    /* background-color: pink; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: right;
    height: 100%;
    width: 100%;
    font-family: "Sriracha-Regular";
    font-size: 1.5rem;
    font-weight: bold;
    
}

.navbar-main a{
    text-decoration: none;
    color: whitesmoke;    
    padding-inline: 1rem;

}

.navbar-main a:hover {
    color: #19AFFF; /* Highlight color */
}

#First{
    /* margin-left: 30%; */
}














/* _____________________________________________________________________________________ */
/* _____________________________________________________________________________________ */
/* _____________________________________________________________________________________ */
/* HOME */
/* _____________________________________________________________________________________ */
/* _____________________________________________________________________________________ */
/*  */


/* _____________________________________________________________________________________ */
/* _____________________________________________________________________________________ */
/* main */
/* _____________________________________________________________________________________ */
/* _____________________________________________________________________________________ */

/* main{
    display: flex;
} */
.main-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* background-color: aqua; */
    min-height: 70vh;

    /* margin-top: 7rem; */

}

.main-left {
    /* background-color: pink; */
    display: flex;
    justify-content: base;
    align-items: center;
    margin-inline: 2rem;
    max-width: 36rem;

    /* object-fit: cover; */

    /* max-height: 24rem; */
    /* max-height:36rem; */
    
    /* height: 100%; */
    /* max-width: 40%; */
}

/* .profile-image {
    border-radius: 50%;
    height: 30rem;
    width: 29rem;
    border-top-left-radius: 90%;
    border-top-right-radius: 90%;

    background-color: pink;

} */

.main-left img{
    /* height: 0.5; */
    height: 80%;
    width: 90%;
    /* object-fit: cover; */
    /* background-color: aqua; */
}
/* 
.main-left img:hover {
    transform: scale(1.1);
    transition-duration: 1s;
    -o-transition-timing-function: ease-in-out;
} */






/* Profile image itself */
.main-left .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the circle */
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover effects for the image (idk i'll see if i like it and wanna add it in future)*/
/* .main-left .profile-image:hover {
    transform: scale(0.9) rotate(2deg); 
    box-shadow: 0 0 100px rgba(0, 210, 255, 0.5); 
    border-radius: 60%;
} */


}

/* Keyframe for border animation */
@keyframes borderAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1); /* Pulsing effect for the border */
    }
    100% {
        transform: scale(1);
    }
}

/* Optional tilt effect (making it feel more interactive) */
.main-left .profile-image:hover img {
    filter: brightness(1.2) contrast(1.1); /* Slight brightness/contrast boost */
}




.main-right {
    /* background-color:burlywood; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: left;
    justify-content: left;  */
    /* justify-content: center; */
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 50%;
}

.main-right img {
    /* quote icon */
    height: 8rem; 
    margin-top: 1rem;
}

.quotation{
    /* background-color: green; */
}

@keyframes floatIn {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    60% {
        transform: translateY(10px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
    }
}

.main-right .quotation {
    animation: floatIn 0.8s ease-out forwards;
}


.content-area{
    display: flex;
    justify-content: center;
    /* margin-top: 2rem; */
    font-family: "CaveatBrush-Regular";
    font-size: 3rem;
    color: #C0C0C0;
    width: 100%;
    height: auto;
    /* background-color: red; */
}

.content p{
    /* background-color: pink; */
    display: inline;
    font-size: 1em;
}

/* hi emoji */

.content span{
    display: inline;
    font-size: 4rem;
}

/* emoji animation */

@keyframes wave {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(14deg);
    }
    20% {
        transform: rotate(-8deg);
    }
    30% {
        transform: rotate(14deg);
    }
    40% {
        transform: rotate(-4deg);
    }
    50% {
        transform: rotate(10deg);
    }
    60% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.content span{
    display: inline-block;
    animation: wave 2s 1 1.5s;
    transform-origin: 70% 70%;
}

.content-area:hover span{
    display: inline-block;
    animation: wave 2s infinite;
    transform-origin: 70% 70%;
}




.handlesWrapper{
    margin-top: 0.5em;
    gap: 30px;
    display: flex;
    align-items: center;
    padding-top:0.5em;
    padding-bottom:0.5em;
    justify-content: space-evenly;
    /* background-color: pink; */
    font-size: 4em;
    /* height: 10em; */


}



.handlesWrapper:hover {
    background: linear-gradient(135deg, rgba(116, 192, 252, 0.3), rgba(0, 210, 255, 0.3));
    border-radius: 15px;
    transition: background 0.5s ease;
}

.handlesWrapper a {
    position: relative;
    display: inline-block;
    color: #74C0FC;
    transition: transform 0.3s ease-in-out, color 0.4s ease, filter 0.2s ease;
}


.handlesWrapper a:hover {
    transform: scale(1.1) rotate(5deg);
    color: #00d2ff;
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.6));
}

/*  THIS IS THE FINAL Pulsing animation :) */
.handlesWrapper a:hover::after {
    /* content: '♡'; */
    content: "⏎";
    /* content: ""; */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 210, 255, 0.3);
    animation: pulse 1.2s ease-out infinite;
    transform: translate(-50%, -50%);
}

/* Pulse effect :) kinda looks good*/
@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.6;
    }
}







.quote {
    /* height: 4rem; */
    /* width: 100vw; */
    display: flex;
    justify-content: center;
}


.quote-content {
    background-color: #3F4752;
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
    padding: 1rem;
    width: 90vw;
    margin-top: 1.5rem;
    background-color: #3F4752;
    color: #19AFFF;
    display: flex;
    justify-content: center; 
    align-items: center;
    border-radius: 1rem; 
    font-size: 1.5rem;  
    font-weight: bold;

}

.quote-content:hover .highlight{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 2rem;
        border-radius: 0.3rem;
        font-weight: bolder;
        background-color:#19AFFF;
        color: #3F4752;
    
}

/* .quote-content:hover{
    height: 6rem;
} */




.aboutMeWrapper{
    /* background-color: pink; */
    display: flex;
    margin-top: 2em;
    /* flex-wrap: wrap; */
}

.aboutMeWrapper h1{
    display: block;
    text-align: center;
    /* background-color: cyan; */
    padding: 1.5em;
    color: #C0C0C0;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 3em;
}

.aboutMeContent{
    width: 90%;
    justify-content: center;
    align-items: center;
    /* background-color: #000000; */
    padding: 1em;
    /* padding-inline: 10em; */
}
.aboutMeWrapper p{
    color: #19AFFF;
    padding:10px;
    font-family: Sriracha-Regular;

}


@media (max-width: 800px){
    .aboutMeWrapper {
            flex-wrap: wrap;
            justify-content: center;
    }
}















.educationExperienceTimeline{
    /* background:linear-gradient(#051723,#19AFFF) */
    /* background-color: #F8F9FA; */
    /* background-color:  #E8F0FF; */

}

/* _____________________________________________________________________________________ */
/* _____________________________________________________________________________________ */


/* Education TIMELINE */

/* _____________________________________________________________________________________ */
/* _____________________________________________________________________________________ */

.timeline-wrapper{
    /* min-height: 60rem; */
    /* width: 100%; */
    border-top-left-radius: 10%;
    border-top-right-radius: 10%;
    box-shadow: 10px white;
    /* margin-top: 3rem; */
    /* margin-bottom: opx; */
    /* background-color: #19AFFF; */
    /* background-color: rgba(25,175,255,0.5); */
    /* background-color: #00A9E0; */
    /* z-index: -5; */
    /* flex-wrap: wrap; */
    
    justify-content: center;
    
}

.timeline-wrapper h1 {
    text-align: center;
    display: block;
    font-size: 3em;
    color: #C0C0C0;
    /* background-color: pink; */
    /* height: fit-content; */
    padding: 0.8em;
    /* margin-bottom: 2em; */
}

.timeline-content-box, .education-timeline-content-box{
    margin-inline: 2.5%;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-wrap: nowrap;
    /* margin-top: 0px;
    margin-bottom: 0px; */
    justify-content: center;
    /* background-color: black; */
    background-color: #19AFFF;
}


.education-timeline-content-box{

}
@media (max-width: 800px){
    .education-timeline-content-box {
            flex-wrap: wrap;
    }
}


.timeline-box {
    display: flex;
    /* height: fit-content; */
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);
    border: 5px solid #051723;
    border-radius: 10px;
    margin: 20px 10px 10px 10px;
    padding: 10px;
    width: 90%;
    float: left;
    /* z-index: 1; */
    margin-bottom: 30px;
    background: #FFF;
}
.timeline-box-arrow-education-nb {
    /* transform: rotate(45deg); */
    rotate: 45deg;
    /* content: ''; */
    display: block;
    background: #FFF;
    border-left: 2px solid black;
    border-bottom: 2px solid black;
    /* border-left: 5px solid #051723;
    border-bottom: 5px solid #051723; */
    /* float: left; */
    height: 29px;
    width: 39px;
    margin-top: 28px;
    margin-left: -25px;
    z-index: 0;
}

.timeline-box-arrow-education-na {
    /* background-color: #19AFFF; */
    background: radial-gradient(#19AFFF,#051723);
    height: 9em;
    width: 1.5em;
    rotate: 45deg;
    margin-top: -3em;
    margin-left:1em ;
}



.timeline-box {
    
    position: relative;
    display: flex;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.04);
    border: 5px solid #051723;
    border-radius: 10px;
    margin: 20px 10px 10px 10px;
    padding: 10px;
    width: 90%;
    float: left;
    background: #FFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;  /* Transition for entire box */
}

.timeline-box-arrow-education {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 20px solid #19AFFF; /* Arrow color */
    position: absolute;
    /* top: 50%; */

    margin-top: -25px;
    margin-left: 30px;
    left: -25px;  /* Align arrow with the box */
    transform: translateY(-50%);  /* Center the arrow vertically */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2);  /* Soft shadow for the arrow */
    background-color: #051723;
}

.timeline-box-arrow-education:hover {
    transform: scale(1.1) rotate(10deg);  /* Slight scale + rotate effect */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);  /* Stronger shadow on hover */
    z-index: -1;

}

/* Additional animation for smooth rotation */
@keyframes rotateArrow {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
}

.timeline-box:hover .timeline-box-arrow-education {
    /* animation: rotateArrow 0.6s ease-in-out; */

}

/* Optionally, apply hover effect to the entire box */
.timeline-box:hover {
    transform: scale(1.05);  /* Slight zoom-in on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);  /* Enhanced shadow */
}


#arrow2{
    width:2.5em;
}


/* _____________________________________________________________________________________ */
/* _____________________________________________________________________________________ */


/* Experience TIMELINE */

/* _____________________________________________________________________________________ */
/* _____________________________________________________________________________________ */



.education-container {
    /* height: 800px; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    /* flex-direction: column; */
    gap: 20px;
}
.education-main-window {
    margin-top: 2em;
    margin-inline: 5%;
    /* width: 90%; */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* overflow: hidden; */
    border: 1px solid #ccc;
}


.education-main-window-header {
    border-radius: 12px;
    background: #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.education-main-window-controls {
    display: flex;
    gap: 10px;
}

.education-main-window-btn {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}



.education-main-window-btn.close-btn {
    background-color: #f28d8d; /* Red */
}

.education-main-window-btn.minimize-btn {
    background-color: #f2cc4d; /* Yellow */
}

.education-main-window-btn.maximize-btn {
    background-color: #4dd1a1; /* Green */
}


.education-main-window-btn:hover {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background-color: #5e5e5e;
    /* border-radius: 0px; */
}


.education-main-window-title {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    flex-grow: 1;
    text-align: center;
}


.education-main-window-content {
    /* background-color: #E8F0FF; */
    background-color: #19AFFF;
    padding: 20px;
    /* font-size: 14px; */
    font-size: 5em;
    color: #555;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;

}

/* _____________________________________________________________________________________ */


/* Education Window */


.education-window {
    background: linear-gradient(135deg, #051723, #19AFFF); /* Gradient background */
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Soft shadow */
    width: 300px;
    /* min-height: 250px; */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    font-family: "CaveatBrush-Regular", sans-serif;
    color: #fff;

}

.education-window:hover {
    /* min-height: 300px; */
    transform: scale(1.5); /* Slight zoom-in on hover */
    z-index: 5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
    position: relative;
    /* top: 100px;
    left: 100px; */
    transition: ease-in-out;
    transition-duration: 1s;


}



/* Header of the window */
.education-window-header {
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Sriracha-Regular", sans-serif; /* Cool handwritten font */
    font-size: 1.1rem;
}

/* Title styling */
.education-window-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    flex-grow: 1;
}

/* Controls buttons for close, minimize, maximize */
.education-window-controls {
    display: flex;
    gap: 10px;
}

/* Button style */
.education-window-btn {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect for control buttons */
.education-window-btn:hover {
    background-color: #fff !important;
    transition: background-color 0.3s ease;

}

/* Close button (Red) */
.education-window-btn.close-btn {
    background-color: #f28d8d;
}

/* Minimize button (Yellow) */
.education-window-btn.minimize-btn {
    background-color: #f2cc4d;
}

/* Maximize button (Green) */
.education-window-btn.maximize-btn {
    background-color: #4dd1a1;
}


.education-window-content {
    min-height: 200px;
    padding: 20px;
    font-size: 16px;
    color: #C0C0C0; /* Light gray for content */
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for content */
    transition: background-color 0.3s ease;
}


.education-window:hover .education-window-content {
    min-height: 200px;
    background-color: rgba(0, 0, 0, 0.7);
}


.education-window:hover .education-window-title {
    filter: blur(1px);
}


.education-window-content p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.education-window-content p:last-child {
    margin-bottom: 0;
}

.education-window-content button {
    padding: 8px 16px;
    background-color: #19AFFF;
    border: none;
    color: #051723;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
}

.education-window-content button:hover {
    background-color: #051723!important;
    color: #19AFFF !important;
}

@media (max-width: 600px) {
    .education-window-header {
        padding: 10px 12px;
    }

    .education-window-btn {
        width: 12px;
        height: 12px;
    }

    .education-window-title {
        font-size: 14px;
    }

    .education-window-content {
        padding: 15px;
        font-size: 14px;
    }
}


.education-window-content button {
    background-color: #f1f1f1; /* Light background by default */
    color: #333; /* Dark text color by default */
    padding: 10px 20px; /* Adjust padding for button */
    border: none; /* Remove default border */
    border-radius: 8px; /* Slightly rounded corners */
    font-size: 16px; /* Standard font size */
    cursor: pointer; /* Pointer cursor on hover */
    transition: all 0.3s ease; /* Smooth transition effect */
}


.education-window-content button:hover {
    background-color: #051723; /* Dark background when hovered */
    color: #19AFFF; /* Bright cyan text when hovered */
    transform: scale(1.05); /* Slight scaling effect on hover */
}



.projectWrapper{
    height: 500px;
    /* background-color: #19AFFF; */
    background: radial-gradient(#051723,#19AFFF);

    border-radius: 12px;
    margin: 1em;
}

.projectWrapper h1{
    text-align: center;
    font-size: 3em;
    padding: 1em;
    color: white;
}

footer {
    padding: 2em;
    background-color: black;
    color: whitesmoke;
}
footer p{
    text-align: center;
}