/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Set gray background with custom image */
.header-section {
  background: url("images/background.png") center/100% no-repeat, #d3d3d3; /* image */
  padding: 100px 0; /* Adjust padding for spacing */
  text-align: center;
   color: white;
}

.header-section .email {
  color: white !important;
}

/* Ensure the profile image looks clean */
.profile-image img {
  width: 150px; /* Adjust size */
  height: 150px;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.name {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff; /* #2c3e50; */
}


.email {
    font-style: italic;
    color: #666;
}

/* Social Links */
.social-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
    font-size: 1rem;
}


.social-links a:hover {
    text-decoration: underline;
}

/* About Section */
.about-section {
    background-color: #fcfcfa;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: bold;
}

/* Research Section */
.card-title a {
    color: #007bff;
    text-decoration: none;
}

.card-title a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #2c3e50;
}
