* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}
p {
  font-family: "Inter", sans-serif;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.7;
}

:root {
  --color-neutral-n00: #25282e;
  --black-1: #3b413a;
  --black-2: #3f3c3c;
  --black-3: #5b6359;
  --white-1: #e8e8e8;
  --harigurus: #fc815c;
  --eazygard: #639;
  --webdev: #47afa1;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
}

section {
  padding: 40px 0;
}

.about-hero-section {
  width: 100%;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(0, 132, 255), green);
  color: white;
  text-align: center;
  padding: 20px;
}
.about-hero-content {
  max-width: 800px;
}
.about-hero-title {
  font-size: 3rem;
  margin-bottom: 10px;
}
.about-hero-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
  opacity: 0.9;
}
.about-hero-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: orange;
  background-color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.about-hero-btn:hover {
  background-color: orange;
  color: white;
}

/*latest section */
/* latest project */

.faiz {
  display: flex;
  flex-direction: column;
  column-gap: 5rem;
}

.latest-work-wrapper {
  display: flex;
  align-items: center;
}

.latest-work-img {
  flex: 3;
  padding-top: 100px;
}
.latest-work-img img {
  width: 150%;
  height: 400px;
}

.latest-work-progress {
  flex: 2;
}

.latest-work-info {
  flex: 4;
  margin-left: 2rem;
  padding-top: 100px;
}

.horizontal-line {
  display: block;
  height: 2px;
}

.vertical-line-wrapper {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.vertical-line {
  width: 5px;
  display: block;
  height: 100%;
  background-color: var(--black-1);
}

.harigurus-bg {
  background-color: var(--harigurus);
}
.circle {
  margin-left: -7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.latest-work-title {
  font-size: 2rem;
  font-weight: 500;
}

.latest-work-sub-title {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0.5rem 0;
}

.latest-work-desc {
  font-size: 1.1rem;
  color: var(--black-3);
  margin-bottom: 1rem;
}

.lang-list {
  border: 1px solid var(--black-1);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--black-2);
  cursor: pointer;
}

.harigurus {
  color: var(--harigurus);
}

.eazygard {
  color: var(--harigurus);
}

.eazygard-bg {
  background-color: var(--harigurus);
}

.webdev {
  color: var(--harigurus);
}

.webdev-bg {
  background-color: var(--webdev);
}
@media (max-width: 820px) {
  .latest-work-wrapper {
    align-items: center;
    gap: 2rem;
  }
  .latest-work-progress,
  .vertical-line-wrapper {
    display: none;
  }
  .latest-work-img,
  .latest-work-info {
    flex: 4;
  }
}

@media (max-width: 768px) {
  .latest-work-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
  .container {
    width: 100%;
  }

  .latest-work-img,
  .latest-work-info {
    padding-top: 20px;
  }

  .latest-work-title {
    font-size: 1.2rem;
  }
  .latest-work-sub-title {
    font-size: 1rem;
    margin: 0.3rem 0;
  }
}
.latest-work {
  position: absolute;
  bottom: 0;
  left: 50%;
  overflow-x: hidden;
  transform: translate(-50%, -50%);
}

@media (max-width: 576px) {
  .latest-work-img img {
    width: 100%;
    height: auto;
  }
}
