html,
body {
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: inherit;
}
body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: "Encode Sans", sans-serif;
  line-height: 26px;
  font-weight: 400;
  background-color: #0d0f11;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  padding-bottom: 20px;
  margin: 0;
  font-weight: bold;
}
p {
  margin: 0;
  padding-bottom: 14px;
}
a {
  font-weight: 500;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button,
input[type="button"],
input[type="submit"] {
  background-color: transparent;
  border: 0;
  box-shadow: none;
  font-weight: 500;
}
img {
  max-width: 100%;
  overflow: hidden;
}
.container {
  width: 1260px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.d-flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.just-center {
  justify-content: center;
}
.space-between {
  justify-content: space-between;
}
.text-center {
  text-align: center;
  margin: 0 auto;
}
.btn {
  padding: 4px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  display: inline-block;
}
.btn:hover {
  box-shadow: 0 0 30px 1px #fff3, 0 4px 4px #00000040,
    inset 0 -4px 4px #00000059, inset 2px 4px 4px #ffffff47;
}
.btn span {
  transition: 0.4s ease-in;
  padding-left: 10px;
  font-size: 15px;
}
.btn:hover span {
  padding-left: 15px;
}
.btn-green {
  background-image: linear-gradient(0deg, #3d802c, #54af3c 75%);
}
.btn-blue {
  background-image: linear-gradient(0deg, #2b4a80, #375ea3);
}
.header-button a {
  border-radius: 50px;
}
.green {
  color: #54af3c;
}

/* header */
.header {
  position: fixed;
  top: -120px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(0, 0, 0, 0.9);
  padding: 20px 0;
  transition: top 0.3s ease;
  z-index: 999;
}
.page-header {
  top: 0;
}
.header_logo a {
  width: 50px;
  height: 50px;
  display: block;
}
.header_logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hamburger {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.hamburger__box {
  width: 24px;
  height: calc(3px * 3 + 6px * 2);
  position: relative;
  display: block;
}
.header-content--content {
  gap: 30px;
}
.main-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-menu li a {
  font-size: 20px;
  font-weight: 600;
  color: #54af3c;
}
.main-menu li a span {
  color: white;
  margin-left: 5px;
  transition: 0.3s;
}
.main-menu li a:hover span {
  margin-left: 12px;
}

.hamburger__bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: #54af3c;
  border-radius: 2px;
  transition: 300ms ease;
}

.hamburger__bar--top {
  top: 0;
}
.hamburger__bar--mid {
  top: calc(3px + 6px);
}
.hamburger__bar--bot {
  top: calc((3px + 6px) * 2);
}

.hamburger:hover .hamburger__bar--top {
  top: calc(3px + 6px);
  transform: rotate(45deg);
}

.hamburger:hover .hamburger__bar--mid {
  opacity: 0;
  transform: scaleX(0.2);
}

.hamburger:hover .hamburger__bar--bot {
  top: calc(3px + 6px);
  transform: rotate(-45deg);
}

/* Submenu styling */
.header-navbar ul li {
  position: relative;
}
.header-navbar ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0d1011;
  min-width: 120px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  z-index: 50;
}
/* Submenu links */
.header-navbar ul li ul li a {
  display: block;
  text-decoration: none;
  color: white;
}
/* Hover show submenu */
.header-navbar ul li:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.sub-menu li a {
  font-size: 16px;
  font-weight: 600;
}
.sub-menu li a span {
  color: #54af3c;
}

/* hero */
.hero {
  margin: 120px 0;
}
.hero-content {
  gap: 40px;
}
.hero-content--image,
.hero-content--content {
  flex: 1;
}
.hero_logo {
  width: 150px;
  margin-bottom: 40px;
}
.hero_logo img {
  width: 100%;
  height: auto;
}
.hero_title {
  font-size: 60px;
  line-height: 70px;
  font-weight: 500;
  color: white;
  width: 600px;
}
.hero_title span {
  font-weight: bold;
}
.highlight {
  color: #54af3c;
}

.hero-content--image img {
  width: 100%;
}

/* spx tools */
.section_title {
  font-size: 48px;
  line-height: 55px;
  font-weight: 500;
  width: 700px;
}
.white {
  color: white;
}
.section_title span {
  font-weight: 900;
}
.spx-tools--content {
  display: flex;
  gap: 60px;
  margin-top: 60px;
}
.tools-content--image,
.tools-content--content {
  flex: 1;
}
.tools-content--image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.accordion-item {
  margin-bottom: 30px;
}
.accordion-item h3 {
  color: white;
  font-weight: 500;
  font-size: 28px;
  line-height: 38px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.accordion-item h3 span {
  color: #54af3c;
}
.accordion-item h3:hover {
  color: #54af3c;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.accordion-content img{
  display: none;
}
.accordion-content p {
  color: white;
  font-size: 16px;
  line-height: 26px;
}
.accordion-content p a {
  color: white;
  border-bottom: 2px solid white;
}
.accordion-item.active .accordion-content {
  max-height: 200px; /* adjust as needed */
  padding: 0px 30px;
}
.accordion-icon {
  display: inline-block;
  margin-right: 10px;
  transition: transform 0.3s ease;
}
/* Rotate 90deg when active */
.accordion-item.active .accordion-icon {
  transform: rotate(90deg);
}

/* video */
.video {
  margin-top: 80px;
}
.video video {
  width: 100%;
  height: 100%;
}

/* logo-slider */
.logo-slider {
  margin: 50px 0;
}
.logo_title {
  font-size: 20px;
  color: white;
  line-height: 30px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 10px;
}

/* workflow */
.workflow {
  padding: 80px 0;
  background-color: #1f2328;
}
.workflow-content {
  gap: 50px;
  margin-top: 40px;
}
.workflow-content--item {
  flex: 1;
}
.workflow-item__image img {
  height: 350px;
  width: 100%;
}
.workflow_title {
  font-size: 36px;
  line-height: 46px;
  font-weight: 500;
  color: white;
  padding-bottom: 0;
}
.workflow_title span {
  font-weight: bold;
}
.workflow_subtitle {
  color: #dfddd6;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 40px;
}
.workflow_text {
  font-size: 16px;
  line-height: 26px;
  color: white;
  padding-left: 20px;
  border-left: 3px solid #54af3c;
  height: 340px;
}
.workflow_price {
  margin-top: 20px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #dfddd6;
}
.workflow_price span {
  font-weight: 900;
}

/* job */
.job {
  padding: 50px 0;
  background-color: #1f2328;
}
.job-content {
  gap: 60px;
}
.job-content--content {
  flex: 0.4;
}
.job-content--image {
  flex: 1;
}
.job_title {
  width: 100%;
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
}

/* video slider */
.video-sliders {
  padding: 80px 0;
  padding-bottom: 20px;
}
.video-slider {
  width: 700px;
  margin: auto;
  position: relative;
}
.video-slide {
  width: 99.5%;
  display: none;
}
.video-slide.active {
  display: block;
}
.video-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.video-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 120px;
}
.video-dots .dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.video-dots .dot.active {
  background: #54af3c;
  transform: scale(1.3);
}

/* second-tools */
.second-tools {
  padding: 80px 0;
  background-color: #5e6160;
}
.acc-ul {
  list-style: disc;
  margin: 0 30px;
}
.acc-ul li {
  color: white;
  font-size: 16px;
  line-height: 26px;
}
.w-100 {
  width: 100%;
}

/* dependable */
.dependable {
  background-color: #5e6160;
  padding-bottom: 80px;
}
.dependable-content {
  margin-top: 50px;
  gap: 50px;
}
.dependable-item {
  padding-left: 20px;
  border-left: 3px solid #54af3c;
}
.dep_title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  color: white;
}
.section_text {
  font-size: 16px;
  line-height: 26px;
  color: white;
}
.dep_btn {
  margin-top: 30px;
}

/* footer */
.footer {
  padding: 120px 0;
  padding-bottom: 30px;
}
.footer-content {
  gap: 50px;
}
.footer-slider {
  width: 60%;
}
.footer-flex {
  gap: 50px;
  justify-content: space-between;
  margin: 30px 0;
}
.footer_logo,
.footer_socials,
.footer_text,
.footer_link {
  flex: 1;
}
.footer_logo {
}
.footer_logo img {
  width: 80px;
}
.footer_socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer_socials a {
  font-size: 25px;
  color: #54af3c;
}
.footer_text {
  color: white;
  font-size: 16px;
  line-height: 26px;
}
.footer_link ul li a {
  color: white;
  font-size: 16px;
  line-height: 40px;
}
.footer_link ul li a:hover {
  color: #54af3c;
}
.footer-copyright p {
  color: white;
  font-size: 15px;
  line-height: 25px;
  text-transform: uppercase;
}
.policy-page {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}
.policy-page a {
  font-size: 13px;
  color: white;
  text-decoration: underline;
}
.policy-page a:hover {
  text-decoration: none;
}
.footer_image {
  text-align: center;
}
.footer_image img {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.swiper-button-next,
.swiper-button-prev {
  color: #838784 !important;
}

/* page */
.page {
  margin-top: 250px;
  margin-bottom: 120px;
}
.page_title {
  font-size: 64px;
  line-height: 74px;
  font-weight: 500;
}
.page_title span {
  font-weight: 800;
}
.blog-content {
  gap: 30px;
}
.blog-item {
  width: 48%;
}
.blog_type {
  color: #c46311;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 1px;
}
.blog_writer {
  font-size: 15px;
  line-height: 25px;
  color: white;
}
.blog_title {
  font-size: 24px;
  line-height: 35px;
  padding-top: 10px;
  font-weight: 500;
  color: white;
}
.blogdetails-content {
  width: 80%;
  margin: 0 auto;
}
.blog_details_image img {
  width: 100%;
  margin-top: 30px;
  border-radius: 20px;
}
.blog-details-content {
  margin-top: 50px;
}
.blog-details-content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  padding-bottom: 15px;
}
.blog-details-content h6 {
  font-size: 20px;
  font-style: italic;
  padding-left: 30px;
  border-left: 2px solid #54af3c;
  padding-bottom: 0;
  margin-bottom: 20px;
}
.blog-details-content h2 {
  padding-top: 50px;
  font-size: 35px;
  line-height: 45px;
  font-weight: 500;
}
.blog_ul {
  list-style: disc;
  margin-left: 40px;
  padding-bottom: 20px;
}
.blog-details-content a {
  color: white;
  font-size: 16px;
  line-height: 26px;
  text-decoration: underline;
  display: inline-block;
  padding-bottom: 15px;
}
.blog-details-content img {
  width: 60%;
  margin: 30px auto;
  text-align: center;
}

/* contact */
.contact-content {
  gap: 120px;
}
.contact-form,
.contact-content {
  flex: 1;
}
.form_input {
  flex-direction: column;
  display: flex;
  margin-bottom: 15px;
}
.form_input label{
  font-size: 15px;
  line-height: 25px;
  color: #757575;
  font-weight: 500;
}
.form_input input,
.form_input textarea,
.form_input select{
  width: 100%;
  height: 100%;
  padding: 15px;
  border-radius: 10px;
  border: 0;
  font-size: 16px;
  font-weight: 500;
  color: black;
}
.form_input input::placeholder{
  color: black;
}
.form_input textarea{
  height: 200px;
}
.contact-content p{
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: white;
}
.contact-form button{
  width: 100%;
  background-color: #54af3c;
  padding: 15px;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
}
.contact-form button:hover{
  opacity: 0.8;
}


@media only screen and (max-width: 768px){
  .hero{
    margin: 80px 0;
  }
  .hero-content{
    flex-direction: column;
  }
  .hero-content--image, .hero-content--content{
    width: 100%;
  }
  .tools-content--image{
    display: none;
  }
  .accordion-item.active .accordion-content{
    min-height: 420px;
  }
  .accordion-content img{
    display: block;
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 30px;
  }
  .logo-slider{
    margin: 30px 0;
  }
  .workflow-content{
    flex-direction: column;
    margin-top: 30px;
  }
  .workflow-item__image img{
    width: 100%;
    height: 350px;
    object-fit: contain;
  }
  .workflow_text{
    height: 240px;
  }
  .job-content{
    flex-direction: column;
    gap: 30px;
  }
  .dependable-content{
    flex-direction: column;
  }
  .footer-content{
    flex-direction: column;
  }
  .footer-slider{
    width: 100%;
  }
  .blog-item{
    width: 100%;
  }
  .page{
    margin-top: 160px;
    margin-bottom: 50px;
  }
  .contact-content{
    flex-direction: column-reverse;
    gap: 40px;
  }
}


@media only screen and (max-width: 640px){
  .btn{
    font-size: 14px;
  }
  .main-menu{
    display: none;
  }
  .hero_logo{
    width: 100px;
    margin-bottom: 30px;
  }
  .hero_title{
    font-size: 35px;
    line-height: 45px;
    width: 100%;
  }
  .hero-content{
    gap: 0px;
  }
  .section_title{
    width: 100%;
    font-size: 28px;
    line-height: 38px;
  }
  .video-slider{
    width: 100%;
  }
  .spx-tools--content{
    margin-top: 30px;
  }
  .accordion-item h3{
    font-size: 22px;
    line-height: 32px;
    padding-bottom: 15px;
  }
  .accordion-item.active .accordion-content{
    min-height: 400px;
  }
  .accordion-content img{
    height: 100%;
    object-fit: contain;
    margin-top: 10px;
  }
  .video{
    margin-top: 60px;
  }
  .logo_title{
    font-size: 18px;
  }
  .workflow{
    padding: 60px 0;
  }
  .workflow_title{
    font-size: 30px;
    line-height: 40px;
  }
  .workflow_subtitle{
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 20px;
  }
  .workflow_text{
    height: 100%;
    font-size: 14px;
    line-height: 24px;
  }
  .workflow_price{
    font-size: 18px;
    line-height: 28px;
  }
  .workflow-content{
    gap: 20px;
  }
  .job{
    padding: 40px 0;
    padding-bottom: 60px;
  }
  .job-content{
    gap: 10px;
  }
  .video-sliders{
    padding: 60px 0;
    padding-bottom: 20px;
  }
  .video-dots{
    margin-top: 80px;
  }
  .second-tools{
    padding: 60px 0;
  }
  .second-tools .accordion-item.active .accordion-content{
    min-height: 490px;
  }
  .dependable-content{
    gap: 40px;
    margin-top: 30px;
  }
  .dep_title{
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 15px;
  }
  .section_text{
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 0px;
  }
  .footer{
    padding-top: 60px;
  }
  .footer_image img{
    width: 100%;
  }
  .swiper-button-next, .swiper-button-prev{
    display: none !important;
  }
  .footer-content{
    gap: 30px;
  }
  .footer_text p{
    font-size: 14px;
    line-height: 24px;
  }
  .footer_link ul li a{
    font-size: 14px;
    line-height: 30px;
  }
  .footer-copyright p,
  .policy-page a{
    font-size: 12px;
    line-height: 20px;
  }
  .page_title{
    font-size: 35px;
    line-height: 45px;
  }
  .contact-content p{
    font-size: 16px;
    line-height: 26px;
  }
}