*{
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Verdana, Geneva, Tahoma, sans-serif;
    box-sizing: border-box;
}
body{
    color: #000000;
    background-color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container{
    width: 100%;
    max-width: 900px;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
.headerText h1 {
    font-size: clamp(2rem, 6vw, 60px);
    margin: 10px 0;
}

.headerText h2 {
    font-size: clamp(1.2rem, 3vw, 25px);
    margin-top: 10px;
    font-weight: 300;
}
.headerText h3 {
    font-size: clamp(1rem, 3vw, 15px);
    margin-top: 10px;
    font-weight: 300;
}

/* Socials Section */
.socials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}
/* Icon links */
.socials a svg {
    width: 32px;
    height: 32px;
    fill: #333;
    transition: fill 0.3s ease;
}
.socials a:hover svg {
    fill: #000000;
}
/* Tooltip logic */
.has-tooltip {
    position: relative;
    display: inline-block;
}
.tooltip {
    visibility: hidden;
    opacity: 0;
    background: #222;
    color: #fff;
    text-align: center;
    padding: 0.3em 0.6em;
    border-radius: 4px;
    font-size: clamp(10px, 1.2vw, 14px);
    white-space: nowrap;
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
    z-index: 10;
}
.has-tooltip:hover .tooltip {
    visibility: visible;
    opacity: 1;
}
.socials a[href*="scholar.google"]:hover svg { fill: #4285F4; } /* Google Scholar */
.socials a[href*="researchgate"]:hover svg { fill: #00CCBB; }   /* ResearchGate */
.socials a[href*="orcid"]:hover svg { fill: #A6CE39; }          /* ORCID */
.socials a[href*="linkedin"]:hover svg { fill: #0077B5; }       /* LinkedIn */
.socials a[href*="github"]:hover svg { fill: #181717; }         /* GitHub */
.socials a[href*="x"]:hover svg { fill: #181717; }              /* X */
.socials a[href*="instagram"]:hover svg { fill: #ff0069; }      /* Instagram */
.socials a[href*="mailto:"]:hover svg { fill: #EA4335; }        /* Gmail */

