body {
    font-family: 'Courier new', Courier, monospace;
    margin: 2;
    padding: 0;
    line-height: 1.6;
}
header {
    background-color: #333;
    color: white;
    padding: 1rem 0;
    text-align: center;
}
main {
    padding: 2rem;
}
section {
    margin-bottom: 2.5rem;
}
/* Style the navigation container */
nav {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  
  /* Style each social media link */
  nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; /* Set a fixed width and height for uniformity */
    height: 50px;
    text-decoration: none;
    color: white; /* Icon color */
    background-color: #0073b1; /* Default LinkedIn blue (adjust per logo) */
    border-radius: 50%; /* Makes the icons circular */
    transition: transform 0.2s, background-color 0.2s; /* Smooth hover effects */
  }
  
  /* Adjust the hover effect */
  nav a:hover {
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
    background-color: #005582; /* Darker shade for hover effect */
  }
  
  /* Individual colors for each platform */
  nav a:nth-child(1) {
    background-color: #150ee8; /* LinkedIn Blue */
  }
  nav a:nth-child(2) {
    background-color: #c71610; /* Email Red */
  }
  nav a:nth-child(3) {
    background-color: #333; /* GitHub Black */
  }
  nav a:nth-child(4) {
    background-color: #1da1f2; /* Medium Blue */
  }
  
  /* Navigation container */
nav {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

/* Social media links */
nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  color: white;
  background-color: #0073b1; /* Default LinkedIn Blue */
  border-radius: 50%; /* Round corners */
  transition: transform 0.2s, background-color 0.2s;
}

/* Hover effects */
nav a:hover {
  transform: scale(1.3); /* Slightly enlarge */
  background-color: #005582; /* Darker hover color */
}

/* Individual platform colors */
nav a:nth-child(1) {
  background-color: #0073b1; /* LinkedIn Blue */
}
nav a:nth-child(2) {
  background-color: #c71610; /* Email Red */
}
nav a:nth-child(3) {
  background-color: #333; /* GitHub Black */
}

/* FontAwesome icon styling */
nav a i {
  font-size: 24px; /* Icon size */
}

/* Container for the header */
.header-container {
  display: flex; /* Aligns content horizontally */
  justify-content: center; /* Pushes the image to the right */
  align-items: center; /* Centers content vertically */
  padding: 1rem; /* Add some padding around the header */
}

/* Header content on the left */
.header-content {
  text-align: center; /* Limit the width of the text */
}

/* Style for the profile picture */
.profile-pic {
  width: 100px; /* Adjust the size */
  height: 100px; /* Ensure it's a perfect circle */
  border-radius: 50%; /* Makes the image circular */
  object-fit: cover; /* Ensures the image fits perfectly */
  margin-left: 80px; /* Add space between the image and text */
}
/* Container for all skills */
.skills-container {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping to the next line if space is limited */
  gap: 10px; /* Space between skill boxes */
  margin-top: 1rem;
}

/* Individual skill box */
.skill {
  display: flex; /* Align icon and text horizontally */
  align-items: center; /* Center icon and text vertically */
  padding: 10px 15px; /* Space inside the box */
  background-color: #f4f4f4; /* Light background color */
  border-radius: 25px; /* Rounded corners */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Adds a slight shadow */
  font-size: 1rem; /* Adjust text size */
  color: #333; /* Text color */
  transition: transform 0.2s, background-color 0.2s; /* Smooth hover effects */
}

/* Icon inside the skill box */
.skill i {
  margin-right: 8px; /* Space between icon and text */
  font-size: 1.2rem; /* Adjust icon size */
  color: #0073b1; /* Default icon color */
}

/* Hover effect for skill boxes */
.skill:hover {
  background-color: #0073b1; /* Change background on hover */
  color: white; /* Text color on hover */
  transform: scale(1.05); /* Slightly enlarge the box */
}

.skill:hover i {
  color: white; /* Icon color on hover */
}
#chatbot style {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 300px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  z-index: 1000;
}

#chatbot-header {
  background: #0073b1;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

#chatbot-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#chatbot-messages {
  height: 200px;
  overflow-y: auto;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 4px;
  background: #f9f9f9;
}

#chatbot-input {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  flex: 1;
}

#chatbot-send {
  padding: 8px 10px;
  background: #0073b1;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #b10070;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
}
