:root {
  --white-color: #ffffff;
  --primary-color: #2dbb2d;
  --secondary-color: #3B7B35;
  --section-bg-color: #f9f9f9;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #e9eaeb;
  --featured-border-color: #727aab;

  --body-font-family: 'DM Sans', sans-serif;

  --h1-font-size: 62px;
  --h2-font-size: 42px;
  --h3-font-size: 36px;
  --h4-font-size: 32px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --menu-font-size: 12px;
  --copyright-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

body {
  background: var(--white-color);
  font-family: var(--body-font-family);
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -3px;
}

h2 {
  font-size: var(--h2-font-size);
  color: var(--secondary-color);
  letter-spacing: -3px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

::selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.section-title-wrap {
  background: var(--secondary-color);
  border-radius: var(--border-radius-small);
  padding: 10px 30px;
}


/*---------------------------------------
  AVATAR IMAGE               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 160px;
  height: 160px;
  object-fit: cover;
}

.avatar-image-large {
  position: relative;
  width: 90.4px;
  height: 90.4px;
}


/*---------------------------------------
  PRE LOADER               
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 var(--white-color);
}

.spinner {
  border: 1px solid transparent;
  border-radius: var(--border-radius-small);
  position: relative;
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  border-top-color: var(--white-color);
  animation: spinner .9s linear infinite;
}

@-webkit-@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/
.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  color: var(--dark-color);
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
}

.is-sticky .navbar-icon {
  background: var(--secondary-color);
  color: var(--white-color);
}

.form-check-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn,
.navbar .custom-btn {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar .custom-btn {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: var(--white-color);
  color: var(--white-color);
  padding: 6px 18px;
  font-size: 14px;
}

.navbar .custom-btn:hover {
  background: var(--white-color);
  border-color: transparent;
  color: var(--secondary-color);
}

.custom-btn {
  background: var(--secondary-color);
  border-radius: 85px;
  color: #3B7B35;
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
}

.custom-btn:hover {
  background: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--p-color);
}

.custom-border-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.custom-link {
  background-color: #ffff;
  border: 1px solid #3B7B35;
}

.custom-link:hover {
  background-color: var(--secondary-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: relative;
  z-index: 222;
  height: auto !important;
}

.is-sticky,
.is-sticky .navbar .container {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
}

.is-sticky .navbar-brand,
.is-sticky .navbar-brand:hover {
  color: var(--dark-color);
}

.is-sticky .navbar-nav .nav-link {
  color: var(--p-color);
}

.is-sticky .navbar .custom-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.is-sticky .navbar .custom-btn:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.navbar {
  background: transparent;
  position: absolute;
  z-index: 9;
  right: 0;
  left: 0;
  transition: all 0.3s;
  padding-top: 15px;
  padding-bottom: 0;
}

.navbar .container {
  border-radius: var(--border-radius-small);
  padding: 10px 25px;
}

.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
  margin-right: 20px;
  margin-left: 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--section-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link::after {
  content: "";
  background: transparent;
  position: absolute;
  bottom: 6px;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.navbar-nav 

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  background: #FFF;
}

.sticky-wrapper.is-sticky .navbar-nav .nav-link.active::after, .sticky-wrapper.is-sticky .navbar-nav .nav-link:hover::after {
  background: var(--secondary-color);
}

.navbar-nav .nav-link.active {
  /*  color: var(--white-color);*/
}

.navbar-nav .nav-link:hover {
/*  color: var(--secondary-color);*/
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  background: #ffff;
  position: relative;
  overflow: hidden;
  padding-top: 330px;
  padding-bottom: 330px;
}

@media screen and (min-width: 991px) {
  .hero {
    height: 60vh;
  }
}

.hero-title,
.hero h2 {
  background: #3B7B35;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  border-radius: var(--border-radius-large);
  display: inline-block;
  padding: 8px 24px;
}

.hero-title {
  font-size: 41px;
}

.hero h2 {
  font-size: 38px;
}

.hero-text {
  position: relative;
  z-index: 22;
  top: 70px;
  color: #fff;
}

.hero-text h2 {
  color: #fff;
}

/*.hero-image-wrap {
  background: var(--white-color);
  border-radius: 100%;
  width: 350px;
  height: 350px;
  position: absolute;
  z-index: 22;
  top: -50px;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
}
*/
.hero-image {
  position: absolute;
  z-index: 22;
  top: -133px;
  width: 100%;
  min-width: 550px;
  left: -35px;
}

.hero svg {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
  pointer-events: none;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.profile-thumb {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.profile-title {
  border-bottom: 1px solid var(--border-color);
  padding: 15px 30px;
}

.profile-small-title {
  border-right: 1px solid var(--border-color);
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  min-width: 140px;
  margin-right: 10px;
  padding: 13px 30px;
  display: inline-block;
}

.profile-body p {
  margin-bottom: 0;
}

.profile-body p:nth-of-type(even) {
  background: var(--white-color);
}

.about-image {
  border-radius: var(--border-radius-medium);
}

.about-thumb {
  padding-right: 20px;
  padding-left: 20px;
}


/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-numbers {
  font-size: var(--h1-font-size);
  line-height: normal;
  display: block;
}

.featured-text {
  color: var(--secondary-color);
}

.featured-border-bottom {
  border-bottom: 1px solid var(--border-color);
}

.featured-border-start {
  border-left: 1px solid var(--border-color);
}


/*---------------------------------------
  CLIENTS              
-----------------------------------------*/

.clients-item-height {
  height: 120px;
  padding: 10px 0px;
}

.clients-image {
  display: block;
  max-width: 100px;
  margin: auto;
  transition: all ease 0.2s;
}

.clients-image:hover {
  transform: scale(1.3);
}


/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services,
.featured {
  background: var(--section-bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.services-thumb {
  background: var(--white-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 40px 40px 240px 40px;
  transition: all 0.5s;
}

.services-thumb-up {
  position: relative;
  bottom: 50px;
  margin-bottom: -50px;
}

.services-thumb {
  border: 2px solid var(--secondary-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.services-thumb .services-icon-wrap {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.services-icon-wrap {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 55%;
  transform: rotate(-35deg) translateY(55px);
  transition: all ease 0.5s;
}

.services-icon {
  font-size: 90px;
  position: relative;
  bottom: 15px;
  transform: rotate(35deg);
}

.services-thumb .services-price-wrap {
  background: var(--secondary-color);
}

.services-thumb .services-price-overlay {
  background: var(--primary-color);
}

.services-price-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 6px 20px 6px 15px;
  transition: all ease 0.5s;
}

.services-price-text {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-bold);
}

.services-price-overlay {
  background: var(--secondary-color);
  border-bottom-left-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
}


/*---------------------------------------
  PROJECTS              
-----------------------------------------*/
.projects-thumb {
  background: var(--section-bg-color);
  border: 2px solid var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 40px;
  transition: all ease 0.5s;
}

.projects-thumb:hover {
  border-color: var(--secondary-color);
}

.projects-thumb:hover .projects-image,
.projects-thumb:focus .projects-image {
  transform: rotate(0) translateY(0);
}

.projects-thumb .popup-image {
  display: block;
  width: 100%;
  height: 100%;
}

.projects-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
  transform: rotate(10deg) translateY(80px);
  transition: all ease 0.5s;
}

.projects-title {
  margin-bottom: 20px;
}

.projects-tag {
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 5px;
}


/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact {
  background: var(--section-bg-color);
}

.contact-info {
  background: var(--white-color);
  border-top-right-radius: var(--border-radius-small);
  border-bottom-right-radius: var(--border-radius-small);
  padding: 60px 30px 30px 30px;
  height: 100%;
}

.contact-info-border-start {
  border-right: 1px solid var(--border-color);
  border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
}

.contact-form {
  margin-left: 10px;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  background: var(--white-color);
  box-shadow: none;
  border: 2px solid var(--border-color);
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.form-floating>label {
  color: var(--p-color);
}

.form-check-inline {
  vertical-align: middle;
  width: 100%;
  position: relative;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 24px;
  padding: 0;
}

.custom-form .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-label-text {
  color: var(--p-color);
  display: block;
  font-size: 14px;
  margin-top: 5px;
}

.form-check-input[type=checkbox] {
  background: var(--white-color);
  border: 2px solid var(--border-color);
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 40px 50px;
}

.form-check-input:checked[type=checkbox] {
  background-image: none;
}

.form-check-input:hover,
.form-check-input:checked {
  background-color: transparent;
  border-color: var(--secondary-color);
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: transparent;
  border-color: var(--secondary-color);
}

.custom-form .form-floating textarea {
  height: 150px;
}

.custom-form button[type="submit"] {
  background: var(--secondary-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--primary-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.site-footer-title {
  font-size: var(--menu-font-size);
  color: var(--dark-color);
  text-transform: uppercase;
}

.copyright-text-wrap p,
.copyright-text {
  font-size: var(--copyright-font-size);
}

.copyright-text {
  border-right: 1px solid var(--border-color);
  padding-right: 25px;
  margin-right: 20px;
}

.copyright-text-wrap a {
  font-weight: var(--font-weight-bold);
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.footer-menu-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-medium);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 6px 14px;
  min-width: 70px;
}

.footer-menu-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-large);
  font-size: var(--copyright-font-size);
  color: var(--dark-color);
  display: inline-block;
  vertical-align: top;
  margin: 2px 2px 5px 2px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.social-icon-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .hero {
    padding-top: 380px;
    padding-bottom: 380px;
  }

  /*  .hero-image-wrap {
    top: -50px;
    width: 400px;
    height: 400px;
  }*/

  .hero-image {
    min-width: 650px;
  }

  .hero-title,
  .hero h2 {
    font-size: var(--h2-font-size);
  }
}

@media screen and (max-width: 991px) {
  
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 0px;
    padding-bottom: 40px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }

  .navbar .container {
    background: var(--white-color);
  }

  .navbar-brand,
  .navbar-brand:hover {
    color: var(--dark-color);
    line-height: 1;
  }

  .logoOwnExpress {
    max-width: 200px;
  }

  .navbar-icon {
    background: var(--secondary-color);
    color: var(--white-color);
    width: 44px;
    height: 44px;
    line-height: 44px;
    padding: 10px 13px;

  }

  .navbar .custom-btn {
    display: none;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
  }

  .navbar-toggler .navbar-toggler-icon,
  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
    background: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 0;
    /*display: none;*/
  }
  .login-remove{
    display: none;
  }

  .navbar-nav .nav-link {
    color: var(--p-color);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero {
    padding-top: 200px;
    padding-bottom: 306px;
  }

  .hero-text {
    top: 0;
    margin-bottom: 120px;
  }

  .about-thumb {
    padding-right: 0;
    padding-left: 0;
  }

  .about-numbers {
    font-size: 42px;
  }

  .services-thumb-up {
    bottom: 0;
    margin-bottom: 32px;
  }

  .services-thumb {
    margin-bottom: 32px;
    padding-bottom: 270px;
  }

  .services-icon-wrap {
    width: 45%;
    height: 60%;
  }

  .services .col-lg-10 .row .col-lg-6:last-child,
  .projects .col-lg-4:last-child {
    margin-bottom: 0;
  }

  .projects-thumb {
    margin-top: 0;
    margin-bottom: 32px;
  }

  .contact-info {
    border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
    padding: 40px 30px;
  }

  .contact-info-border-start {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
  }
  .login-phone{
    gap: 10px;
  }
  .trackingInputSection{
    display: inline-block;
  }



}

@media screen and (max-width: 575px) {
  .navbar .container {
    margin-right: 12px;
    margin-left: 12px;
  }
  
  .trackInput{
    width: 100%;
  }
  .trackButtonDiv{
    width: 100%;
  }
  a.custom-btn.track_btn.btn.custom-link{
    padding: 12px 0px;
  }
 /* .hero-title {
    font-size: 39px;
}
.hero h2 {
    font-size: 33px;
}*/
}
@media (min-width: 576px) and (max-width: 767.98px) {
/*  .hero-title {
    font-size: 39px;
}
.hero h2 {
    font-size: 33px;
}*/
}
@media (max-width: 575.98px) {
/* .hero-title {
            font-size: 22px;
        letter-spacing: 0px;
}*/
/*.trackButtonDiv{
  width: 33%;
}*/
/*.hero h2 {
           font-size: 16px;
        letter-spacing: 0.1px;
}*/
          .heroSVG {
        display: none;
    }
    .hero-image{
      left: 0px;
      top: -100px;
    }
    .paddingCards{
      padding: 5px;
    }
    .grow-with-us{
      text-align: right;
    }
    .grow-with-us a{
      padding: 15px 30px;
    }

}
@media screen (max-width: 367px){
/*   .hero-title {
      font-size: 16px;
      letter-spacing: 0.1px;
}
.hero h2 {
    font-size: 28px;
}*/
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: 13px;
    padding: 6px 12px;
  }

  .navbar-icon {
    font-size: var(--copyright-font-size);
    width: 35.5px;
    height: 35.5px;
    line-height: 35.5px;
  }

  /*
  .hero-image-wrap {
    width: 300px;
    height: 300px;
  }
*/
  .hero-image {
    min-width: inherit;
  }


}


/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) { ... }

/*// Large devices (desktops, 992px and up)*/
@media (min-width: 992px) { ... }

.tracking_input_section {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.tracking_input_section input {
  padding: 10px;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.tracking_input_section button {
  padding: 10px 20px;
  background: #00FFAB;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-weight: bold;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  overflow: auto;
  padding: 20px;
}

.modal-content {
  background: white;
  color: #333;
  border-radius: 10px;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: fadeIn 0.5s;
  text-align: left !important;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #3B7B35;
  background: white;
}

.modal-header h2 {
  color: #3B7B35;
}

.close-btn {
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  color: #3B7B35;
}

.modal-body {
  padding: 20px;
}

.modal-body h3 {
  color: #3B7B35;
}

.modal-body p strong {
  display: inline-block;
  width: 167px;
}

.modal-body hr {
  border-color: #3B7B35;
  margin: 20px 0;
}

/* Custom Timeline Styles */
.container_tracking {
    width: 100%;
    margin: 0 auto;
    position: relative;
    margin-top: 0;
    border-radius: 0;
    padding: 20px;
}

/* Styling the scrollbar for the container_tracking */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #3B7B35;
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: #2d5d29;
}

.rb-container_tracking {
  font-family: "DM Sans", sans-serif;
  width: 90%;
  margin: 20px auto;
  position: relative;
}

.rb-container_tracking ul.rb {
  margin: 2.5em 0;
  padding: 0;
  display: inline-block;
  width: 100%;
}

.rb-container_tracking ul.rb li {
  list-style: none;
  margin: auto;
  margin-left: 1em;
  min-height: 50px;
  border-left: 1px dashed #3B7B35;
  padding: 0 0 30px 30px;
  position: relative;
}

.rb-container_tracking ul.rb li:last-child {
  border-left: 0;
  padding-bottom: 0;
}

/* New icon node styling */
.status-node {
  position: absolute;
  left: -18px;
  top: -5px;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #3B7B35;
}

.status-node i {
  font-size: 18px;
  color: #3B7B35;
}

.rb-container_tracking ul.rb li:hover .status-node {
  border-color: #3B7B35;
  background: #3B7B35;
  transition: all 500ms ease-in-out;
}

.rb-container_tracking ul.rb li:hover .status-node i {
  color: white;
  transition: all 500ms ease-in-out;
}

ul.rb li .timestamp {
  color: #3B7B35;
  position: relative;
  width: auto;
  font-size: 12px;
  margin-top: 8px;
}

.item-title {
  color: #333;
  margin-bottom: 5px;
  font-weight: bold;
}

.location {
  color: #666;
  font-size: 13px;
  margin-top: 3px;
}

input::placeholder {
  color: #3B7B35;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


.trackInput {
  /* height: 100%; */
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.material-textfield {
  width: 100%;
  position: relative;
}

.material-textfield label {
  position: absolute;
  font-size: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  color: gray;
  padding: 0 0.3rem;
  margin: 0 0.5rem;
  transition: .1s ease-out;
  transform-origin: left top;
  pointer-events: none;
}

.material-textfield input {
  width: 100%;
  font-size: 1rem;
  outline: none;
  border: 1px solid gray;
  border-radius: 5px;
  padding: 1rem 0.7rem;
  color: gray;
  transition: 0.1s ease-out;
}

.material-textfield input:focus {
  border-color: #3B7B35;
  background: transparent;
}

.material-textfield input:focus+label {
  color: #3B7B35;
  top: 0;
  transform: translateY(-42%) scale(.9);
}

.material-textfield input:not(:placeholder-shown)+label {
  top: 0;
  transform: translateY(-42%) scale(.9);
}

.tracking_section {
  justify-content: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  /* border: 1px solid #3B7B35; */
  border-radius: 8px;
  padding: 37px;
}

.tracking_input_section {
  background: var(--white-color);
  /* box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%); */
  border-radius: 10px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 20px;
  max-width: 830px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
}

.track_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  color: #fff;
  background: #3B7B35;
}

.tracking_heading {
  font-weight: 500;
}

.tracking {
  padding-bottom: 35px;
}

.client_images_size{
  max-width: 150px;
}


li.rb-item .description {
    font-weight: bold;
    font-size: 11px;
    border: 1px solid;
    max-width: max-content;
    padding: 2px 5px;
}

.tracking_results {
  display: none;
  background: white;
  color: #333;
  border-radius: 10px;
  width: 90%;
  max-width: 900px;
  margin: 30px auto;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  animation: fadeIn 0.5s;
}


.tracking-page-section {
  position: relative;
    background: var(--secondary-color);
    padding-top: 150px;
}

.tracking-page-section .tracking_heading h1 {
    color: #FFF;
    margin-bottom: 20px;
}

.tracking-page-tracking-field {
  position: relative;
}

.tracking-page-tracking-field .tracking_input_section {
    background: var(--white-color);
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 20px;
    max-width: 830px;
    margin: 0 auto;
    position: absolute;
    top: -36px;
    left: 0;
    right: 0;
}

.tracking-page-tracking-field .material-textfield label {
      font-size: 14px;
}

section.tracking-page-result {
    padding: 100px 0;
}


section.tracking-page-result .tracking_results {
    display: none;
    background: white;
    color: #333;
    border-radius: 10px;
    width: 90%;
    max-width: 810px;
    margin: 30px auto;
    box-shadow: none;
    animation: fadeIn 0.5s;
}

#trackingResults {
  scroll-margin-top: 300px;  
}

.ci-wrap {
    display: flex;
    gap: 10px;
    padding: 5px 0;
    justify-content: space-between;
}

.customer-information-container h3 {
    font-size: 22px;
    margin-bottom: 25px;
    letter-spacing: 0;
}

.status-history-container h3 {
    font-size: 22px;
    letter-spacing: 0;
}

section.tracking-page-result .rb-container_tracking {
    font-family: "DM Sans", sans-serif;
    width: 100%;
    margin: 0;
    position: relative;
}

section.tracking-page-result .container_tracking {
    padding: 0;
}

.ci-value {
    font-weight: 500;
}

#currentStatus {
    padding: 5px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

#current-transit-station {
    display: inline-flex;
    font-size: 11px;
    background: #f6f6f6;
    padding: 4px;
    border-radius: 4px;
    line-height: 1;
}

.status-unbooked {
  background-color: #e0e0e0;
  color: #616161;
}

/* Booked Status */
.status-booked {
  background-color: #bbdefb;
  color: #1565c0;
}

/* Arrived Status */
.status-arrived {
  background-color: #c8e6c9;
  color: #2e7d32;
}

/* Preparing Transit (pbag) */
.status-pbag, .status-return-pbag {
  background-color: #ffecb3;
  color: #ff8f00;
}

/* In Transit */
.status-in-transit {
  background-color: #b3e5fc;
  color: #0277bd;
}

/* Transit Received */
.status-transit-received {
  background-color: #b2ebf2;
  color: #00838f;
}

/* Ready for Delivery (de-manifested) */
.status-de-manifested {
  background-color: #d1c4e9;
  color: #4527a0;
}

/* Return de-manifested */
.status-return-de-manifested {
  background-color: #f8bbd0;
  color: #ad1457;
}

/* Out for Delivery (en-route) */
.status-en-route {
  background-color: #c5cae9;
  color: #283593;
}

/* Return en-route */
.status-return-en-route {
  background-color: #ffcdd2;
  color: #b71c1c;
}

/* Delivered */
.status-delivered {
  background-color: #a5d6a7;
  color: #1b5e20;
  font-weight: 600;
}

/* Verifying Reason (debrief) */
.status-debrief {
  background-color: #e1bee7;
  color: #6a1b9a;
}

/* Reason */
.status-reason {
  background-color: #ffcc80;
  color: #ef6c00;
}

/* Reattempt */
.status-reattempt {
  background-color: #b39ddb;
  color: #4527a0;
}

/* Returned */
.status-returned {
  background-color: #ef9a9a;
  color: #b71c1c;
}

/* Return Requested */
.status-return_requested {
  background-color: #ffab91;
  color: #d84315;
}

/* Hold */
.status-hold {
  background-color: #ffe082;
  color: #ff6f00;
}

/* Cancelled */
.status-cancelled {
  background-color: #e57373;
  color: #b71c1c;
}

.contact-navbar{
    gap: 15px;
}
  
.loginMobile{
  display: none;
}
@media screen and (max-width: 991px) {
  .tracking_input_section{
    flex-direction: column;
  }
  .loginMobile{
    display: block;

  }
  .loginMobile .nav-link{
    color: #3B7B35;
    font-weight: bold;
  }
}

@media screen and (max-width: 575px) {
    .trackInput {
        width: 100%;
    }
}


/*whatsapp*/

.floatWhatsapp{
   position:fixed;
   width:85px;
   height:60px;
   bottom:40px;
   right:40px;
   /*background-color:#25d366;*/
   color:#FFF;
   /*border-radius:50px;*/
   text-align:center;
  font-size:30px;
   /*box-shadow: 2px 2px 3px #999;*/
  z-index:100;
}

.my-floatfloatWhatsapp{
   margin-top:0px;
}
.my-floatfloatWhatsapp svg{
    width: 92px;
    height: 100px;
    
    padding-bottom: 35px;
}
h3.pt-2.mb-3 {
    padding: 5px;
}

.about-thumb p{
  padding: 5px;
}
h3.text-center.mb-5{
  padding-top: 50px;
}








@media screen and (max-width: 575px) {
.floatWhatsapp{
  right: 4px;
}
    .tracking-page-tracking-field .tracking_input_section {
    border: 0px;
    box-shadow: none;
    border-radius: 0px;
    top: 20px;
  }
  .buttonTrackNow{
    width: 100%;
  }
  section.tracking-page-result .tracking_results{
    margin-top: 92px;
  }
  .tracking_heading h2{
    font-size: 35px;
  }
}

.rates-section {
            min-height: 100vh;
           
        }
  .rates-container {
            max-width: 700px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-top: -62px;
        }

        .rates-header {
            background: linear-gradient(135deg, #3B7B35 0%, #2d5c29 100%);
            color: white;
            padding: 30px;
            text-align: center;
        }

        .rates-header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .rates-header p {
            font-size: 1.1em;
            opacity: 0.9;
            color: #fff;
        }

        .form-rates-container {
            padding: 40px;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .rates-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
            font-size: 1.1em;
        }

        .rates-select,  .rates-input[type="text"], .rates-input[type="number"] {
            width: 100%;
            padding: 15px;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: white;
        }

        .rates-select:focus, .rates-input:focus {
            outline: none;
            border-color: #3B7B35;
            box-shadow: 0 0 0 3px rgba(59, 123, 53, 0.1);
            transform: translateY(-2px);
        }

        .autocomplete-rates-container {
            position: relative;
        }

        .autocomplete-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 2px solid #e1e5e9;
            border-top: none;
            border-radius: 0 0 12px 12px;
            max-height: 200px;
            overflow-y: auto;
            z-index: 1000;
            display: none;
        }

        .autocomplete-suggestion {
            padding: 12px 15px;
            cursor: pointer;
            border-bottom: 1px solid #f0f0f0;
            transition: background-color 0.2s ease;
        }

        .autocomplete-suggestion:hover {
            background-color: #f8f9fa;
        }

        .autocomplete-suggestion.selected {
            background-color: #3B7B35;
            color: white;
        }

        .calculate-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #3B7B35 0%, #2d5c29 100%);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .calculate-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(59, 123, 53, 0.3);
        }

        .calculate-btn:active {
            transform: translateY(-1px);
        }

        .results {
            margin-top: 30px;
            padding: 30px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 16px;
            border: 2px solid #e1e5e9;
            display: none;
        }

        .results h3 {
            color: #333;
            margin-bottom: 20px;
            font-size: 1.5em;
            text-align: center;
        }

        .rate-table {
            width: 100%;
            border-collapse: collapse;
        }

        .rate-table th, .rate-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #dee2e6;
        }

        .rate-table th {
            background-color: #3B7B35;
            color: white;
            font-weight: 600;
        }

        .rate-table tr:nth-child(even) {
            background-color: rgba(59, 123, 53, 0.05);
        }

        .rate-table tr:last-child {
            border-bottom: 3px solid #3B7B35;
            font-weight: 700;
            font-size: 1.1em;
        }

        .rate-table td:last-child {
            text-align: right;
            font-weight: 600;
        }

        .error {
            color: #dc3545;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }

        @media (max-width: 768px) {
            .rates-container {
                margin: 10px;
            }
            
            .rates-header h1 {
                font-size: 2em;
            }
            
            .form-rates-container {
                padding: 20px;
            }
        }



               /* Modal Overlay */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            padding: 20px;
        }

        .modal-overlay.active {
            display: flex;
        }

        .form-container {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 600px;
            max-height: 95vh;
            overflow-y: auto;
            position: relative;
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(-50px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* Close Button */
        .close-button {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: #999;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close-button:hover {
            background: #f0f0f0;
            color: #666;
        }

        .form-title {
            font-size: 32px;
            font-weight: 600;
            color: #666;
            margin-bottom: 40px;
            text-align: left;
            padding-right: 50px;
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            flex: 1;
            margin-bottom: 20px;
        }

        .form-group.full-width {
            width: 100%;
        }

        .form-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            background: #f8f9fa;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input:focus {
            background: transparent;
            box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
        }

        .form-input::placeholder {
            color: #999;
        }

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

        .gender-label {
            font-size: 16px;
            font-weight: 500;
            color: #666;
            margin-bottom: 15px;
            display: block;
        }

        .radio-group {
            display: flex;
            gap: 30px;
        }

        .radio-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .radio-input {
            width: 20px;
            height: 20px;
            border: 2px solid #e0e0e0;
            border-radius: 50%;
            position: relative;
            cursor: pointer;
            background: white;
        }

        .radio-input:checked {
            border-color: #6c5ce7;
            background: #6c5ce7;
        }

        .radio-input:checked::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: white;
        }

        .radio-label {
            font-size: 16px;
            color: #666;
            cursor: pointer;
        }

       
        
        .submit-btn {
            background: #3B7B35;
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            background: transparent;
            border: 1px solid #3e600a;
            color: #3e600a;
            
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .radio-group {
                flex-direction: column;
                gap: 15px;
            }
            
            .form-container {
                padding: 30px 20px;
                margin: 10px;
            }

            .form-title {
                font-size: 24px;
                padding-right: 40px;
            }
        }


  .rates-select-weight {
  width: 100%;
  font-size: 1rem;
  outline: none;
  border: 1px solid gray;
  border-radius: 5px;
  padding: 1rem 0.7rem;
  color: gray;
  transition: 0.1s ease-out;
  background: transparent;
}

.rates-select-weight:focus {
  border-color: #3B7B35;
}


.rates-select-weight option{
  background: transparent;
}
.rates-select-weight option:hover{
  background: #3B7B35;
  color: #fff;
}
.rates-select-weight option:checked{
  background: #3B7B35;
  color: #fff;
}
.material-textfield input:form-control{
  background: transparent;
  
}
.select-weight{
  position: relative;
}
.select-weight label {
  position: absolute;
  font-size: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  color: gray;
  padding: 0 0.3rem;
  margin: 0 0.5rem;
  transition: .1s ease-out;
  transform-origin: left top;
  pointer-events: none;
}
.material-textfield select {
  width: 100%;
  font-size: 1rem;
  outline: none;
  border: 1px solid gray;
  border-radius: 5px;
  padding: 1rem 0.7rem;
  color: gray;
  transition: 0.1s ease-out;
}

.material-textfield select:focus {
  border-color: #3B7B35;
  background: transparent;
}

.material-textfield select:focus+label {
  color: #3B7B35;
  top: 0;
  transform: translateY(-42%) scale(.9);
}

.material-textfield select:not(:placeholder-shown)+label {
  top: 0;
  transform: translateY(-42%) scale(.9);
}
