* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0AAE12;
  --secondary: #87D668;
  --white: #fff;
  --light: #ffffff;
  --text: #444444;
  --dark: #1a1a1a;
  --greenDark: #0f2313;
  --accent: #0AAE12;
  --section-bg: #f8f9fa;
  --font: "Poppins", sans-serif;
  --headerh: 69.40px;
  --footerh: 141.2px;
  --mainh: calc( var(--headerh) + var(--footerh));
  --border: #e1e1e1;
}

html {
  scroll-behavior: smooth;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

body {
  font-family: var(--font);
  background-color: var(--light);
  color: var(--text);
  line-height: 1.6;
  font-size: 14px;
}

main {
  min-height: calc(100vh - var(--footerh));
  padding-top: var(--headerh);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: 600;
}

img {
  max-width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-scrolled {
  padding: 12px 0;
  background-color: rgba(255, 255, 255, 0.98);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.logo i {
  margin-right: 10px;
  color: var(--secondary);
}
.logo a {
  display: flex;
  flex-direction: column;
}
.logo a img {
  max-width: 170px;
}

.nav-links {
  display: flex;
  list-style: none;
}
.nav-links li {
  margin-left: 30px;
}
.nav-links li a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s;
}
.nav-links li a:hover:after {
  width: 100%;
  color: var(--primary);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--light);
}
.btn-primary:hover {
  background-color: #089c0f;
}

.content-section {
  padding: 100px 0;
  background-color: var(--light);
}
.content-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}
.content-section .section-title h2 {
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.content-section .section-title h2:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.content-section .section-title p {
  color: var(--text);
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 1.1rem;
}

footer {
  background-color: var(--greenDark);
  color: var(--light);
  padding: 60px 0 30px;
}
footer .flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 675px) {
  footer .flex {
    display: block;
  }
}
footer .logo_footr {
  width: 200px;
}
@media (max-width: 675px) {
  footer .logo_footr {
    margin-bottom: 12px;
  }
}
footer .logo_footr a {
  display: flex;
  flex-direction: column;
}
footer .logo_footr a img {
  max-width: 150px;
}
footer .address, footer .copyright {
  margin-left: 20px;
  font-size: 14px;
  flex: 1;
}
@media (max-width: 675px) {
  footer .address, footer .copyright {
    margin: 10px 0;
  }
}
footer .address h6 {
  font-size: 18px;
  font-weight: 500;
}
footer .social {
  margin-left: 20px;
}
@media (max-width: 675px) {
  footer .social {
    margin: 0;
  }
}
footer .social a {
  margin-right: 10px;
  color: white;
  font-size: 18px;
  width: 45px;
  height: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--light);
  border-radius: 45px;
  text-decoration: none;
}
footer .social a i {
  font-size: 14px;
}

@media (min-width: 993px) {
  .parallax-1 .section-content h2, .parallax-2 .section-content h2, .parallax-3 .section-content h2 {
    font-size: 3.5em;
  }
  .parallax-1 .section-content p, .parallax-2 .section-content p, .parallax-3 .section-content p {
    font-size: 1.2em;
  }
  .expertise-card p {
    min-height: 110px;
    position: relative;
  }
  .expertise-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
  }
}
/* Responsive Styles */
@media (max-width: 992px) {
  .about-content, .contact-container {
    flex-direction: column;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--light);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: left 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links li {
    margin: 15px 0;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero .tagline {
    font-size: 1.3rem;
  }
  .parallax-1, .parallax-2, .parallax-3 {
    background-attachment: scroll;
  }
  .advantages-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  section.parallax-section.parallax-2, section.parallax-section.parallax-1 {
    height: 300px;
  }
}
.secTitle {
  text-align: center;
  margin-bottom: 3.2em;
}
.secTitle h2 {
  font-size: 30px;
  font-weight: 600;
}

@media (max-width: 675px) {
  .scrol {
    overflow-x: scroll;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0 2rem 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (max-width: 675px) {
  table {
    min-width: 850px;
  }
}
table thead tr th {
  text-align: left;
  padding: 15px 18px;
  border: 1px solid var(--border);
}
table tr th {
  padding: 15px 18px;
  border: 1px solid var(--border);
  text-align: left;
}
table tr th strong, table tr th b {
  font-weight: 700;
}
table tr td {
  padding: 15px 18px;
  border: 1px solid var(--border);
}
table tr:not(:last-child) td {
  border-bottom: 1px solid var(--border);
}
table tr:nth-child(even) td {
  background: #f7f7f7;
}

.tbleHead {
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 675px) {
  .tbleHead {
    font-size: 16px;
  }
}

.list-bullet {
  list-style: none;
  padding-left: 15px;
}
.list-bullet li {
  position: relative;
  padding-left: 20px;
  margin: 8px 0;
  font-weight: 500;
}
.list-bullet li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 15px;
}

.product-page {
  padding: 30px 0;
}
.product-page .heading {
  text-align: center;
  max-width: 880px;
  margin: 20px auto 0;
  margin-bottom: 4em;
}
.product-page .heading h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
@media (max-width: 675px) {
  .product-page .heading h2 {
    font-size: 2em;
  }
}
.product-page .heading p {
  color: var(--text);
  font-size: 16px;
  margin-bottom: 15px;
}
.product-page .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 675px) {
  .product-page .flex {
    flex-direction: column;
    gap: 12px 0;
  }
}
.product-page .flex .col {
  flex: 0 1 33.33%;
  max-width: 33.33%;
  width: 100%;
  padding: 10px;
}
@media (max-width: 675px) {
  .product-page .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.product-page .card {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: 1px 0px 6px 0px #eef6f6;
  overflow: hidden;
  text-decoration: none;
  transform: translateY(0);
  position: relative;
  transition: 0.5s ease;
  padding-bottom: 40px;
}
.product-page .card .cardImg {
  line-height: 0;
}
.product-page .card .cardImg img {
  max-width: 100%;
}
.product-page .card .card-content {
  text-align: center;
  padding: 15px 25px;
  padding-top: 15px;
  padding-bottom: 20px;
}
.product-page .card .card-content .title {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--dark);
  font-weight: 600;
}
.product-page .card .card-content .sortDes {
  color: var(--text);
  margin-bottom: 15px;
}
.product-page .card .card-content .tag {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--secondary);
  color: var(--dark);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 240px;
  width: 100%;
}
.product-page .card:hover {
  transform: translateY(-8px);
}

.productDet-sec-1 {
  padding: 50px 0;
}
@media (max-width: 675px) {
  .productDet-sec-1 {
    padding: 20px 0;
  }
}
.productDet-sec-1 .col1 {
  flex: 0 1 40%;
  max-width: 40%;
  width: 100%;
  padding: 0 15px;
}
@media (max-width: 675px) {
  .productDet-sec-1 .col1 {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 0;
  }
}
.productDet-sec-1 .col1 .img {
  position: sticky;
  top: 15%;
}
.productDet-sec-1 .col2 {
  flex: 0 1 60%;
  max-width: 60%;
  width: 100%;
  padding: 0 15px;
}
@media (max-width: 675px) {
  .productDet-sec-1 .col2 {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 0;
  }
}
.productDet-sec-1 .content h1 {
  margin-bottom: 10px;
  font-weight: 700;
}
@media (max-width: 675px) {
  .productDet-sec-1 .content h1 {
    font-size: 22px;
  }
}
.productDet-sec-1 .content p {
  color: var(--text);
  margin-bottom: 15px;
  text-align: justify;
  font-weight: 500;
}

.techSpeci {
  padding: 50px 0;
  background: var(--section-bg);
}
.techSpeci.bg-white {
  background: var(--white);
}
.techSpeci .col2 {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
  padding: 0 15px;
}
@media (max-width: 675px) {
  .techSpeci .col2 {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 0;
  }
}

table tr td:first-child {
  font-weight: 600;
  color: #000;
}
table tr td:first-child b, table tr td:first-child strong {
  font-weight: 600;
}/*# sourceMappingURL=style.css.map */