html {
  height: 100%;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px; /* Adjust the height as needed */
  background-image: linear-gradient(to bottom, #b3b3b3 0%, #f4f4f4 100%);
  z-index: -1;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  font-family: "San Francisco", "Helvetica Neue", Arial, sans-serif;
  color: #49494b;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}
.wrapper {
  flex: 1;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #b3b1b1;
  overflow: hidden;
  /* position: absolute; */
  /* position: -webkit-sticky; */
  top: 20px;
  left: 20px;
  margin-right: 20px; 
}
.profile-pic img {
  width: 100%;
  height: auto;
}
img {
  pointer-events: none;
}
.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}
.contact-info {
  font-size: small;
  /* align-items: center; */
}
header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 0;
}
header h1 {
  flex-basis: 100%;
  font-size: 2.5em;
  margin: 0;
}
header h2 {
  flex-basis: 100%;
  font-size: 1.5em;
  font-weight: normal;
  color: #666;
  margin: 0;
}
section {
  margin-bottom: 50px;
}
section h3 {
  font-size: 1.4em;
  border-bottom: 2px solid #333;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.experience,
.education {
  list-style: none;
  padding: 0;
}
.experience li,
.education li {
  margin-bottom: 15px;
}
.experience h4,
.education h4 {
  font-size: 1.2em;
  margin: 0;
}
.experience p,
.education p {
  margin: 0;
  color: #666;
}
.certifications-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-template-rows: repeat(3, 1fr); /* 3 rows */
    gap: 10px;
}
.certification{
    display: flex;
    align-items: center;
    padding: 10px;
    border: 5px;
    font-size: 0.9em;
}

.cert-badge{
    width: 20%;
    height: auto;
    margin: right;
}
.socila-network{
    text-align: center;
    padding: 30px;
}
.social-icon{
    width: 3.5%;
    height: auto;
    margin-right: 15px;
}
.social-icon:hover{
    color: #0077b5;
}
.icon:nth-child(2):hover {
    color: #333; /* GitHub color on hover */
  }
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #333;
  text-decoration: underline;
}

footer {
  height: 50px; /* Footer height */
  /* background-image: linear-gradient(to top, #b3b3b3 0%, #f4f4f4 80%); */
  color: #87878c; /* Footer text color */
  text-align: center;
  line-height: 50px; /* Center text vertically */
  position: relative;
  bottom: 0;
  width: 100%;
}

h1{
    margin-bottom: 0;
}
ul.no-space {
    list-style-type: disc;
    padding-left: 20px; /* Adjust the padding to align with your design */
    margin: 0;
  }
  ul.no-space li {
    margin: 0;
    padding: 0;
  }
.other-certs {
  list-style-type: disc;
  padding-left: 20px;  /* match .no-space */
  margin: 0;           /* match .no-space */
  line-height: normal; /* match visual feel of Skills */
  font-size: inherit;  /* same font as the rest */
}

.other-certs li {
  margin: 0;
  padding: 0;
}