/*---[NO-5]-Design-the-Header-Section-START---*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  border-bottom: 1px solid #ddd;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 1000;
  max-width: 1440px;
  margin: 40px auto;
}

.header_logo {
  display: flex;
  align-items: center;
}

.header_logo img {
  height: 50px;
  position: relative;
  left: 60px;
}

.nav-links {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 auto;
  left: 100px;
}

.nav-links a {
  text-decoration: none;
  margin: 0 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 5px 0;
  color: var(--Gray-1, #333);
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.nav-links .active-line {
  position: absolute;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
}

.nav-links .active-line-top {
  top: -5px;
}

.nav-links .active-line-bottom {
  bottom: -5px;
}

.nav-links a:hover {
  color: #bdbdbd;
}

.mobile-menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    margin: 10px 0;
  }

  .mobile-menu-icon {
    display: block;
  }

  .nav-links .active-line {
    display: none;
  }

  .header_logo img {
    position: relative;
    left: 5px;
  }
}

/*---[NO-5]-Design-the-Header-Section-END---*/
/*[NO-9] Create the Footer Section - START */
footer {
  max-width: 1440px;
  background-color: #2c2c2c;
  margin: 0px auto;
  color: #ffffff;
  font-family: "Roboto", serif;
}

.footer {
  display: flex;
  padding-top: 55px;
  padding-left: clamp(10px, 8vw, 120px);
  padding-right: clamp(10px, 8vw, 120px);
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}

.footer h1 {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 15px;
}

.footer_img {
  padding: 0px 0px 180px 0px;
}

.footer_p {
  line-height: 40px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
}

.footer_s {
  line-height: 26px;
  padding: 5px 0px 35px 0px;
}

.footer_information {
  display: flex;
  gap: clamp(10px, 5vw, 70px);
}

.footer_cont_h {
  margin-bottom: 0px;
}

.footer_cont {
  display: flex;
  gap: 20px;
}

.footer_cont_img {
  min-width: 12px;
  align-self: start;
  padding-top: 10px;
}

.footer_social_img {
  display: flex;
  gap: clamp(10px, 3vw, 40px);
  padding-top: 10px;
}

.footer_2021 {
  color: #c8c8c880;
  text-align: center;
  min-height: 70px;
  font-size: 12px;
  align-content: center;
  position: relative;
}

.footer_2021::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.5px;
  background-color: #ffffff;
  opacity: 10%;
}

@media (max-width: 768px) {
  .footer {
    display: block;
    text-align: center;
    padding: 20px 0px 0px 0px;
  }

  .footer_information,
  .footer_contacts,
  .footer_social {
    display: block;
    margin-bottom: 50px;
  }

  .footer_img {
    padding-bottom: 30px;
  }

  .footer h1 {
    padding-bottom: 5px;
  }

  .footer_s {
    line-height: 26px;
    padding: 5px;
  }

  .footer_cont,
  .footer_p {
    display: block;
  }

  .footer_social_img {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}
/*[NO-9] Create the Footer Section - END */

/*[NO-24] Create the project Section - STARTED */
.projects__section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  text-align: center;
  font-family: "Roboto", sans-serif;
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
}

.title-sub {
  font-size: 64px;
  font-weight: 300;
  color: #bdbdbd;
  font-family: "Roboto", sans-serif;
}

.title-main {
  font-size: 64px;
  font-weight: 700;
  color: #333;
  font-family: "Roboto", sans-serif;
}

.projects__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
}

.project__card {
  display: flex;
  flex-direction: row;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.project__card:hover {
  transform: scale(1.03);
}

.project__image-wrapper {
  flex: 1 1 40%;
  margin: 0;
}
.project__image {
  width: 100%;
  height: 435px;
  object-fit: cover;
}

.project__content {
  flex: 1.5;
  text-align: left;
  background-color: #f9f9f9;
  padding: 50px;
  font-family: "Roboto", sans-serif;
}

.project__title {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 10px;
  color: #bdbdbd;
}

.project__description {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #000000;
}

.project__view-more {
  text-decoration: none;
  color: black;
  font-size: 12px;
  font-weight: 400;
  display: inline-block;
  background-color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.project__view-more:hover {
  background-color: #ddd;
  color: #fff;
}

.pagination {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
  gap: 10px;
  margin-left: 0;
}

.pagination__prev,
.pagination__next {
  background: #ddd;
  color: #fff;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 16px;
  transition: background 0.3s ease;
}

.pagination__prev:hover,
.pagination__next:hover {
  background: #ddd;
}

.page-number {
  font-size: 18px;
  font-weight: 300;
  color: #333;
}

@media (max-width: 768px) {
  .section-title {
    text-align: center;
    align-items: center;
  }

  .project__card {
    flex-direction: column;
    max-width: 100%;
    height: 330px;
  }

  .project__image {
    width: 100%;
    height: 200px;
  }

  .project__content {
    text-align: center;
    padding: 15px;
  }

  .project__title {
    font-size: 20px;
  }

  .project__description {
    font-size: 14px;
  }

  .project__view-more {
    font-size: 12px;
  }
  .pagination {
    justify-content: center;
    margin-top: 20px;
  }
}
@media (max-width: 1024px) {
  .project__card {
    flex: 1 1 calc(100% - 20px);
    max-width: calc(100% - 20px);
  }

  .section-title {
    text-align: center;
  }
}
/*[NO-24] Create the project Section - FİNİSHED */
