body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: sans-serif;
  background-color: #f0fbff;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background-color: #0388fc;
  color: #fff;
}

.header {
  text-align: center;
  padding-top: 40px;
  font-size: 40px;
}

/* Information Section */

.info {
  display: flex;
  font-size: 15px;
  background-color: #2f3c43;
  color: #fff;
  border-bottom: 3px #0388fc solid;
}

.info .fa-solid {
  color: #0388fc;
}

.info p {
  margin-top: 10px;
  margin-bottom: 10px;
}

.contact-info {
  display: flex;
  margin-left: 150px;
}

.contact-info p {
  padding: 0 30px;
}

.social-info {
  display: flex;
  margin-left: 40vw;
}

.social-info p {
  padding: 0 10px;
}

/* Navigation Bar */

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background: #e3e6f3;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

#header a {
  text-decoration: none !important;
  color: #0388fc;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #0388fc;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 30%;
  height: 2px;
  background: #0388fc;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

#navbar li a i {
  font-size: 20px;
}

#mobile {
  display: none;
  align-items: center;
}

#close {
  display: none;
}

#logo {
  height: 80px;
}

/* Slide */

#hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100vw;
  height: 85vh;
}

.swiper,
.swiper-mobile {
  width: 100% !important;
}

.swiper .swiper-slide img,
.swiper-mobile .swiper-slide img {
  width: 100%;
  height: 100%;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-button-prev-mobile,
.swiper-button-next-mobile {
  width: 50px !important;
  height: 50px !important;
  background-color: #fff;
  color: #000 !important;
  border-radius: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0.25rem 0 rgba(0, 0, 0, 0.325);
}

.swiper-pagination-bullet-active {
  background-color: #0388fc !important;
}

.mobile-block {
  display: none;
}

/* Services */

.services {
  display: flex;
  gap: 50px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  align-items: center;
}

.services .service {
  width: 350px;
  height: 200px;
  background-color: #fff;
  box-shadow: 0px 0px 32px 0px rgba(16, 37, 65, 0.1);
  border-radius: 10px;
  text-align: center;
}

.service .icon img {
  width: 50px;
  padding-top: 50px;
  color: #0388fc;
}

.service h2 {
  font-size: 30px;
}

/* About Us */

.about-us {
  padding: 0 200px;
  margin-top: 100px;
  display: flex;
  gap: 100px;
}

.about-us .about-text {
  line-height: 1.5;
  width: 1000px;
}

.about-us .about-text p {
  text-align: justify;
  text-align-last: justify;
}

.about-text h1 {
  font-size: 40px;
  color: #0388fc;
}

.line {
  height: 5px;
  width: 100px;
  background-color: #0388fc;
  margin-top: -25px;
}

.about-img img {
  margin-top: 50px;
}

/* Partners */

.partners .owl-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners .owl-carousel .item img {
  width: 300px;
}

/* Contact Us */

.contact-us {
  margin-top: 100px;
}

#contact-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#contact-details .details {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#contact-details .details span {
  font-size: 12px;
}

#contact-details .details h2 {
  font-size: 26px;
  line-height: 35px;
  padding: 0;
  color: #0388fc;
}

#contact-details .details h3 {
  font-size: 16px;
  padding-bottom: 15px;
}

#contact-details .details li {
  list-style: none;
  display: flex;
  padding: 10px 0;
}

#contact-details .details li i {
  font-size: 14px;
  padding-right: 22px;
}

#contact-details .details li p {
  margin: 0;
  font-size: 14px;
}

#contact-details .map {
  width: 55%;
  height: 400px;
}

#contact-details .map iframe {
  width: 100%;
  height: 100%;
}

/* Tracking */

.tracking {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 200px;
}

.tracking h1 {
  font-size: 60px;
  color: #0388fc;
}

.tracking .search-input {
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  width: 650px;
  outline: none;
  transition: border-color 0.2s;
}

.tracking .search-input:focus {
  border-color: #369;
}

.tracking .search {
  display: flex;
  gap: 20px;
}

.tracking .search-button {
  background-color: #0388fc;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 13px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.tracking .search-button:hover {
  background-color: #0056b3;
}

.tracking-result {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tracking-table {
  background-color: #ebf1f5;
  padding: 20px 0;
  overflow-x: auto;
}

.tracking-table table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 1200px;
}

.tracking-table td,
.tracking-table th {
  text-align: left;
  padding: 5px 10px;
  color: #585858;
}

/* Footer */

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
  margin-top: 100px;
}

footer h2 {
  color: #0388fc;
}

.section-p1 {
  padding: 40px 80px;
}

footer .logo {
  margin-bottom: 30px;
}

footer .follow {
  margin-top: 20px;
}

footer .follow i {
  color: #465b52;
  padding-right: 4px;
  cursor: pointer;
}

footer h4 {
  font-size: 14px;
  padding-bottom: 20px;
}

footer p {
  font-size: 13px;
  margin: 0 0 8px 0;
}

footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

footer a {
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 10px;
  color: #222;
}

footer .install .row img {
  border: 1px solid #0388fc;
  border-radius: 6px;
}

footer .install img {
  margin: 10px 0 15px 0;
}

footer .copyright {
  width: 100%;
  text-align: center;
}

footer .follow i:hover,
footer a:hover {
  color: #0388fc;
}

/* Other Versions */

@media (max-width: 1600px) {
  .about-us .about-img img {
    margin-top: 100px;
    width: 500px;
    height: 600px;
  }

  .social-info {
    margin-left: 33vw;
  }
}

@media (max-width: 1500px) {
  .about-us .about-img img {
    width: 500px;
  }

  .about-us {
    padding: 0 150px;
  }

  .social-info {
    margin-left: 25vw;
  }
}

@media (max-width: 1340px) {
  .social-info {
    margin-left: 400px;
  }

  .about-us {
    padding: 0 100px;
  }

  .about-us .about-img img {
    height: 700px;
  }

  .social-info {
    margin-left: 12vw;
  }
}

@media (max-width: 1136px) {
  .social-info {
    margin-left: 200px;
  }

  .about-us {
    padding: 0 30px;
  }

  .about-us .about-img img {
    margin-top: 100px;
  }

  .social-info {
    display: none;
  }

  .partners .owl-carousel .item img {
    width: 100%;
  }
}

@media (max-width: 936px) {
  #logo {
    height: 60px;
  }

  .about-us {
    display: block;
  }

  .about-us .about-text {
    max-width: 100%;
  }

  #contact-details {
    display: block;
  }

  #contact-details .map {
    margin-top: 100px;
  }

  .about-img img {
    height: 500px !important;
  }
}

@media (max-width: 799px) {
  #navbar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    top: -15px;
    right: -110%;
    width: 100%;
    height: 100%;
    background: #e3e6f3;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    padding: 80px 0 0 10px;
  }
  #navbar li {
    margin-bottom: 25px;
  }
  #navbar.active {
    right: 0;
  }
  #mobile {
    display: flex;
  }
  #mobile i {
    color: #1a1a1a;
    font-size: 24px;
    padding-left: 20px;
  }
  #bar {
    display: initial;
  }
  #close {
    display: initial;
    font-size: 24px;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #222;
  }

  #contact-details .map,
  #contact-details .details {
    width: 80%;
  }

  .tracking .search-input {
    width: 500px;
  }
}

@media (max-width: 610px) {
  .mobile-none {
    display: none;
  }

  .contact-info {
    margin-left: 20px;
  }

  .about-us .about-img img {
    width: 350px;
  }

  #contact-details .map,
  #contact-details .details {
    width: 100%;
  }

  .tracking h1 {
    font-size: 40px;
  }

  .tracking .search-input {
    width: 300px;
  }
}

@media (max-width: 477px) {
  h2 {
    font-size: 32px;
  }
  #header {
    padding: 10px 30px;
  }
  .info p {
    padding: 0 30px;
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .contact-info {
    margin-left: 0;
  }

  .services {
    gap: 20px;
  }

  .services .service {
    height: 200px;
  }

  .services .service h2 {
    font-size: 20px;
  }

  .section-p1 {
    padding: 20px;
  }

  .tracking .search {
    gap: 10px !important;
  }

  .tracking h1 {
    font-size: 40px;
  }

  .tracking .search-input {
    width: 270px;
  }

  .tracking .search-button {
    padding: 13px 10px;
  }
}

@media (max-width: 425px) {
  .mobile-block {
    display: block;
  }

  .swiper {
    display: none !important;
  }

  .swiper-mobile {
    height: 90vh;
    margin-top: -50px;
  }
}

@media (max-width: 375px) {
  .services {
    display: block;
  }

  .services .service {
    width: 100vw;
    margin-top: 50px;
  }

  .about-us .about-img img {
    width: 300px;
  }

  .tracking .search-input {
    width: 200px;
  }
}

@media (max-width: 350px) {
  .about-us .about-img img {
    width: 250px;
  }
}
