@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: linear-gradient(to bottom, #252525, #5F7CE4, #C23B65, #252525);
  margin: 0;
  padding: 0;
  color: #fff;
  min-height: 100vh; /* Ensure the gradient covers the entire viewport height */
}

/* Your existing CSS styles */

.header {
  position: relative;
  text-align: center;
  padding: 10px;
}

.logo-container {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.logo {
  width: 200px; /* Adjust the width as needed */
}

.profile-image-container {
  position: relative;
  display: inline-block;
  margin-top: 50px; /* Adjust the top margin as needed */
}

.profile-image {
  width: 800px; /* Adjust the size as needed */
  height: 800px; /* Adjust the size as needed */
  border-radius: 50%;
  position: absolute;
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Center precisely */
}


.name-job-container {
  text-align: center;
  margin-top: 20px;
}

.name {
  font-size: 36px;
  color: #f4f4f4;
  margin-bottom: 10px;
}

.job-title {
  font-size: 24px;
  color: #f4f4f4;
  margin-bottom: 20px;
}

.social-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.social-link {
  color: #f4f4f9;
  text-decoration: none;
  font-size: 36px;
  margin: 0 10px;
}

.social-link:hover {
  color: #f4f4f9;
}

.container {
  margin: 0 auto;
  max-width: 80%;
}

.contact-item {
  margin-bottom: 40px;
}

.profile-container {
    position: absolute;
    top: 10px; /* Adjust the top position as needed */
    left: 10px; /* Adjust the left position as needed */
    z-index: 1; /* Ensure the logo is in front of other content */
}

.profile-image {
    width: 50px; /* Adjust the width of the logo as needed */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 50%; /* If it's a circular logo */
}


.contact-detail {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.contact-heading {
  font-size: 24px;
  color: #000;
  margin-bottom: 5px;
}

.contact-info {
  font-size: 21px;
  color: #000;
  margin-bottom: 10px;
}

.contact-info a {
  color: #000;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-me-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-me-heading {
  font-size: 24px;
  color: #000;
  margin: 0;
  margin-right: 10px;
}

.show-contact-button {
  font-size: 48px;
  color: #000;
  text-decoration: none;
}

.show-contact-button:hover {
  color: #ccc;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px; /* Adjust the height as needed */
  background-color: #252525;
  color: #fff;
  z-index: 2; /* Ensure the footer is in front of other content */
}


footer p {
  margin: 0;
}

@media (max-width: 767px) {
  footer {
    flex-direction: column;
    text-align: center;
  }
}
