.freelancer-image{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.header {
  position: fixed;
  top: 0;
  right: 0;
}

.tabs-wrapper {
 
  position: absolute;
  top: calc(50% + 150px);;
  right: 0;
  transform: translateY(-50%);
}
.tabs-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.tab {
  display: block;
  text-decoration: none;
  font-size: 16px;
  color: #000;
  padding: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.tab:hover {
  color: #fff;
  background-color: #000;
}
.summary-btn {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-color: #4CAF50;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  z-index: 9999;
  font-size: 15px
}


/* CSS for the summary */
#summary {
  display: none;
  position: absolute;
  top: 50%;
  right: 200px;
  transform: translateY(-50%);
  width: 500px;
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 9998;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f7f7f7;
  padding: 20px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* CSS for the contact icons */
.icon {
  width: 40px;
  margin-right: 70px;
}

.resume {
  margin: 100px auto;
  text-align: left;
  font-size: 15px;
}


.resume a {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  margin-top: 30px;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 5px;
}

.resume a:hover {
  background-color: #3e8e41;
}

.resume object {
  margin-top: 30px;
  
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 250px;
  height: 300px;
  overflow: auto;
}

li {
  padding: 8px;
}

.box {
  border: 1px solid #ccc;
  padding: 5px;
  border-radius: 5px;
  font-weight: normal;
  color: #333;
  width: 250px;
}
.box:hover {
  background-color: #ffa500;
  font-weight: bold;
  color: #fff;
}

.button-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.button {
  background-color:  #4CAF50;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.05s ease;
}
.button:hover {
  background-color: orange;
}
.options {
  display: none;
  margin-top: 5px;
  text-align: center;
}

.options a {
  display: block;
  margin: 1px 0;
  color: white;
  background-color: green;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.05s ease;
}

.options a:hover {
  background-color: navy;
}

.get-in-touch-button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.05s ease-in-out;
}

.get-in-touch-button:hover {
  background-color: #3e8e41;
}



@media (max-width: 768px) {
	body {
		padding: 10px;
	}
	img, video {
    max-width: 100%;
    height: auto;
  }
  
	nav {
		margin-bottom: 20px;
	}
	
	h1 {
		font-size: 1.5em;
		margin-bottom: 10px;
	}
	
	h2 {
		font-size: 1.2em;
		margin-bottom: 10px;
	}
	
	p, form label, input, textarea, input[type="submit"] {
		font-size: 0.9em;
		margin-bottom: 10px;
	}
	
	input, textarea {
		width: 100%;
		padding: 10px;
		border: 1px solid #ccc;
		border-radius: 4px;
	}
	
	input[type="submit"] {
		background-color: #4CAF50;
		color: white;
		padding: 12px 20px;
		border: none;
		border-radius: 4px;
		cursor: pointer;
	}
	
	input[type="submit"]:hover {
		background-color: #45a049;
	}
	
	footer {
		margin-top:30px;
	text-align: center;
}
		
}