* {
  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;
}

.parallax-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 675px) {
  .parallax-section {
    height: auto;
    padding: 50px 0;
  }
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateZ(0);
  will-change: transform;
  z-index: -2;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: var(--light);
  z-index: 1;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light);
  overflow: hidden;
}
@media (max-width: 675px) {
  .hero {
    height: auto;
    padding: 60px 0;
    padding-top: 90px;
  }
}
.hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 675px) {
  .hero h1 {
    font-size: 1.5em;
  }
}
.hero .tagline {
  font-size: 2.3rem;
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0.9;
  text-transform: uppercase;
}
@media (max-width: 675px) {
  .hero .tagline {
    font-size: 1.5em;
    margin-bottom: 0.8em;
  }
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 675px) {
  .hero p {
    font-size: 0.9em;
    margin-bottom: 1em;
  }
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--light);
  color: var(--primary);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: linear-gradient(135deg, rgba(10, 174, 18, 0.8) 0%, rgba(135, 214, 104, 0.8) 100%), url("https://images.unsplash.com/photo-1532601224476-15c79f2f7a51?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
  will-change: transform;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1;
}

.content-section {
  padding: 100px 0;
  background-color: var(--light);
}
@media (max-width: 675px) {
  .content-section {
    padding: 50px 0;
  }
}

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

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

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 62px;
}

.about-text {
  flex: 1;
}
@media (max-width: 675px) {
  .about-text {
    text-align: center;
  }
}
.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--dark);
}
@media (max-width: 675px) {
  .about-text h3 {
    font-size: 1.6em;
    text-align: center;
  }
}
.about-text p {
  color: var(--text);
  margin-bottom: 20px;
  text-align: justify;
}
@media (max-width: 675px) {
  .about-text p {
    text-align: center;
  }
}

.about-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.vision-mission {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.vm-card {
  background-color: var(--light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 4px solid var(--primary);
}
.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
.vm-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}
.vm-card p {
  color: var(--text);
  text-align: justify;
}

/* Expertise Section */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.expertise-card {
  background-color: var(--light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  border-top: 4px solid var(--primary);
  text-decoration: none;
}
.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.expertise-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(10, 174, 18, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.expertise-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark);
}
.expertise-card p {
  color: var(--text);
  margin-bottom: 15px;
}

.expertise-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: 10px;
}

/* Advantages Section */
.advantages-content {
  margin: 0 auto;
  text-align: center;
}

.advantages-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  margin-top: 50px;
}
@media (max-width: 675px) {
  .advantages-list {
    display: flex;
    flex-direction: column;
    gap: 15px 0;
  }
}

.dev1 {
  grid-column-start: 1;
  grid-row-start: 1;
}

.dev2 {
  grid-column-start: 1;
  grid-row-start: 2;
}

.dev3 {
  grid-column-start: 2;
  grid-row-start: 1;
  grid-row-end: 3;
}

.dev4 {
  grid-column-start: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}

.dev5 {
  grid-column-start: 3;
  grid-row-start: 2;
  grid-row-end: 3;
}

.advantage-item {
  background-color: var(--light);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}
.advantage-item:hover {
  transform: translateY(-5px);
}
.advantage-item h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary);
}
.advantage-item p {
  color: var(--text);
}
.advantage-item.dev3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Commitment Section */
.commitment {
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--light);
}

.section-title h2 {
  color: var(--light);
}
.section-title h2:after {
  background-color: var(--light);
}

.commitment-content {
  max-width: 900px;
  margin: 0 auto;
}
.commitment-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Contact Section */
.contact-container {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}
.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary);
}
.contact-info p {
  color: var(--text);
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.contact-detail i {
  width: 50px;
  height: 50px;
  background-color: var(--secondary);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.2rem;
}

.contact-form {
  flex: 1;
  background-color: var(--light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Parallax Sections */
.parallax-1 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../images/bg1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../images/bg3.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-3 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../images/bg2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--light);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

.section-advantages {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../images/bg4.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.section-advantages .section-title h2, .section-advantages .section-title p {
  color: var(--light);
}
.section-advantages .section-title h2::after {
  background-color: var(--light);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}
.conatact-section {
  position: relative;
  background: var(--light);
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
  padding: 150px 0;
}
@media (max-width: 675px) {
  .conatact-section {
    padding: 50px 0;
  }
}
.conatact-section .contact-details {
  margin-top: 30px;
}
.conatact-section img {
  position: absolute;
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
}
@media (max-width: 675px) {
  .conatact-section img {
    display: none;
  }
}
.conatact-section .section-title {
  text-align: left;
  max-width: 500px;
  margin: 0;
}/*# sourceMappingURL=style.css.map */