@import"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";:root{--bg-color: #ffffff;--text-color: #000000;--text-muted: #666666;--accent-color: #000000;--border-color: #e5e5e5;--header-bg: rgba(255, 255, 255, .7);--card-bg: #f9f9f9;--hover-bg: #f0f0f0}[data-theme=dark]{--bg-color: #0a0a0a;--text-color: #ffffff;--text-muted: #a1a1aa;--accent-color: #ffffff;--border-color: #27272a;--header-bg: rgba(10, 10, 10, .7);--card-bg: #111111;--hover-bg: #1f1f1f}*{margin:0;padding:0;box-sizing:border-box}html{font-size:15px}body{font-family:Inter,sans-serif;background-color:var(--bg-color);color:var(--text-color);line-height:1.5;transition:background-color .3s ease,color .3s ease;overflow-x:hidden}a{color:inherit;text-decoration:none;transition:opacity .2s}a:hover{opacity:.7}.container{max-width:1200px;margin:0 auto;padding:0 1.5rem;width:100%}.section{padding:3rem 0;border-bottom:1px solid var(--border-color)}.section:last-child{border-bottom:none}.section-title{font-size:1.5rem;font-weight:700;margin-bottom:2rem;letter-spacing:-.02em}.flex{display:flex}.flex-col{display:flex;flex-direction:column}.items-center{align-items:center}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.gap-2{gap:.5rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.mt-4{margin-top:1rem}.mt-8{margin-top:2rem}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.mb-8{margin-bottom:2rem}.hover-lift{transition:transform .2s ease}.hover-lift:hover{transform:translateY(-2px)}.fade-in{animation:fadeIn .8s ease-in-out}@keyframes fadeIn{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}button{background:none;border:none;color:inherit;cursor:pointer;font-family:inherit;font-size:inherit}.btn-primary{background-color:var(--text-color);color:var(--bg-color);padding:.5rem 1rem;border-radius:.375rem;font-weight:500;font-size:.875rem;transition:transform .2s ease,opacity .2s ease;display:inline-flex;align-items:center;justify-content:center}.btn-primary:hover{opacity:.9;transform:translateY(-1px)}.header{position:sticky;top:0;left:0;right:0;z-index:100;background-color:var(--header-bg);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border-bottom:1px solid transparent;transition:all .3s ease;padding:1.5rem 0}.header-container{max-width:1100px}.logo{font-weight:700;font-size:1.25rem;letter-spacing:-.05em;background:var(--text-color);color:var(--bg-color);padding:.25rem .5rem;border-radius:.25rem}.logo:hover{opacity:1}.nav-links{display:flex;gap:1.5rem}.nav-link{font-size:.875rem;font-weight:500;color:var(--text-muted)}.nav-link:hover{color:var(--text-color);opacity:1}.theme-toggle{display:flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:.375rem;color:var(--text-color)}.theme-toggle:hover{background-color:var(--hover-bg)}@media (max-width: 768px){.header-container{flex-direction:column;gap:1rem}.nav-links{gap:1rem;flex-wrap:wrap;justify-content:center}.nav-link{font-size:.8rem}}.hero-container{display:flex;align-items:center;justify-content:space-between;gap:3rem;padding:4rem 0}.hero-content{flex:1;max-width:750px}.hero-title{font-size:3.5rem;font-weight:700;line-height:1.1;letter-spacing:-.04em;margin-bottom:2rem}.hero-subtitle{font-size:1.25rem;color:var(--text-muted);font-weight:500;margin-bottom:2rem}.hero-bio{font-size:1.125rem;color:var(--text-color);opacity:.9;line-height:1.6}.hero-image-container{flex-shrink:0;width:400px;height:400px;position:relative}.hero-decoration{position:absolute;color:var(--text-color);opacity:.2;z-index:-1;pointer-events:none}.hero-squiggly-1{width:150px;height:150px;bottom:-20px;left:-40px;transform:rotate(-15deg);animation:float 6s ease-in-out infinite}.hero-squiggly-2{width:120px;height:120px;top:-10px;right:-30px;transform:rotate(45deg);animation:float 8s ease-in-out infinite reverse}.hero-star{width:60px;height:60px;top:40px;left:-20px;animation:spin 10s linear infinite;opacity:.3}.hero-dots{width:80px;height:80px;bottom:20px;right:-40px;animation:float 5s ease-in-out infinite}.hero-circle{width:140px;height:140px;top:50%;left:50%;margin-top:-70px;margin-left:-70px;animation:spin 15s linear infinite}@keyframes float{0%{transform:translateY(0) rotate(0)}50%{transform:translateY(-10px) rotate(5deg)}to{transform:translateY(0) rotate(0)}}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.hero-image{width:100%;height:100%;object-fit:contain;object-position:center;filter:drop-shadow(0 10px 15px rgba(0,0,0,.15))}.icon{width:1rem;height:1rem;margin-right:.5rem}.social-links{margin-left:1rem}.social-icon{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:.375rem;color:var(--text-color);background-color:var(--hover-bg);transition:all .2s ease}.social-icon:hover{background-color:var(--border-color)}.social-icon svg{width:20px;height:20px}@media (max-width: 768px){.hero-container{flex-direction:column-reverse;text-align:center;padding:2rem 0}.hero-title{font-size:2.5rem}.hero-subtitle{font-size:1.1rem}.hero-bio{font-size:1rem}.hero-image-container{width:250px;height:250px;margin:0 auto}.hero-actions{flex-direction:column;align-items:center}.social-links{margin-left:0;margin-top:1rem}}.category-title{font-size:1.25rem;font-weight:600;margin-bottom:1.5rem;color:var(--text-color);padding-bottom:.5rem;border-bottom:1px dashed var(--border-color)}.research-item{background-color:var(--card-bg);padding:1.5rem;border-radius:.5rem;border:1px solid var(--border-color);transition:transform .2s ease,border-color .2s ease}.research-item:hover{transform:translateY(-2px);border-color:var(--text-muted)}.research-title{font-size:1.125rem;font-weight:600;margin-bottom:.5rem;line-height:1.4}.research-link{display:inline-flex;align-items:center;color:inherit}.research-link:hover{color:var(--text-muted)}.link-icon{width:.875rem;height:.875rem;margin-left:.5rem;opacity:.7}.research-venue{font-size:.875rem;margin-bottom:.75rem;display:flex;align-items:center;flex-wrap:wrap;gap:.4rem}.venue-highlight{color:var(--bg-color);background-color:var(--text-color);padding:.15rem .5rem;border-radius:.25rem;font-weight:600;font-size:.75rem;text-transform:uppercase;letter-spacing:.05em}.venue-text{font-weight:600;color:var(--text-color);border:1px solid var(--text-color);padding:.15rem .5rem;border-radius:.25rem;font-size:.75rem}.research-supervisors{font-size:.875rem;color:var(--text-muted);margin-bottom:.75rem;font-style:italic}.research-description{font-size:.95rem;color:var(--text-color);opacity:.85}.�s�u�p�e�r�v�i�s�o�r�-�l�i�n�k� �{� �t�e�x�t�-�d�e�c�o�r�a�t�i�o�n�:� �u�n�d�e�r�l�i�n�e�;� �c�o�l�o�r�:� �i�n�h�e�r�i�t�;� �t�r�a�n�s�i�t�i�o�n�:� �c�o�l�o�r� �0�.�2�s�;� �}� �.�s�u�p�e�r�v�i�s�o�r�-�l�i�n�k�:�h�o�v�e�r� �{� �c�o�l�o�r�:� �v�a�r�(�-�-�t�e�x�t�-�c�o�l�o�r�)�;� �}� � �.timeline{position:relative;padding-left:2rem}.timeline:before{content:"";position:absolute;top:0;bottom:0;left:.35rem;width:2px;background-color:var(--border-color)}.timeline-item{position:relative;margin-bottom:2rem}.timeline-item:last-child{margin-bottom:0}.timeline-dot{position:absolute;left:-2rem;top:.25rem;width:.875rem;height:.875rem;border-radius:50%;background-color:var(--text-color);border:2px solid var(--bg-color)}.timeline-content{background-color:var(--card-bg);padding:1.5rem;border-radius:.5rem;border:1px solid var(--border-color);transition:transform .2s ease,border-color .2s ease}.timeline-content:hover{transform:translate(4px);border-color:var(--text-muted)}.timeline-title{font-size:1.125rem;font-weight:600;margin-bottom:.25rem}.timeline-subtitle{font-size:.95rem;color:var(--text-color);opacity:.9;margin-bottom:.5rem}.timeline-period{display:inline-block;font-size:.75rem;font-weight:500;color:var(--text-muted);background-color:var(--hover-bg);padding:.25rem .5rem;border-radius:.25rem}.timeline-details{font-size:.9rem;color:var(--text-color);opacity:.9;font-weight:500}.cgpa-badge{font-weight:700;color:var(--bg-color);background-color:var(--text-color);padding:.15rem .5rem;border-radius:.25rem;font-size:.85rem;display:inline-block;margin-right:.5rem}.cgpa-text{font-style:italic;font-size:.85rem;opacity:.8}.custom-list{list-style:none;padding:0}.list-item{display:flex;align-items:flex-start;padding:1rem;background-color:var(--card-bg);border-radius:.5rem;border:1px solid var(--border-color);transition:transform .2s ease,border-color .2s ease}.list-item:hover{transform:translate(4px);border-color:var(--text-muted)}.list-icon{width:1.25rem;height:1.25rem;margin-right:1rem;color:var(--text-color);flex-shrink:0;margin-top:.125rem}.list-item span{font-size:1rem;font-weight:500;color:var(--text-color)}.skills-grid{display:flex;flex-direction:column;gap:1.5rem}.skill-category{display:flex;align-items:flex-start;gap:1.5rem}.skill-title{font-size:1.125rem;font-weight:600;width:220px;flex-shrink:0;margin-bottom:0;padding-top:.25rem}@media (max-width: 640px){.skill-category{flex-direction:column;gap:.75rem}.skill-title{width:100%;padding-top:0}}.skill-tags{display:flex;flex-wrap:wrap;gap:.5rem}.skill-tag{font-size:.875rem;font-weight:500;color:var(--bg-color);background-color:var(--text-color);padding:.25rem .75rem;border-radius:1rem;transition:opacity .2s ease}.skill-tag:hover{opacity:.8}.footer{padding:2rem 0;border-top:1px solid var(--border-color);margin-top:4rem}.copyright{font-size:.875rem;color:var(--text-muted)}.footer-links{display:flex;align-items:center}.footer-link{font-size:.875rem;color:var(--text-muted);font-weight:500;transition:color .2s ease}.footer-link:hover{color:var(--text-color)}@media (max-width: 640px){.footer .container{flex-direction:column;gap:1rem;text-align:center}}
