* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
}

h3,
h4,
h5 {
  line-height: 1.3;
}

/* links */
a {
  text-decoration: none;
  color: #e5f5eb;
}

a:hover {
  color: #86efac;
}

a:visited {
  color: #e5f5eb;
}

body {
  background: #022c22;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* whole container left & right */
.container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 40px 16px;
  background: #f9fafb;
  display: grid;
  grid-template-columns: 1fr 2fr;
  box-shadow: 0 35px 55px rgba(0, 0, 0, 0.35);
  border-radius: 14px;
  overflow: hidden;
}

/* left side */
.container .left_side {
  position: relative;
  background: #031712;
  padding: 40px;
}

/* profile */
.profileText {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #4b5563;
}

.profileText .imgBx {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background: #022c22;
}

.profileText .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.profileText h2 {
  color: #e5f5eb;
  font-size: 1.5em;
  margin-top: 20px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  line-height: 1.4em;
}

.profileText h2 span {
  font-size: 0.85em;
  font-weight: 300;
  color: #22c55e;
}

/* contact titles */
.contactInfo {
  padding-top: 24px;
}

.title {
  color: #e5f5eb;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.contactInfo ul {
  position: relative;
}

.contactInfo ul li {
  position: relative;
  list-style: none;
  margin: 10px 0;
  cursor: default;
}

.contactInfo ul li .icon {
  display: inline-block;
  width: 26px;
  font-size: 18px;
  color: #22c55e;
}

.contactInfo ul li span {
  font-weight: 300;
  display: block;
  line-height: 1.4;
}

.contact-list ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list ul li .icon {
  width: 24px;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-list ul li .text {
  font-weight: 300;
}

/* education */
.contactInfo.education li {
  margin-bottom: 18px;
}

.contactInfo.education h5 {
  color: #a3e635;
  font-weight: 400;
  margin-bottom: 6px;
  font-size: 0.85rem;
}

.contactInfo.education h4 {
  color: #e5f5eb;
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 1rem;
}

.contactInfo.education h3 {
  color: #e5f5eb;
  font-weight: 400;
  margin-bottom: 4px;
  font-size: 0.8rem;
}

/* languages */
.contactInfo.language .text {
  color: #e5f5eb;
  font-weight: 500;
  font-size: 0.9rem;
}

.contactInfo.language .percent {
  position: relative;
  width: 100%;
  height: 6px;
  background: #020617;
  display: block;
  margin-top: 6px;
  border-radius: 99px;
  overflow: hidden;
}

.contactInfo.language .percent div {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #22c55e;
}

/* right side */
.container .right_side {
  position: relative;
  background: #04241c;
  padding: 40px;
}

.about {
  margin-bottom: 32px;
}

.about:last-child {
  margin-bottom: 0;
}

.title2 {
  color: #bbf7d0;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

p {
  color: #e5f5eb;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* experience */
.about .box {
  display: flex;
  flex-direction: row;
  margin: 18px 0;
}

.about .box .year_company {
  min-width: 160px;
}

.about .box .year_company h5 {
  text-transform: uppercase;
  color: #e5f5eb;
  font-weight: 600;
  font-size: 0.8rem;
  padding-right: 20px;
  margin-bottom: 8px;
}

h5.company-link {
  color: #a3e635;
}

.company-link h5:hover {
  color: #d9f99d;
}

.about .box .text h4 {
  text-transform: uppercase;
  color: #22c55e;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* skills */
.skills .box {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  margin: 10px 0;
  gap: 12px;
}

.skills .box h4 {
  text-transform: uppercase;
  color: #e5f5eb;
  font-weight: 500;
  font-size: 0.85rem;
}

.skills .box .percent {
  width: 100%;
  height: 10px;
  background: #020617;
  border-radius: 999px;
  overflow: hidden;
}

.skills .box .percent div {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  background: #22c55e;
}

/* projects */
.projects h3 {
  color: #bbf7d0;
  padding: 6px 0;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9rem;
}

.projects .pro {
  margin-bottom: 10px;
}

.projects p {
  text-transform: none;
  font-size: 0.86rem;
}

/* button */
.btn {
  margin-top: 8px;
}

.btn button {
  cursor: pointer;
  margin-top: 10px;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #22c55e;
  border-radius: 999px;
  background: transparent;
  color: #e5f5eb;
  cursor: pointer;
  transition: background 0.15s ease-out, color 0.15s ease-out,
    border-color 0.15s ease-out;
}

.btn button span {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn button:hover {
  background: #22c55e;
  color: #021913;
  border-color: #bbf7d0;
}

/* hobbies */
.intrest {
  margin-top: 20px;
}

.intrest ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.intrest ul li {
  list-style: none;
  color: #e5f5eb;
  font-weight: 500;
  margin: 10px 10px;
  font-size: 0.85rem;
}

.intrest ul li .fa {
  color: #22c55e;
  font-size: 18px;
  width: 20px;
}

/* responsive */
@media (max-width: 1000px) {
  .container {
    grid-template-columns: 1fr;
  }

  .intrest ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .about .box .year_company {
    margin-bottom: 6px;
  }
}

@media (max-width: 600px) {
  .container {
    margin: 24px 10px;
  }

  .about .box {
    flex-direction: column;
  }

  .about .box .year_company {
    margin-bottom: 8px;
  }

  .intrest ul {
    grid-template-columns: 1fr;
  }

  .skills .box {
    grid-template-columns: 1fr;
  }
}
