* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  color: rgb(187, 186, 186);
  background-color: #374151;
}

#header_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.links_div {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.2rem;
  padding: 1rem;
}

#links_div2 {
  padding: 1rem 2rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}

a {
  text-decoration: none;
  color: white;
}

.accountLink {
  font-size: 1.5rem;
}

.myName {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.2rem;
}

#introPara {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: fit-content;
  word-wrap: break-word;
  text-align: center;
}

img {
  background-size: cover;
  background-repeat: no-repeat;
}

#imgDiv {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  border: none;
}

#imageDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem;
}

#aboutDiv {
  height: fit-content;
  width: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  word-wrap: break-word;
  text-align: center;
  color: #fff;
  padding: 25px 0px 0px 0px;
}

#discriptionDiv p {
  padding: 1rem 20px 20px 20px;
  font-size: 1rem;
  color: #fff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#discriptionDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  word-wrap: break-word;
  text-align: center;
}

#projectsDiv {
  height: fit-content;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0px 0px 0px;
  font-size: 1.5rem;
}

#projectsHeader {
  color: #0067f6;
}

#recentWorkDiv {
  padding: 20px 0px 0px 0px;
  height: fit-content;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

#recentWorkDiv h2 {
  font-weight: 500;
  font-size: 1.2rem;
}

#projectCard {
  height: fit-content;
  width: 300px;
  border: 2px solid white;
  background-color: #232c3b83;
  border-radius: 12px;
}

#project_cards_div {
  padding: 30px 0px 0px 0px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  border-radius: 12px;
  gap: 2rem;
  column-gap: 2rem;
}

#cardImgDiv img {
  background-repeat: no-repeat;
  background-size: cover;
  height: fit-content;
  width: 300px;
  border-radius: 12px;
}

#cardImgDiv img:hover {
  transform: scale(1.04);
  cursor: pointer;
}

#cardInfoContainer {
  height: fit-content;
  width: 100%;
}

#cardViewLink {
  padding-top: 0.3rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 1.2rem;
}

#projectLink {
  font-size: 1.5rem;
}

#skillContainer {
  height: fit-content;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 1rem;
  padding-top: 0.3rem;
}

#skillContainer p {
  padding: 4px 6px 4px 6px;
  border-radius: 10px;
  color: white;
  background-color: #65748d;
  font-size: 0.9rem;
}

#discriptionDiv p {
  word-wrap: break-word;
  text-align: center;
}

.socialLinks {
  padding-left: 40px;
}

.ProjectviewLink {
  padding-top: 0.3rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 1.2rem;
  color: white;
}

#exTextContainer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 30px 0px 0px 0px;
}

#exTextContainer h1 {
  color: #0067f6;
}

#currentConditionDiv {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  word-wrap: break-word;
  font-size: 1.2rem;
  color: white;
  font-weight: 600;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  padding: 1rem;
}

#mainDiv {
  padding: 20px 20px 20px;
}

#experienceCard h2 {
  font-size: 20px;
}

#experienceCard p {
  font-size: 1rem;
}

/* Used ChatGpt for this step */

#jobDiscriptionPara ol {
  list-style: none; /* remove default bullets */
  padding-left: 0;
  margin-top: 20px;
}

#jobDiscriptionPara li {
  position: relative;
  padding-left: 70px; /* space for image */
  margin-bottom: 12px;
}

#jobDiscriptionPara li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%; /* vertically center */
  transform: translateY(-50%);
  width: 50px; /* smaller, better for bullet */
  height: 50px;
  border-radius: 50%;
  background: url("profileImage/CodeAlpha.jpeg") center/cover no-repeat;
  border: 2px solid #333;
}

/* end of chatGpt code */

#experienceContainer {
  background-color: #7c929949;
  color: #edede9;
  padding: 10px;
  border-radius: 12px;
  padding: 10px 20px 20px 20px;
}

.companyName {
  font-size: 1.2rem;
  font-weight: 600;
}

#jobDurationDiv p {
  font-weight: 600;
}

#servicePara h1 {
  color: #0067f6;
  font-size: 40px;
  text-align: center;
}

#abilityDivs {
  padding-top: 1rem;
}

#abilityDiv p {
  color: white;
  font-weight: 600;
  text-align: center;
}

#IcanPara p {
  text-align: center;
  color: #9faec4;
}

.langIconDiv {
  height: fit-content;
  width: 100px;
  background-repeat: no-repeat;
  background-size: cover;
}

.JavaScriptLogo,
.CSSLogo,
.htmlLogo {
  border-radius: 1rem;
  height: 100px;
  width: 100px;
}

#skillsContainer {
  background-color: rgb(45, 157, 224);
  border-radius: 1rem;
}

#languagesDiv {
  padding: 30px;
  height: fit-content;
  width: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

#containerResize {
  padding-top: 1.2rem;
  /* total width */
  width: 100%;
  max-width: 800px;
  display: grid;
  margin: 0 auto; /* centers the container horizontally */
  gap: 20px; /* optional: spacing between grid items */
}

#skillName {
  font-weight: 600;
  color: white;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid white;
}

#contactPara h1 {
  font-size: 35px;
  text-align: center;
  color: #0067f6;
}

#contactPara {
  padding-top: 25px;
  padding-bottom: 25px;
}

#messageContainer {
  background-color: #14213d;
  padding: 20px 0px 1rem 1rem;
  border-radius: 12px;
  /* total width */
  width: 100%;
  height: fit-content;
  max-width: 800px;
  display: grid;
  grid-template-rows: 50px 1fr;
  grid-template-columns: 1fr;
  margin: 0 auto; /* centers the container horizontally */
  gap: 20px; /* optional: spacing between grid items */
}

.profileImg {
  height: 50px;
  width: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
}

.onlineDot {
  height: 21px;
  width: 21px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  padding-top: 2px;
}

#availableDiv {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #374151;
  padding: 10px 20px 10px 10px;
  border-radius: 1.5rem;
  height: fit-content;
  margin-top: 0.5rem;
  gap: 0.5rem;
  border: 1px solid #fff;
}

#availableImg {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  height: fit-content;
  width: fit-content;
}

.availablePara {
  color: #d1d5db;
  font-weight: 600;
}

#contactContainer {
  padding: 12px;
}

#userMessage p {
  font-weight: 600;
  color: #fff;
}

#callToAction p {
  font-weight: 600;
  color: #95a7c0;
  padding: 5px;
}

#callToAction {
  padding-top: 1rem;
}

#connectionLinks {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: 1.5rem;
}

#linksDiv .whatsApp {
  font-size: 1.6rem;
}

#linksDiv {
  display: flex;
  gap: 0.8rem;
}

#emailDiv {
  padding-top: 0.4rem;
}

#emailDiv a {
  font-size: 1.01rem;
}

#cardViewLink p,
a {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 840px) {
  #header_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  */ #links_div1 {
    display: flex;
    justify-content: center;
    align-content: center;
    width: 100vmin;
  }
}
