:root {
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
}

.wrapper {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}

.container {
  width: 90%;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.lng-switch {
  margin-right: 1rem;
  text-decoration: none;
  color: black;
}

header {
  background-color: red;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
header nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  color: #222;
}
.header p {
  color: #666;
  font-size: 1.1rem;
  margin: 0;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: 14rem;
}
.nav-links a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #0078d7;
}

main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #111111;
}

section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
}

.hero-section {
  padding: 3rem 0 2rem 0;
}
.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.hero-section .image {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .image img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.hero-section .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.hero-section .text h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
}
.hero-section .text p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1rem;
  max-width: 500px;
}
.hero-section .text .buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.hero-section .text .bottom-text table {
  border-collapse: collapse;
}
.hero-section .text .bottom-text table td {
  padding: 0.2rem 1.5rem 0.2rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
}
.hero-section .text .bottom-text table tr:last-child td {
  font-size: 1rem;
  font-weight: 400;
  color: #555;
}

.services-section {
  background: #f7f7f8;
}
.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-section .service-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.services-section .service-item {
  background: #222;
  color: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.07);
  padding: 2.2rem 2rem 2rem 2rem;
  min-width: 240px;
  max-width: 300px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.services-section .service-item svg {
  margin-bottom: 1.2rem;
  width: 2.2rem;
  height: 2.2rem;
  display: block;
}
.services-section .service-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.7rem 0;
  color: #fff;
}
.services-section .service-item p {
  font-size: 1rem;
  color: #e0e0e0;
  margin: 0 0 1rem 0;
}
.services-section .service-item ul {
  padding-left: 1.1rem;
  margin: 0;
  color: #bdbdbd;
  font-size: 0.98rem;
}
.services-section .service-item ul li {
  margin-bottom: 0.3rem;
  list-style: disc;
}
.services-section .service-item:hover {
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.13);
  transform: translateY(-4px) scale(1.03);
}

.projects-section {
  background: #fff;
}
.projects-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.projects-section .header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.projects-section .header p {
  color: #666;
  font-size: 1.1rem;
  margin: 0;
}
.projects-section .projects-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}
.projects-section .project-item {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  background: #fafbfc;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.07);
  padding: 2.2rem 2rem 2rem 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.projects-section .project-item:hover {
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.13);
  transform: translateY(-4px) scale(1.02);
}
.projects-section .project-item .left {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 0.3rem;
}
.projects-section .project-item .left p {
  font-size: 1rem;
  color: #222;
  font-weight: 500;
  margin: 0;
  text-align: right;
}
.projects-section .project-item .right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.projects-section .project-item .right h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  color: #222;
}
.projects-section .project-item .right p {
  font-size: 1.05rem;
  color: #444;
  margin: 0 0 0.7rem 0;
}
.projects-section .project-item .right .date {
  font-size: 0.98rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.projects-section .project-item .right .date a {
  color: #0078d7;
  text-decoration: underline;
}
.projects-section .contact-more {
  margin-top: 2.5rem;
  text-align: center;
}
.projects-section .contact-more .btn-primary {
  background: #222;
  color: #fff;
  border-radius: 0.7rem;
  font-size: 1.1rem;
  padding: 0.8rem 2.2rem;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.07);
  transition: background 0.2s;
}
.projects-section .contact-more .btn-primary:hover {
  background: #111;
}

.contact-section {
  background-color: #f7f7f8;
}
.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 50%;
  margin: auto;
}
.contact-section form label {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.2rem;
  text-align: left;
}
.contact-section form input[type=text],
.contact-section form input[type=email],
.contact-section form textarea {
  width: 95.9%;
  padding: 0.8rem 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 0.7rem;
  font-size: 1rem;
  background: #fafbfc;
  color: #222;
  transition: border 0.2s, box-shadow 0.2s;
  resize: none;
  outline: none;
}
.contact-section form input[type=text]:focus,
.contact-section form input[type=email]:focus,
.contact-section form textarea:focus {
  border-color: #0078d7;
  box-shadow: 0 0 0 2px rgba(0, 120, 215, 0.08);
}
.contact-section form textarea {
  min-height: 120px;
  max-height: 260px;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
}

@media (max-width: 1200px) {
  .container {
    width: 95%;
  }
}
@media (max-width: 1000px) {
  .nav-links {
    display: none;
  }
  .hero-section .container {
    flex-wrap: wrap;
  }
  .hero-section .container .text {
    align-items: center;
  }
  .hero-section .container .text td {
    text-align: center;
  }
  .contact-section form {
    width: 75%;
  }
  .contact-section form textarea {
    width: 94.9%;
  }
}
@media (max-width: 500px) {
  .rightside {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
  }
  .rightside a {
    margin-right: 0;
  }
  .hero-section .text {
    text-align: center;
  }
  .projects-section .project-item .left {
    display: none;
  }
  .projects-section .contact-more {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap: 1vw;
  }
}

/*# sourceMappingURL=style.css.map */
