@font-face {
  font-family: "Lato";
  src: url(/assets/fonts/Lato-Regular.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lato Bold";
  src: url(/assets/fonts/Lato-Bold.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Lato Light";
  src: url(/assets/fonts/Lato-Light.ttf) format("truetype");
  font-weight: 300;
  font-style: normal;
}
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  font-family: "Lato", sans-serif;
}

.navbar-brand {
  display: flex;
  align-items: center;
  position: absolute;
  left: 2rem;
}
.navbar-brand .logo {
  height: 64px;
  width: auto;
}

.navbar-menu {
  display: flex;
  justify-content: center;
  margin-left: 0;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon {
  width: 20px;
  height: 20px;
  filter: invert(41%) sepia(98%) saturate(747%) hue-rotate(181deg) brightness(93%) contrast(92%);
}

.nav-link {
  text-decoration: none;
  color: #00ff33;
  font-weight: 500;
  font-size: 1.3rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: "Lato", sans-serif;
}
.nav-link:hover {
  color: #333333;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 0.7rem 0.5rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 60px;
  }
  .navbar {
    padding: 1rem;
    justify-content: center;
    align-items: center;
  }
  .navbar-menu,
  .navbar-nav,
  .navbar-toggle {
    display: none !important;
  }
  .navbar-brand {
    position: static;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .navbar-brand .logo {
    height: 48px;
    width: auto;
    margin: 0 auto;
  }
  .navbar-nav {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    border-radius: 12px;
    padding: 1rem 0;
    display: flex;
  }
  .nav-item {
    justify-content: center;
    width: 100%;
  }
  .nav-link {
    font-size: 1.15rem;
    padding: 0.8rem 0;
    width: 100%;
    text-align: center;
  }
  .icon {
    width: 24px;
    height: 24px;
  }
  .navbar-toggle {
    display: block;
    margin: 0.5rem auto;
  }
}
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}
footer img {
  width: 320px;
  height: auto;
  margin-bottom: 0.5rem;
}
footer .contact-text h2 {
  margin: 0.5rem 0;
  font-size: 1.5rem;
  color: #f0f0f0;
}
footer .contact-text p {
  margin: 0.3rem 0;
  font-size: 1rem;
  color: #ccc;
}

@media (max-width: 600px) {
  footer img {
    width: 200px;
  }
  footer .contact-text h2 {
    font-size: 1.2rem;
  }
  footer .contact-text p {
    font-size: 0.9rem;
  }
}
.services-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  background: none;
  padding: 0;
  margin: 0 auto 3rem auto;
  max-width: 1100px;
}

.services-content h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #00ff33;
  letter-spacing: 1px;
  text-align: center;
  font-family: "Lato Bold", sans-serif;
}

.service-item,
.our-compromise {
  background: #ffffff;
  border: 1.5px solid #f0f0f0;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 2.2rem 2rem;
  color: #333333;
  text-align: left;
  margin: 0 auto;
  max-width: 900px;
  transition: box-shadow 0.2s;
}

.service-item:hover,
.our-compromise:hover {
  box-shadow: 0 8px 32px rgba(0, 255, 51, 0.12);
  border-color: #00ff33;
}

.service-item h3,
.our-compromise h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: #ff5733;
  letter-spacing: 0.5px;
  font-family: "Lato Bold", sans-serif;
}

.service-item p,
.our-compromise p {
  font-size: 1.08rem;
  color: #333333;
  line-height: 1.7;
  font-family: "Lato", sans-serif;
}

.service-item strong,
.our-compromise strong {
  color: #3357ff;
  font-weight: 700;
  background: rgba(51, 87, 255, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
}

.icon-service {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.18));
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .services-content {
    gap: 1.2rem;
  }
  .service-item,
  .our-compromise {
    padding: 1.2rem 0.7rem;
    max-width: 98vw;
    text-align: center;
  }
  .icon-service {
    width: 36px;
    height: 36px;
  }
  .service-item h3,
  .our-compromise h2 {
    font-size: 1.15rem;
  }
  .service-item p,
  .our-compromise p {
    font-size: 0.98rem;
  }
}
.about-us {
  background: transparent;
  padding: 4rem 0 2rem 0;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  border-radius: 16px;
}

.about-us-content {
  text-align: center;
  margin-bottom: 2.5rem;
}

.about-us-content h2 {
  font-size: 2.5rem;
  color: #1a237e;
  margin-bottom: 1rem;
}

.about-us-content p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.7;
}

.mision-vision {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.mission,
.vision {
  background: transparent;
  padding: 1.5rem;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.mission h3,
.vision h3 {
  color: #388e3c;
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}

.mission p,
.vision p {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.6;
}

.Why-us {
  margin-bottom: 2.5rem;
  background: transparent;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.Why-us h3 {
  color: #1976d2;
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}

.Why-us p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.Why-us ul {
  padding-left: 1.2rem;
}

.Why-us li {
  color: #222;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .about-us {
    padding: 2rem 0 1rem 0;
  }
  .mision-vision {
    flex-direction: column;
    gap: 1.2rem;
  }
}
.banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  position: absolute;
  top: 58%;
  left: 10%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.banner-logo {
  width: 240px;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.18));
}

.banner-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  margin-top: 90px;
  margin-bottom: 1.5rem;
  filter: brightness(0.35);
}

@media (max-width: 900px) {
  .banner-image {
    max-height: 220px;
    border-radius: 10px;
  }
  .banner-logo {
    width: 160px;
    height: auto;
    margin-left: 240px;
  }
}
body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #ff33a8 #ffffff;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

main {
  padding: 0 2rem;
}

.icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

.logo {
  width: 120px;
  height: auto;
}

::-webkit-scrollbar {
  width: 8px;
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #00ff33, #3355ff);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6d9afb;
}

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