/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    width: 85%;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background: #0077b6;
    color: #fff;
    padding: 20px 0;
}
header h1 {
    text-align: center;
}
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
#hero {
    background: #caf0f8;
    padding: 100px 0;
    text-align: center;
}

/* Button */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #0077b6;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
}
.btn:hover {
    background: #023e8a;
}

/* Sections */
section {
    padding: 60px 0;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.project-card {
    background: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
}

/* Footer */
footer {
    background: #023e8a;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Profile Image */

.profile-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #0077b6;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* Publications */

.publication-list {
    padding-left: 20px;
}

.publication-list li {
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}

.publication-list li a {
    color: #0077b6;
    font-weight: bold;
    text-decoration: none;
}

.publication-list li a:hover {
    text-decoration: underline;
}

