
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

header {
    background-color: #333;
    color: white;
    padding: 15px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-start;
}


nav ul li {
    display: inline;
    margin: 0 15px;
}


nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #007bff;
}

.profile-container {
    margin: 40px auto;
    width: 60%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

.profile-image {
    width: 150px;
    border-radius: 50%;
    border: 3px solid #007bff;
}

.social-links img {
    width: 40px;
    margin: 10px;
    transition: transform 0.3s;
}

#project-buttons button {
    margin: 10px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}
.social-links img:hover {
    transform: scale(1.1);
}

.project-category {
    display: none;
}
#project-buttons {
    margin: 20px 0;
}
#project-buttons button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.project {
    background: white;
    margin: 20px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}
form {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

input, textarea {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    padding: 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
button:hover {
    background-color: #218838;
}

.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.project {
    width: 320px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.project:hover {
    transform: translateY(-5px);
}

.project img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.project a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.project a:hover {
    background: #0056b3;
}

.resume-section {
    margin: 30px auto;
    text-align: center;
}

.resume-btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s, transform 0.2s;
}

.resume-btn {
  padding: 10px 20px;
  margin: 10px 10px 0 0;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, background-color 0.2s;
}

.resume-btn:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

 
.role-container {
    font-size: 24px;
    font-weight: bold;
    color: black;
    text-align: center;
    margin-top: 20px;
    height: 30px; /* Prevent layout shift */
}



#contact {
  padding: 40px 20px;
  background-color: #f7f9fb;
  border-radius: 10px;
  max-width: 1100px;
  margin: auto;
}

#contact h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
  color: #333;
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}


/* Contact Info Box */
.contact-info {
  flex: 1;
  min-width: 250px;
  display: grid;
  gap: 20px;
}

.contact-option {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-5px);
}

.contact-option h3 {
  margin-bottom: 10px;
  color: #007BFF;
}

.contact-option a {
  color: #333;
  text-decoration: none;
}

.contact-option a:hover {
  text-decoration: underline;
}

