﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* whole site */
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

img {
  width: 100%;
}

p {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #2E2E2E;
  margin-bottom: 1rem;
}

.section_body {
  padding: 3rem 0;
}
.section_content {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
}
@media only screen and (max-width: 480px) {
  .section_content {
    padding: 0 10px;
  }
}

header {
  position: fixed;
  width: 100%;
  background-color: #ffffff;
  z-index: 5;
  height: 110px;
}
header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}
header .navbar #menu-close-button,
header .navbar #menu-open-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
header .navbar .nav_logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .navbar .nav_logo .logo_image {
  height: 70px;
}
header .navbar .nav_logo .logo_image .logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header .navbar .nav_logo .logo_text {
  color: #007BFF;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
header .navbar .nav_menu {
  display: flex;
  gap: 10px;
}
header .navbar .nav_menu .nav_item .nav_link {
  position: relative;
  padding: 10px 18px;
  font-family: "Poppins", sans-serif;
  color: #2E2E2E;
  font-size: 1.12rem;
  border-radius: 30px;
  transition: color 0.3s ease;
}
header .navbar .nav_menu .nav_item .nav_link::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 4px;
  width: 0;
  height: 3px;
  background-color: #007BFF;
  transition: width 0.3s ease;
}
header .navbar .nav_menu .nav_item .nav_link:hover {
  color: #007BFF;
}
header .navbar .nav_menu .nav_item .nav_link:hover::after {
  width: calc(100% - 36px);
}
header .navbar .nav_menu .nav_item .button {
  padding: 10px 26px;
  border: 2px solid transparent;
  color: #ffffff;
  border-radius: 30px;
  background-color: #007BFF;
  font-weight: 500;
  transition: 0.3s ease;
}
header .navbar .nav_menu .nav_item .button:hover {
  color: #007BFF;
  border-color: #007BFF;
  background-color: transparent;
}
@media only screen and (max-width: 1024px) {
  header .navbar .nav_logo {
    gap: 10px;
  }
  header .navbar .nav_logo .logo_text {
    font-size: 1.5rem;
  }
  header .navbar .nav_menu .nav_item .nav_link {
    padding: 8px 12px;
    font-size: 1rem;
  }
  header .navbar .nav_menu .nav_item .button {
    padding: 8px 14px;
    font-weight: 1rem;
    transition: 0.3s ease;
    /*  &:hover {
        color: $primary_color;
        border-color: $primary_color;
        background-color: transparent;
    }*/
  }
}
@media only screen and (max-width: 834px) {
  header {
    height: 90px;
    /* Overlay active state */
  }
  header .navbar {
    padding: 10px 20px;
  }
  header .navbar #menu-open-button,
  header .navbar #menu-close-button {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.12rem;
  }
  header .navbar #menu-open-button {
    color: #2E2E2E;
  }
  header .navbar #menu-close-button {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #2E2E2E;
  }
  header .navbar .nav_logo .logo_text {
    font-size: 2rem;
  }
  header .navbar .nav_menu {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 50px;
    transition: left 0.5s ease;
    z-index: 5;
    border-top: 1px solid #F5F6F7;
  }
  header .navbar .nav_menu .nav_item .nav_link {
    color: #2E2E2E;
    margin-top: 15px;
    font-size: 1.12rem;
  }
  header .navbar .nav_menu.active {
    left: 0;
  }
  header.menu-open .nav-overlay {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (max-width: 480px) {
  header .navbar {
    padding: 10px;
  }
  header .navbar .nav_logo .logo_text {
    font-size: 1.12rem;
  }
}

body.menu-open {
  overflow: hidden;
}
body.menu-open .nav-overlay {
  opacity: 1;
  visibility: visible;
}

.hero_section {
  min-height: calc(100vh - 110px);
  padding-top: 55px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #F5F6F7 60%, rgb(214.2, 233.88, 255) 100%);
  position: relative;
  overflow: hidden;
}
.hero_section .hero_bg_shape {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: rgba(0, 123, 255, 0.08);
  border-radius: 50%;
  z-index: 1;
}
.hero_section .section_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  width: 100%;
  gap: 40px;
}
.hero_section .section_content .hero_details {
  z-index: 2;
  width: 60%;
}
.hero_section .section_content .hero_details .title {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  color: #2E2E2E;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.hero_section .section_content .hero_details .subtitle {
  margin-top: 12px;
  max-width: 80%;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  font-size: 2.3rem;
  font-weight: 600;
  color: #2E2E2E;
}
.hero_section .section_content .hero_details .description {
  margin: 20px 0 36px;
  max-width: 80%;
  font-size: 1.12rem;
  color: rgb(20.5, 20.5, 20.5);
}
.hero_section .section_content .hero_details .buttons {
  display: flex;
  gap: 20px;
}
.hero_section .section_content .hero_details .buttons .button {
  padding: 10px 26px;
  border: 2px solid transparent;
  color: #ffffff;
  border-radius: 30px;
  background-color: #007BFF;
  font-weight: 500;
  transition: 0.3s ease;
}
.hero_section .section_content .hero_details .buttons .button:hover {
  color: #007BFF;
  border-color: #007BFF;
  background-color: transparent;
}
.hero_section .section_content .hero_details .buttons .contact_us {
  color: #007BFF;
  border-color: #007BFF;
  background-color: transparent;
}
.hero_section .section_content .hero_details .buttons .contact_us:hover {
  color: #ffffff;
  border-color: #007BFF;
  background-color: #007BFF;
}
.hero_section .section_content .hero_image_wrapper {
  position: relative;
  z-index: 2;
  width: 40%;
}
.hero_section .section_content .hero_image_wrapper .hero_image {
  max-width: 100%;
  animation: floatImage 6s ease-in-out infinite;
}
@keyframes floatImage {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
@media only screen and (max-width: 1024px) {
  .hero_section .section_content .hero_details .subtitle {
    max-width: 90%;
  }
  .hero_section .section_content .hero_details .description {
    max-width: 90%;
  }
}
@media only screen and (max-width: 834px) {
  .hero_section {
    min-height: auto;
    padding: 120px 0 80px;
  }
  .hero_section .section_content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero_section .section_content .hero_details {
    width: 80%;
  }
  .hero_section .section_content .hero_details .subtitle,
  .hero_section .section_content .hero_details .description {
    max-width: 100%;
  }
  .hero_section .section_content .hero_details .buttons {
    justify-content: center;
  }
  .hero_section .section_content .hero_image_wrapper {
    margin: 0 auto 30px;
    width: 70%;
  }
  .hero_section .scroll_indicator {
    display: none;
  }
}
.highlights {
  padding: 80px 0;
  background-color: #ffffff;
}
.highlights .section_content .boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.highlights .section_content .boxes .box {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.highlights .section_content .boxes .box .feature-icon {
  font-size: 44px;
  color: #007BFF;
}
.highlights .section_content .boxes .box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 123, 255, 0.15);
}
@media only screen and (max-width: 834px) {
  .highlights {
    padding: 60px 0;
  }
  .highlights .section_content .boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 480px) {
  .highlights .section_content .boxes {
    grid-template-columns: 1fr;
  }
}

.about {
  padding: 100px 0;
  background-color: #F5F6F7;
}
.about .section_content .about_us {
  display: flex;
  align-items: center;
  gap: 60px;
}
.about .section_content .about_us .image_box {
  flex: 1;
}
.about .section_content .about_us .image_box .about_image {
  width: 100%;
  height: auto;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.about .section_content .about_us .about_content {
  flex: 1;
}
.about .section_content .about_us .about_content .title {
  font-family: "Poppins", sans-serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #2E2E2E;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about .section_content .about_us .about_content .buttons {
  margin-top: 2rem;
}
.about .section_content .about_us .about_content .buttons .button {
  display: inline-block;
  padding: 12px 32px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #007BFF;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.about .section_content .about_us .about_content .buttons .button:hover {
  background-color: transparent;
  color: #007BFF;
  border-color: #007BFF;
}
@media only screen and (max-width: 834px) {
  .about {
    padding: 80px 0;
  }
  .about .about_us {
    flex-direction: column;
    gap: 40px;
  }
  .about .about_us .image_box,
  .about .about_us .about_content {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
  .about .about_content {
    text-align: center;
  }
  .about .about_content .buttons {
    justify-content: center;
  }
}
.products {
  padding: 100px 0;
  background-color: #ffffff;
}
.products .section_content .title {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #2E2E2E;
  margin-bottom: 3rem;
}
.products .section_content .boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.products .section_content .boxes .box {
  background-color: #ffffff;
  padding: 20px;
  border: 1px solid #6F7172;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}
.products .section_content .boxes .box .product {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f8f9fa;
  border-radius: 12px;
}
.products .section_content .boxes .box .product .product_img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.products .section_content .boxes .box .subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: #2E2E2E;
  margin-top: 0.5rem;
}
.products .section_content .boxes .box p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #2E2E2E;
}
.products .section_content .boxes .box .button {
  margin-top: auto;
  align-self: center;
  padding: 12px 32px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #007BFF;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.products .section_content .boxes .box .button:hover {
  background-color: transparent;
  color: #007BFF;
  border-color: #007BFF;
}
.products .section_content .boxes .box:hover {
  border-color: #007BFF;
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}
.products .section_content .boxes .box:hover .product .product_img {
  transform: scale(1.05);
}
@media only screen and (max-width: 834px) {
  .products {
    padding: 80px 0;
  }
  .products .section_content .boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .products {
    padding: 60px 0;
  }
  .products .section_content .boxes {
    grid-template-columns: 1fr;
  }
}
.contact {
  padding: 100px 0;
  background-color: #F5F6F7;
}
.contact .section_content {
  max-width: 700px;
}
.contact .section_content .title {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #2E2E2E;
  margin-bottom: 0.8rem;
}
.contact .section_content .section_intro {
  text-align: center;
  font-size: 1rem;
  color: #6F7172;
  margin-bottom: 3rem;
}
.contact .section_content .contact_form_wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.contact .section_content .contact_form_wrapper .contact_form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.contact .section_content .contact_form_wrapper .contact_form .form_group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact .section_content .contact_form_wrapper .contact_form .form_group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2E2E2E;
}
.contact .section_content .contact_form_wrapper .contact_form .form_group input,
.contact .section_content .contact_form_wrapper .contact_form .form_group textarea {
  padding: 12px 14px;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #cccccc;
  transition: border-color 0.3s ease;
}
.contact .section_content .contact_form_wrapper .contact_form .form_group input:focus,
.contact .section_content .contact_form_wrapper .contact_form .form_group textarea:focus {
  outline: none;
  border-color: #007BFF;
}
.contact .section_content .contact_form_wrapper .contact_form .form_group textarea {
  resize: vertical;
}
.contact .section_content .contact_form_wrapper .contact_form .form_check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #2E2E2E;
}
.contact .section_content .contact_form_wrapper .contact_form .form_check input {
  margin-top: 4px;
}
.contact .section_content .contact_form_wrapper .contact_form .button {
  padding: 10px 26px;
  border: 2px solid transparent;
  color: #ffffff;
  border-radius: 30px;
  background-color: #007BFF;
  font-weight: 500;
  transition: 0.3s ease;
}
.contact .section_content .contact_form_wrapper .contact_form .button:hover {
  color: #007BFF;
  border-color: #007BFF;
  background-color: transparent;
}
.site_footer {
  background-color: #2E2E2E;
  padding: 80px 0 30px;
  color: #ffffff;
}
.site_footer .footer_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.site_footer .footer_grid .footer_box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.site_footer .footer_grid .footer_box .footer_title {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}
.site_footer .footer_grid .footer_box .footer_text {
  font-size: 1rem;
  line-height: 1.6;
  color: white;
}
.site_footer .footer_grid .footer_box .social_icons {
  display: flex;
  gap: 14px;
}
.site_footer .footer_grid .footer_box .social_icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  transition: 0.3s ease;
}
.site_footer .footer_grid .footer_box .social_icons a:hover {
  background-color: #007BFF;
  transform: translateY(-3px);
}
.site_footer .footer_grid .footer_box .footer_links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site_footer .footer_grid .footer_box .footer_links a {
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  transition: 0.3s ease;
}
.site_footer .footer_grid .footer_box .footer_links a i {
  font-size: 12px;
  color: #007BFF;
}
.site_footer .footer_grid .footer_box .footer_links a:hover {
  color: #007BFF;
  transform: translateX(4px);
}
.site_footer .footer_grid .footer_box .contact_info {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.site_footer .footer_grid .footer_box .contact_info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: white;
}
.site_footer .footer_grid .footer_box .contact_info li i {
  color: #007BFF;
  font-size: 16px;
  margin-top: 3px;
  min-width: 18px;
}
.site_footer .footer_bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site_footer .footer_bottom .legal_links {
  margin-left: 10px;
}
.site_footer .footer_bottom .legal_links a {
  color: white;
  font-size: 0.9rem;
  margin: 0 6px;
  transition: 0.3s ease;
}
.site_footer .footer_bottom .legal_links a:hover {
  color: #007BFF;
}
@media only screen and (max-width: 834px) {
  .site_footer .footer_grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site_footer .footer_grid .footer_box .social_icons {
    justify-content: center;
  }
  .site_footer .footer_grid .footer_box .contact_info li {
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .site_footer .footer_bottom {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
