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

html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

button.normal {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}

button.white {
  background: transparent;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  outline: none;
  border: 1px solid #fff;
  cursor: pointer;
  transition: 0.2 ease;
}

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

.section-m1 {
  margin: 40px 0;
}

body {
  width: 100%;
}

.header,
.description {
  text-align: center;
}

/* Navigation Bar */

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

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
  margin-top: 20px;
  height: 100px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  border-radius: 30px;
}

#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;
}

/* Hero Section */

#hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 80px;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4)
    ),
    url("images/hero.jpg");
  width: 100%;
  height: 101vh;
  background-size: cover;
  background-position: top 25% right 0;
  margin-top: -123px;
}

#hero h4 {
  padding-bottom: 15px;
}

#hero h2,
#hero p {
  color: #fff;
}

#hero h4 {
  font-size: 40px;
  color: #37b6fe;
  font-weight: bold;
}

#hero h1 {
  color: #37b6fe;
}

/* Products */

.products {
  margin-top: 60px;
}

.services {
  margin-top: 50px;
  padding: 0 250px;
}

.services .service {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  box-shadow: 0px 0px 32px 0px rgba(16, 37, 65, 0.1);
  border-radius: 10px;
  text-align: center;
  margin-top: 30px;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services .service:hover {
  transform: scale(1.1);
}

.service .icon i {
  font-size: 50px;
  color: #414f5a;
  padding-top: 45px;
  transition: 0.2s;
}

.service h2 {
  font-size: 55px;
  color: #fff;
}

/* Banner */

#banner {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.3)
    ),
    url("images/banner.jpg");
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#banner h4 {
  color: #fff;
  font-size: 16px;
}

#banner h2 {
  color: #fff;
  font-size: 30px;
  padding: 10px 0;
}

#banner h2 span {
  color: #0388fc;
}

#banner button:hover {
  background: #0388fc;
  color: #fff;
}

/* 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;
  margin-top: 20px;
}

#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%;
}

/* Footer */

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #414f5a;
}

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

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

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

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

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

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: #fff;
}

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

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

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

footer .copyright p {
  color: #fff;
}

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

/* 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: #0a7ce0;
}

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

.tracking-table {
  background-color: #f2f2f2;
  padding: 20px 0;
  overflow-x: auto;
  border-radius: 30px;
  transition: 0.5s;
}

.tracking-table:hover {
  background-color: #0388fc;
}

.tracking-table:hover th,
.tracking-table:hover h3,
.tracking-table:hover td {
  color: #fff;
}

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

.tracking-table td,
.tracking-table th {
  text-align: center;
  padding: 5px 10px;
}

.tracking-table th {
  color: #0388fc;
}

.tracking-table h3 {
  font-weight: bolder;
  color: #0388fc;
  text-align: center;
}

/* Start Media Query */

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

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

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

@media (max-width: 1440px) {
  .partners .item img {
    width: 300px !important;
  }
}

@media (max-width: 1340px) {
  .about-us {
    padding: 0 100px;
  }

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

@media (max-width: 1136px) {
  .about-us {
    padding: 0 30px;
  }

  #hero img {
    margin-top: 50px;
    height: 300px;
  }

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

@media (max-width: 936px) {
  .about-us {
    display: block;
  }

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

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

  #contact-details {
    display: block;
  }

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

  .services {
    padding: 0 150px;
  }

  .products {
    margin-top: 100px;
  }

  .partners .item img {
    width: 250px !important;
  }
}

@media (max-width: 799px) {
  .section-p1 {
    padding: 40px;
  }
  #navbar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    top: 0px;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: #fff;
    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;
  }
  #lg-bag,
  #lg-search {
    display: none;
  }
  #hero {
    background-position: top 30% right 30%;
  }

  #hero h2 {
    font-size: 30px;
  }

  #product1 .pro-container {
    justify-content: center;
  }
  #product1 .pro {
    margin: 15px;
  }
  #banner {
    height: 20vh;
  }

  .services {
    gap: 20px;
  }

  .products {
    margin-top: -40px;
  }

  .services .service {
    height: 200px;
  }

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

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

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

@media (max-width: 610px) {
  .contact-info {
    margin-left: 20px;
  }

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

  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 32px;
  }
  #video {
    height: 600px;
    object-fit: cover;
  }

  .services {
    margin-top: 50px;
    padding: 0 50px;
  }

  .products {
    margin-top: 70px;
  }

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

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

@media (max-width: 477px) {
  .section-p1 {
    padding: 20px;
  }
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 32px;
  }
  #header {
    padding: 10px 30px;
  }
  #hero {
    padding: 0 20px;
    background-position: 55%;
    height: 80vh;
  }
  #product1 .pro {
    width: 100%;
  }
  #banner {
    height: 40vh;
  }
  footer .copyright {
    text-align: start;
  }

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

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

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

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

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

@media (max-width: 460px) {
  .products {
    margin-top: 100px;
  }

  .services {
    padding: 0 20px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 25px;
  }

  #header .logo {
    width: 100px;
  }

  #hero h2 {
    font-size: 25px;
  }

  #hero h4 {
    font-size: 23px;
  }
}

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

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

  #hero h2 {
    font-size: 18px;
  }

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

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

  #trackingh1 {
    font-size: 25px;
  }
}
