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

body {
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  color: #333;
}

.mt60 {
  margin-top: 60px;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #fff;
  /* A shade of blue similar to the original site */
  text-align: center;

}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  margin: 0 auto;
  padding: 0 60px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 150px;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  font-size: 20px;
  margin-right: 140px;
}

.nav-links li {
  margin-left: 40px;
}

.nav-links a {
  /* color: white; */
  color: #515151;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a.active {
  color: #ff9900;
  /* Highlight color for active link */
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 60px);
  padding: 60px 20px;
  background-color: #004080;
  /* A slightly different blue for the hero section */
  color: white;
  background-image: url('../image/sk01.png');
  background-size: cover;
  background-position: center;

}

.hero .text {
  font-size: 3rem;
  margin-bottom: 15px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
}

.subtitle {
  text-align: center;
  font-size: 20px;
  color: #666;
}

.contact h2.title {
  margin-bottom: 15px;
}

.contact-information {
  max-width: 900px;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  margin: 50px auto 0;
}

.contact-information .item {
  margin-bottom: 40px;
}
.contact-information .item .item-title {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-information .item .text {
  font-size: 16px;
  line-height: 20px;
  color: #666;
  margin-left: 36px;
}

.contact-information .item .item-title img {
  width: 26px;
  margin-right: 10px;
}

.title-text {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 20px;
}

.tag-container .tag {
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  display: inline-block;
  padding: 5px 10px;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  margin: 12px;
}

.mb80 {
  margin-bottom: 80px !important;
}

.btn {
  display: inline-block;
  background-color: #ff9900;
  /* Orange button */
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e68a00;
}

.bgf9 {
  background-color: #f9f9f9;
}

.section {
  margin-bottom: 40px;
  padding: 40px 20px;
  /* background-color: #f9f9f9; */
  border-radius: 8px;
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
}

.section .title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.5;
}

.maxWidth1380 {
  max-width: 1380px;
  margin: 20px auto;
}

.stats {
  padding: 0 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
}

.stat-item {
  flex: 1;
  margin: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* background-color: white; */
  /* border-radius: 8px; */
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  height: 150px;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: #ff9900;
  margin-bottom: 20px;
}

.integrations {
  padding: 0 40px;
}

.logo-grid {
  display: grid;
  gap: 20px;
  justify-items: center;
  align-items: center;
}

.logo-grid.six {
  grid-template-columns: repeat(6, 1fr);
}

.logo-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

.logo-grid.four {
  width: 75%;
  margin: 20px auto 0;
  grid-template-columns: repeat(4, 1fr);
}

.logo-grid.three {
  width: 75%;
  margin: 20px auto 0;
  grid-template-columns: repeat(3, 1fr);
}

.logo-grid .img {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.logo-grid img {
  max-width: 75%;
  height: auto;
  /* filter: grayscale(100%); */
  /* Make logos grayscale to fit the theme */
  /* transition: filter 0.3s ease; */
}

.logo-grid img.mW80p {
  max-width: 80%;
}

/* .logo-grid img:hover {
  filter: grayscale(0%);
} */

.solutions {
  padding: 0 40px;
}

.solution-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #f9f9f9;
  margin-top: 25px;
  border-radius: 8px;
  position: relative;
}

.solution-grid .line {
  content: '';
  position: absolute;
  height: 60%;
  top: 20%;
  left: 50%;
  width: 0px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.solution-item {
  flex: 1;
  min-width: 300px;
  padding: 48px 40px;
  font-size: 1.375rem;
}

.solution-item h3 {
  margin-left: 52px;
  margin-bottom: 40px;
}

.solution-item ul {
  list-style: none;
  padding-left: 2rem;
}

.solution-item li {
  margin-bottom: 25px;
  position: relative;
  display: flex;
  align-items: center;
  color: #0a0d13;
}

.without li i {
  content: '';
  width: 40px;
  height: 40px;
  margin-right: 12px;
  background-image: url('../image/no.png');
  background-size: cover;
  flex-shrink: 0;
}

.with li i {
  content: '';
  width: 40px;
  height: 40px;
  margin-right: 12px;
  background-image: url('../image/cheked.png');
  background-size: cover;
  flex-shrink: 0;
}

.ops {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.mt100 {
  margin-top: 100px;
}

.ops h3 {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.ops h1 {
  font-size: 3.5rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.ops h2 {
  font-size: 2.5rem;
  line-height: 1.8;
  margin-bottom: 35px;
  position: relative;
}

.ops h2::after {
  content: '';
  position: absolute;
  max-width: 168px;
  width: 100%;
  border-bottom: 6px solid #ff9900;
  bottom: 4px;
  left: 0;
}

.ops .info {
  width: 640px;
  font-size: 20px;
  line-height: 1.5;
}

.ops .img {
  width: 32.5%;
  height: 0;
  padding-top: 31.5%;
  /* height: 380px; */
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.ops img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s;
}

.ops img:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.bs-r {
  box-shadow: 32px 32px 0 0 #F9F9F9;
}

.bs-l {
  box-shadow: -32px 32px 0 0 #F9F9F9;
}

.ops li {
  font-size: 24px;
  margin-bottom: 10px;
}

.ops .main-p {
  width: 40%;
  height: 0;
  padding-top: 39%;
  /* height: 525px; */
}

.transform-business form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.transform-business label {
  font-weight: bold;
  margin-bottom: 5px;
}

.transform-business input[type="text"],
.transform-business select {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.transform-business button[type="submit"] {
  background-color: #0056b3;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.transform-business button[type="submit"]:hover {
  background-color: #004080;
}


.company-timeline {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}

.timeline-item {
  flex: 0 0 32%;
  margin-top: 20px;
  margin-right: 2%;
  background-color: #f9f9f9;
}

.timeline-item:nth-child(3n) {
  margin-right: 0;
}

.timeline-year {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.timeline-year img {
  height: auto;
}

.timeline-year span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0056b3;
  flex-shrink: 0;
}

.timeline-content {
  padding: 20px;
  border-radius: 8px;
  flex-grow: 1;
}


.timeline-content h5 {
  font-size: 1.2rem;
  color: #ff9900;
  margin-top: 0;
  margin-bottom: 10px;
}

.timeline-item .timeline-content p {
  margin-bottom: 0;
}

#backToTopBtn {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Fixed/sticky position */
  bottom: 15px;
  /* Place the button at the bottom of the page */
  right: 20px;
  /* Place the button at the left of the page */
  z-index: 99;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  background-color: #0056b3;
  /* Set a background color */
  color: white;
  /* Text color */
  cursor: pointer;
  /* Add a mouse pointer on hover */
  padding: 15px;
  /* Some padding */
  border-radius: 10px;
  /* Rounded corners */
  font-size: 18px;
  /* Increase font size */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#backToTopBtn:hover {
  background-color: #004080;
  /* Add a darker background on hover */
}

/* New styles for services.html */
.service-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-section h2 {
  margin-bottom: 20px;
  color: #0056b3;
}

.service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.service-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.service-content ul {
  list-style: none;
  padding: 0;
  width: 100%;
}

.service-content li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.why-us-grid {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  padding: 0 40px;
}

.why-us-grid>div {
  flex: 0 0 33.33%;
  padding: 0 10px;
  margin-top: 20px;
}

.why-us-grid>div p {
  width: 100%;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: #e6f2ff;
  padding: 20px 30px;
  line-height: 30px;
  border-radius: 8px;
  color: #0056b3;
  font-size: 20px;
  font-weight: 700;
}

.our-mission {
  padding: 0 40px;
}

.our-mission h2 {
  font-size: 40px;
  line-height: 60px;
  color: #000;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  padding-bottom: 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.our-mission p {
  font-size: 24px;
  margin-bottom: 40px;
  line-height: 1.4;
}

.fulfillment-list {
  list-style: none;
  counter-reset: steps;
  display: flex;
  justify-content: space-between;
}

.fulfillment-list li {
  width: 24%;
  padding: 0 15px;
  text-align: center;
  position: relative;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #000;
}

.fulfillment-list li::before {
  counter-increment: steps;
  content: counter(steps);
  display: block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  /* background: #EAEEFE; */
  margin: 0 auto 80px;
  font-weight: 600;
  font-size: 40px;
  text-align: center;
  color: #fff;
  background: #0056b3;
}

.fulfillment-list li:nth-child(n+2)::after {
  content: '';
  position: absolute;
  width: 100%;
  border-bottom: 1px solid #EAEEFE;
  top: 40px;
  left: -50%;
  z-index: -1;
}

footer {
  background-color: #333;
  /* margin-top: 40px; */
  padding: 30px 0;
}

.footer .container {
  max-width: 1380px;
  margin: 0 auto;
  color: #fff;
  padding: 0 30px;
  line-height: 27px;
}

.footer .container a {
  color: #fff;
}

@media (min-width: 1024px) and (max-width: 1380px) {
  .logo img {
    width: 120px;
  }

  .nav-links {
    margin-right: 0;
    font-size: 18px;
  }

  .hero .text {
    font-size: 2.6rem;
  }

  .section {
    padding: 20px;
    margin-bottom: 20px;
  }

  .tag-container .tag {
    font-size: 18px;
    line-height: 26px;
  }

  .solution-item {
    font-size: 1.2rem;
    padding: 40px;
  }

  .solution-item li i {
    width: 34px;
    height: 34px;
  }

  .solution-item h3 {
    margin-bottom: 30px;
  }

  .solution-item ul {
    padding-left: 1.4rem;
  }

  .footer {
    font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .logo img {
    width: 110px;
  }

  .nav-links {
    margin-right: 0;
    font-size: 16px;
  }

  .hero .text {
    font-size: 2rem;
  }

  .section {
    padding: 20px;
    margin-bottom: 20px;
  }

  .section .title {
    font-size: 2.3rem;
  }

  .maxWidth1380 {
    margin: 0 auto;
  }

  .tag-container .tag {
    font-size: 14px;
    line-height: 24px;
  }

  .stat-item {
    height: 120px;
    flex: 0 0 50%;
    margin: 0;
  }

  .solution-item {
    font-size: 1rem;
    padding: 20px;
  }

  .solution-item li i {
    width: 30px;
    height: 30px;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .solution-item h3 {
    margin-bottom: 30px;
  }

  .solution-item ul {
    padding-left: 1.4rem;
  }

  .footer {
    font-size: 14px;
  }

  .logo-grid.six,
  .logo-grid.five,
  .logo-grid.four,
  .logo-grid.three {
    grid-template-columns: repeat(2, 1fr);
  }

  .ops:first-child {
    margin-bottom: 40px;
  }

  .ops .info {
    width: 60%;
    font-size: 18px;
  }

  .ops h3 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 25px;
  }

  .timeline-item {
    flex: 0 0 48.5%;
    margin-right: 3%;
  }

  .timeline-item:nth-child(3) {
    margin-right: 3%;
  }

  .timeline-item:nth-child(5) {
    margin-right: 3%;
  }

  .timeline-item:nth-child(2n) {
    margin-right: 0;
  }
}


@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .logo {
    width: min-content;
  }

  .logo img {
    width: 30%;
    min-width: 55px
  }

  .nav-links {
    margin-right: 0;
    font-size: 14px;
  }

  .nav-links li {
    margin-left: 30px;
  }

  .hero .text {
    font-size: 2rem;
  }

  .section {
    padding: 15px;
    margin-bottom: 15px;
  }

  .section .title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .maxWidth1380 {
    margin: 0 auto;
  }

  .tag-container .tag {
    font-size: 12px;
    line-height: 20px;
    margin: 6px 8px;
  }

  .stat-item {
    height: 120px;
    flex: 0 0 50%;
    margin: 0;
  }

  .solution-item {
    font-size: 1rem;
    padding: 20px;
  }

  div.line {
    display: none;
  }

  .solution-item li i {
    width: 30px;
    height: 30px;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .solution-item h3 {
    margin-bottom: 30px;
  }

  .solution-item ul {
    padding-left: 1.4rem;
  }

  .footer {
    font-size: 14px;
  }

  .logo-grid.five,
  .logo-grid.four
  .logo-grid.three {
    grid-template-columns: repeat(2, 1fr);
  }

  .ops:first-child {
    margin-bottom: 40px;
  }

  .ops.reverse {
    flex-direction: column-reverse;
  }

  .ops .img {
    width: 90%;
    padding-top: 70%;
    margin-top: 0;
    margin-bottom: 40px;
  }

  .ops {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .ops .info {
    width: 90%;
    font-size: 18px;
  }

  .ops h3 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 25px;
  }

  .why-us-grid>div {
    flex: 0 0 100%;
  }

  .fulfillment-list {
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
  }

  .fulfillment-list li {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    margin-bottom: 20px;
  }

  .fulfillment-list li::before {
    margin: 0 20px 0 0;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    line-height: 40px;
    font-size: 20px;
  }

  .fulfillment-list li:nth-child(n+2)::after {
    display: none;
  }

  .mb80 {
    margin-bottom: 40px !important;
  }

  .timeline-item {
    flex: 0 0 100%;
  }
}