@charset "UTF-8";
.services-section {
  padding: 100px 0;
  background: #f8faf8;
}

.services-section .container {
  margin: auto;
  padding: 0 20px;
  max-width: 1320px;
}

.section-title {
  margin: 0 auto 60px;
  max-width: 700px;
  text-align: center;
}

.section-title span {
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  color: #18a558;
  font-weight: 600;
  font-size: 15px;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title span::before, .section-title span::after {
  width: 40px;
  height: 3px;
  content: "";
  background: #d64b4b;
}

.section-title h2 {
  margin-bottom: 20px;
  color: #071c2c;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
}

.section-title p {
  color: #333;
  font-size: 18px;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 40px 30px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.35s ease;
}

.service-card:hover {
  border-color: #18a558;
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.service-card:hover a {
  color: #d64b4b;
}

.service-card h3 {
  margin-bottom: 15px;
  color: #071c2c;
  font-weight: 700;
  font-size: 24px;
}

.service-card p {
  margin-bottom: 25px;
  color: #333;
  font-weight: 510;
  font-size: 17px;
  line-height: 1.9;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  color: #18a558;
  font-weight: 600;
  gap: 8px;
  transition: 0.35s ease;
}

.service-card a::after {
  font-size: 18px;
  content: "→";
}

.service-icon {
  margin-bottom: 30px;
  border-radius: 18px;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 128, 0, 0.08);
}

.service-icon img {
  border-radius: 10px;
  width: 79px;
  height: 79px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 991px) {
  .services-section {
    padding: 80px 0;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-title h2 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .services-section {
    padding: 70px 0;
  }
  .services-section .container {
    padding: 0 15px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .section-title {
    margin-bottom: 45px;
  }
  .section-title h2 {
    font-size: 34px;
  }
  .section-title p {
    font-weight: 500;
    font-size: 17px;
  }
  .service-card {
    padding: 35px 25px;
  }
}
@media (max-width: 575px) {
  .services-section {
    padding: 60px 0;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .section-title span {
    font-size: 14px;
  }
  .service-card {
    padding: 30px 20px;
  }
  .service-card h3 {
    font-size: 22px;
  }
  .service-card p {
    font-size: 18px;
  }
  .service-icon {
    width: 75px;
    height: 75px;
  }
  .service-icon img {
    width: 60px;
    height: 60px;
  }
}
.technology-section {
  padding: 100px 0;
  background: #fff;
}

.technology-section .container {
  margin: auto;
  padding: 0 20px;
  max-width: 1320px;
}

.section-title {
  margin-bottom: 80px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  color: #071c2c;
  font-weight: 700;
  font-size: 46px;
  gap: 12px;
  line-height: 1.2;
}

.section-title h2::before, .section-title h2::after {
  border-radius: 30px;
  width: 50px;
  height: 3px;
  content: "";
  background: #18a558;
}

.technology-row {
  margin-bottom: 90px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.technology-row:last-child {
  margin-bottom: 0;
}

.technology-row.reverse .technology-image {
  order: 1;
}

.technology-row.reverse .technology-content {
  order: 2;
}

.technology-content h3 {
  margin-bottom: 25px;
  color: #071c2c;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.3;
}

.technology-content p {
  margin-bottom: 20px;
  color: #333;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.9;
  text-align: justify;
}

.technology-content p:last-child {
  margin-bottom: 0;
}

.technology-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.technology-image img {
  border: 10px solid #fff;
  border-radius: 20px;
  width: 100%;
  height: 500px;
  max-width: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  transition: 0.35s ease;
}

.technology-image img:hover {
  transform: scale(1.04);
}

@media (max-width: 991px) {
  .technology-row {
    margin-bottom: 70px;
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .technology-row.reverse .technology-image {
    order: 2;
  }
  .technology-row.reverse .technology-content {
    order: 1;
  }
  .technology-content h3 {
    font-size: 30px;
  }
  .technology-content p {
    font-size: 17px;
  }
  .technology-image img {
    height: 450px;
    max-width: 450px;
  }
}
@media (max-width: 768px) {
  .technology-section {
    padding: 70px 0;
  }
  .technology-section .container {
    padding: 0 15px;
  }
  .section-title {
    margin-bottom: 50px;
  }
  .section-title h2 {
    font-size: 34px;
  }
  .section-title h2::before, .section-title h2::after {
    width: 35px;
  }
  .technology-content h3 {
    font-size: 26px;
  }
  .technology-content p {
    font-size: 16px;
    text-align: left;
  }
  .technology-image img {
    height: 380px;
    max-width: 380px;
  }
}
@media (max-width: 575px) {
  .technology-section {
    padding: 60px 0;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .section-title h2::before, .section-title h2::after {
    width: 25px;
  }
  .technology-content h3 {
    font-size: 22px;
  }
  .technology-content p {
    font-size: 17px;
    line-height: 1.8;
  }
  .technology-image img {
    height: 300px;
    max-width: 300px;
  }
}

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