body {
  background-color: rgb(243, 235, 221);
  color: #112d4e;
  font-family: 'Roboto';
  overflow-y: scroll;
}

.nav-bar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
}

.heading-container {
  padding: 10px 15px;
  border-radius: 5px;
  font-family: 'roboto';

  position: relative;
  transition: all 0.3s ease-in-out;
}

.heading-container a {
  text-decoration: none;
  color: #112d4e;
  font-size: 20px;
  font-weight: bold;

  position: relative;
  display: inline-block;
  transition: color 0.3s ease-in-out;
}

.heading-container::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #3f72af;
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.heading-container:hover {
  transform: translateY(-2px);
}

.heading-container:hover a {
  color: #3f72af;
}

.heading-container:hover::after {
  width: 100%;
}

span {
  font-family: 'Pacifico';
  font-style: italic;
  font-size: 50px;
  color:#3f72af
}

.profile {
  display: flex;
  margin-top: 30px;
  text-align: center;
  justify-content: center;
  gap: 200px;
}

.profile-content {
  display: block;
  margin-top: 20px;
  padding: 20px;
}

.name {
  margin-bottom: 0px;
}

.job-profile {
  margin-top: 0px;
}


.button-container {
  display: flex;
  justify-content: space-evenly;
  margin-top: 50px;
  gap: 50px;
  padding: 20px;
}

.button {
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  width: 120px;
  height: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0); /* Soft gradient */
  transition: all 0.3s ease-in-out;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.button:hover {
  /* background-color: #d9d9d9; */
  background: linear-gradient(135deg, #ffffff, #d9d9d9); /* Brighter gradient */
  transform: scale(1.1); /* Slightly enlarge */
  box-shadow: 4px 4px 10px #112d4e; /* Glow effect */
}

.button-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: #bdd7e6;
  transition: background-color 0.3s ease-in-out;
}

.button:hover .button-image {
  background-color: #104761; 
}

.button-image img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.button-value {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
}

.button-value a {
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  color: #112d4e;
  transition: color 0.3s ease-in-out;
}

.button:hover .button-value a {
  color: #1a3636; /* Dark teal for contrast */
}

.button-value a:hover {
  color: #1a3636; /* Match body background for subtle effect */
}

.profile-image {
  height: 400px;
  width: 400px;
  display: flex;
  justify-content: center;
}

.profile-image img {
  height: 400px;
  width: 400px;
  background-color: #e4e4cf;
  object-fit:contain;
  border-radius: 50%;
}

.tech-stack-container-heading {
  margin-top: 20px;
  font-family: 'roboto';
  font-size: 30px;
  color: #112d4e;
  font-weight: bolder;
  /* text-decoration: underline; */
}

.tech-stack-container {
  display: block;
  text-align: center;
  margin-top: 60px;
  /* vertical-align: auto; */
}

/* Main container */
.tech-container {
  margin: auto;
  padding: 10px 20px 20px 20px;
  display: grid;
  grid-template-columns: auto auto;
  margin: 0 50px 5px 50px;
}

/* Tech Stack Grid (Two items per row) */
.tech-stack {
  display: grid;
  grid-template-columns: 35% 65%;
  padding: 5px;
}

/* Tech Heading */
.tech-heading {
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  padding-right: 10px;
  color: #112d4e;
}

/* Tech Values (Flex for horizontal layout) */
.tech-values {
  display: flex;
  gap: 20px;
}

/* Individual Tech Items (Styled like buttons) */
.tech {
  background-color: #112d4e;
  color: #d5e8f3;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
