/* Tracking Form */
.tracking-form-wrapper {
  margin: 20px auto 40px; /* pehle 40px top, 80px bottom tha */
  position: relative;
  z-index: 5;
}

.tracking-box {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.tracking-box h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
  color: #333;
}

.tracking-form {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.tracking-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.tracking-form button {
  background: black;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.tracking-form button:hover {
  opacity: 0.6;
}


/* Slider height short karne ke liye */
.cs-hero-slider-wrap {
  height: 70vh; /* default full screen hota hai 100vh, ise 70% viewport height kar diya */
  min-height: 500px; /* taake mobile/tablet pe bhi balance ho */
  display: flex;
  align-items: center;
}

.cs-hero-slide-content {
  display: flex;
  align-items: center;
  height: 100%;
}


/* Hero Section */
.cs-hero-slider-wrap {
  height: 70vh; /* hero height */
  min-height: 500px;
  display: flex;
  align-items: center;
  padding-bottom: 40px; /* hero ke neeche ka gap */
}

/* Import/Export Section */
#import-export {
  padding: 80px 0; /* consistent vertical spacing */
}

#import-export h2 {
  margin-bottom: 15px;
  font-size: 32px;
  font-weight: 700;
}

#import-export p {
  font-size: 16px;
  color: #666;
}


@media screen and (min-width: 480px) {
    .login{
        display: none;
    }
}
@media screen and (max-width: 480px) {
  .cs-hero-slider-wrap{
      display: none;
  }
  .tracking-form-wrapper{
      margin-top: 150px;
  }
  
  .cs_site_header{
      box-shadow: 0px 5px 12px 0px rgba(0,0,0,0.75);
  }
}


