* {
    font-family: "Sulphur Point", sans-serif;
    font-weight: bold;
    color: rgb(255, 255, 255);
    background-color: transparent;
    margin: 0;
    padding: 0;
}

/* Cover Canvas */

.canvascontainer {
    position: relative;
    width: 100%;
    height: 700px;
    background: radial-gradient(circle at 50% 50%, #aaebee 0%, #6da2b2 15%, #4c92b0 30%, #236481 45%, #1a517d 60%, #0a2f46 75%, #041f30 100%);
    overflow: hidden;
}

#networkcanvas {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    background-color: transparent;
}

#typingbox {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#covertext {
    font-size: 6rem;
    font-weight: normal;
    color: rgb(0, 0, 0);

}

.cursor {
    font-size: 7rem;
    font-weight: 100;
    color: rgb(0, 0, 0);
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {opacity: 0;}
    50% {opacity: 1;}
    100% {opacity: 0;}
}

/* Header Design for other Pages */

.headercurve {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 7.5rem;
    background: radial-gradient(circle at 50% 50%, #aaebee 0%, #6da2b2 15%, #4c92b0 30%, #236481 45%, #1a517d 60%, #0a2f46 75%, #041f30 100%);
    overflow: hidden;
}

/* Semantic Elements */

.section {
    position: relative;
    padding: 50px;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background-color: transparent;
}

.section2 {
    position: relative;
    padding: 50px;
    height: max-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background-color: transparent;
}

/* About Me Page */

#profile {
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: start;
}

#profilename {
    margin: 0;
    margin-bottom: 25px;
    padding: 5px;
}

#profilepic {
    height: 400px;
    width: 400px;
    border-radius: 50%;

}

.profilepara {
    margin-top: 25px;
    padding: 5px;
    font-size: 25px;
    font-style: italic;
    max-width: 100%;
}

#linkedinprofile {
    height: 32px;
    width: 32px;
    margin-top: 1.75rem;
}

#edumainbox {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin: 25px;
}

.edusubbox {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 30%;
    height: 200px;
    border-radius: 25px;
    background-color: rgba(104, 104, 104, 0.225);

    transition: transform 0.3s ease, background-color 0.3s ease;
}

.tooltip {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 90%;
    background-color: #111111;
    color: #ffffff;
    font-size: 0.8rem;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    pointer-events: none;
    z-index: 100;
}

.edusubbox:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.edusubbox:hover {
    transform: scale(1.1);
    background-color: rgba(59, 131, 202, 0.5);
}

.institutelogo {
    height:75px;
    width: 75px;

    transition: transform 0.3s ease;
}

.institutelogo:hover {
    transform: scale(1.2);
}

.awardbox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 150px;
    margin: 25px;
    background-color: rgba(104, 104, 104, 0.225);
    border-radius: 25px;

    transition: transform 0.3s ease, background-color 0.3s ease;
}

.awardbox:hover {
    transform: scale(1.1);
    background-color: rgba(59, 131, 202, 0.5);
}

.hiddentext {
    opacity: 0;
    visibility: invisible;

    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.awardbox:hover .hiddentext {
    opacity: 1;
    visibility: visible;
}

.awardsubbox {
    width: 80%;
    padding: 5px;
    margin: 25px;
    flex-direction: column;
    text-align: start;
}

.awarddatebox {
    width: 20%;
    padding: 5px;
    margin:  25px;
    text-align: center;
}

/* Projects Page */

.projbox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 150px;
    margin: 25px;
    background-color: rgba(104, 104, 104, 0.225);
    border-radius: 25px;

    transition: transform 0.3s ease, background-color 0.3s ease;
}


.projbox:hover {
    transform: scale(1.1);
    background-color: rgba(59, 131, 202, 0.5);
}

.projtxt {
    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.projbox:hover .projtxt {
    opacity: 1;
    visibility: visible;
}

.projdet {
    height: 30px;
    width: 30px;
    filter: invert(100%);

    transition: transform 0.3s ease;
}

.projdet:hover {
    transform: scale(1.2);
}

.projsubbox {
    width: 80%;
    padding: 5px;
    margin: 25px;
    flex-direction: column;
    text-align: start;
}

.projsourcebox {
    width: 10%;
    padding: 5px;
    margin:  15px;
    justify-content: center;
}

.projlinkbox {
    width: 10%;
    padding: 5px;
    margin:  15px;
    justify-content: center;
}

/* Text Elements */

.heading1 {
    margin: 25px;
    padding: 10px;
    width: max-content;
    font-size: 3rem;
    font-weight: bolder;
    background-color: transparent;
}

.heading2 {
    margin: 20px;
    padding: 10px;
    width: max-content;
    font-size: 2rem;
    font-weight: bolder;
    background-color: transparent;
}

.para {
    margin: 25px;
    padding: 10px;
    font-size: 1.5rem;
    text-align: center;
    max-width: 75%;
    background-color: transparent;
}

/* Button Styles */

/* Style 1 */

.btnstyl1 {
    display: inline-block;
    padding: 20px;
    margin: 25px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    background-color: black;
    border: none;
    border-radius: 25px;
    box-shadow: none;

    transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, font-weight 0.3s ease, font-size 0.3s ease;
}

.btnstyl1:hover {
    transform: scale(1.2);
    font-size: scale(1.2);
    font-weight: bolder;
    color: black;
    background-color: white;
    box-shadow: 0 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Style 2 */

.btnstyl2 {
    display: inline-block;
    padding: 20px;
    margin: 25px;
    font-size: 1.25rem;
    font-weight: bold;
    color: black;
    background-color: white;
    border: none;
    border-radius: 25px;
    box-shadow: none;

    transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, font-weight 0.3s ease, font-size 0.3s ease;
}

.btnstyl2:hover {
    transform: scale(1.2);
    font-size: scale(1.2);
    font-weight: bolder;
    color: white;
    background-color: black;
    box-shadow: 0 0 1px 3px rgba(255, 255, 255, 0.1);
}

/* Contact Form Style */

#contactform {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(104, 104, 104, 0.225);
    border-radius: 25px;

    transition: transform 0.3s ease, background-color 0.3s ease;
}

#contactform:has(#sendbtn:hover) {
    transform: scale(1.1);
    background-color: rgba(59, 131, 202, 0.5);
}

.forminput {
    display: flex;
    padding: 5px;
    margin-top: 5px;
    margin-bottom: 25px;
    width: 75%;
    height: 30px;
    background-color: rgb(0, 0, 0);
    border: rgb(255, 255, 255);
    border-radius: 25px;
    text-align: center;
}

.txtarea {
    display: flex;
    padding: 5px;
    margin-top: 5px;
    margin-bottom: 25px;
    width: 75%;
    height: 100px;
    background-color: rgb(0, 0, 0);
    border: rgb(255, 255, 255);
    border-radius: 25px;
    text-align: center;
}

#sendbtn {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 50px;
}

#sendbtn img {
    filter: none;

    transition: filter 0.3s ease;
}

#sendbtn:hover img {
    filter: invert(100%);
}

/* Social Media Icons Style */

#sociallinks {
    padding: 25px;
    width: 25%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

#sociallinks a {
    background-color: transparent;
}

.socialicons {
    width: 30px;
    height: 30px;

    transition: transform 0.3s ease;
}

.socialicons:hover {
    transform: scale(1.5);
}