* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
}


body {
  font-family: 'Inter', sans-serif;
  color: #374151;
  /* Default text color: gray-700 */
  overflow-x: hidden;
  /* Prevent horizontal scrollbars from animations */
}

.logo {
  border: #0D1B2A 1px solid;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 5px;
  font-weight: 700;
  font-size: 20px;
  border-radius: 30px;
  cursor: pointer;
}

.logo img {
  width: 50px;
  height: 50px;
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  /* For positioning nav buttons and absolute slides */
  overflow: hidden;
  min-height: 70vh;
  /* Ensure container has height for absolute slides */
}

.carousel-slide {
  position: absolute;
  /* For smooth fade transition */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  /* To center content within the slide */
  align-items: center;
  /* Vertically center content */
  opacity: 0;
  /* Hidden by default */
  transition: opacity 0.7s ease-in-out;
  /* Smooth fade transition */
  background-size: cover;
  background-position: center;
  /* min-height and padding are now on .carousel-container or applied via JS if dynamic height is needed per slide */
}

.carousel-slide.active {
  opacity: 1;
  /* Show active slide */
  z-index: 10;
  /* Ensure active slide is on top */
}

.carousel-content {
  position: relative;
  z-index: 11;
  /* Above slide's pseudo-element and slide itself */
  /* Padding for content within the slide */
  padding-top: 5rem;
  padding-bottom: 8rem;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.45);
  /* Slightly increased overlay */
  z-index: 1;
  /* Behind content, above background image */
}

.carousel-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  padding: 0.75rem;
  /* 12px */
  cursor: pointer;
  z-index: 20;
  /* Above slides */
  border-radius: 50%;
  width: 3rem;
  /* 48px */
  height: 3rem;
  /* 48px */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.carousel-nav-button:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.carousel-nav-button.prev {
  left: 1rem;
  /* 16px */
}

.carousel-nav-button.next {
  right: 1rem;
  /* 16px */
}


/* Mobile Menu Drawer Styles */
#mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}

#mobile-menu.menu-open {
  transform: translateX(0);
}

/* Scroll Animation Styles */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 {
  transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
  transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
  transition-delay: 0.3s;
}


.cta-button {
  background-color: #2563EB;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #1D4ED8;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1E3A8A;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1rem;
  color: #4B5563;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.partner-logo {
  height: 30px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
}

.dark-section {
  background-color: #0D1B2A;
  color: #E0E1DD;
}

.dark-section .section-title,
.dark-section h3,
.dark-section a:not(.cta-button) {
  color: #60A5FA;
}

.dark-section p,
.dark-section li,
.dark-section .text-sm {
  color: #A0AEC0;
}

.dark-section .cta-button {
  background-color: #3B82F6;
}

.dark-section .cta-button:hover {
  background-color: #2563EB;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2563EB;
}

.service-card,
.feature-card,
.team-card,
.blog-card,
.testimonial-card {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #E5E7EB;
}

.service-card:hover,
.feature-card:hover,
.team-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
  background-color: #F9FAFB;
}

.form-input:focus {
  outline: none;
  border-color: #2563EB;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4);
  background-color: white;
}

.testimonial-nav-arrow {
  color: #9CA3AF;
  cursor: pointer;
}

.testimonial-nav-arrow:hover {
  color: #2563EB;
}

.logo2 {
  border: #ffff 1px solid;
  width: fit-content;
  background: #F9FAFB;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 5px;
  font-weight: 700;
  font-size: 20px;
  border-radius: 30px;
  cursor: pointer;
  margin: 10px 0;
}

.logo2 img {
  width: 50px;
  height: 50px;
}


/* CHECH PAGE */


.chechbody {
  font-family: 'Inter', sans-serif;
  background-color: #0D1B2A;
  /* Dark Blue Background */
  color: #E0E1DD;
  /* Light Text Color */
}

.tracking-container {
  background-color: #1B263B;
  /* Dark blue-gray card background */
  border: 1px solid #415A77;
  /* Lighter blue border */
  box-shadow: 0 0 35px rgba(59, 130, 246, 0.2);
  /* Subtle blue glow */
}

.tracking-input {
  background-color: #0D1B2A;
  /* Even darker input background */
  border: 2px solid #415A77;
  color: #E0E1DD;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.tracking-input:focus {
  outline: none;
  border-color: #3B82F6;
  /* Blue-500 */
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4);
}

.track-button {
  background-color: #2563EB;
  /* Blue-600 */
  color: white;
  transition: background-color 0.3s ease, transform 0.1s ease;
}

.track-button:hover {
  background-color: #1D4ED8;
  /* Blue-700 */
}

.track-button:active {
  transform: translateY(1px);
}

.logo-font {
  font-weight: 800;
  /* Extra bold for logo */
}



/* TRACK PAGE */

.trackbody {
  font-family: 'Inter', sans-serif;
  background-color: #0D1B2A;
  /* Darker blue background */
  color: #E0E1DD;
  /* Light text color */
}

.shipinfohead {
  border: #BFDBFE 1px solid;
  margin: 60px 0;
  border-radius: 5px;
  padding: 10px 5px;
}

.shipinfohead h3 {
  font-size: 30px;
  color: #60A5FA;
  font-weight: 700;
}

.futuristic-card {
  background-color: #1B263B;
  /* Dark blue-gray card background */
  border: 1px solid #415A77;
  /* Lighter blue border */
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.3);
  /* Subtle blue glow */
}

.futuristic-card img {
  background: #F9FAFB;
}

.tracking-id-display {
  background-color: #25364D;
  border: 1px solid #415A77;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 500;
  color: #BFDBFE;
  /* Light blue text for tracking ID */
}

.section-title {
  color: #93C5FD;
  /* Lighter blue for titles */
  border-bottom: 2px solid #3B82F6;
  padding-bottom: 8px;
}


.mapPlaceholder iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* Static Progress Bar Styles */
.progress-step-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  /* Align items to the top for text below circle */
  position: relative;

}

.progress-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  /* For line positioning */
}

.progress-step .step-circle {
  width: 40px;
  /* Adjusted for better visual */
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #778DA9;
  /* Default inactive border */
  background-color: #415A77;
  /* Default inactive background */
  color: #A0AEC0;
  /* Default inactive icon color */
  z-index: 10;
  /* Ensure circles are above lines */
  transition: all 0.3s ease;
}

.progress-step .step-label {
  font-size: 0.75rem;
  /* text-xs */
  margin-top: 0.5rem;
  /* mt-2 */
  color: #A0AEC0;
  /* Default label color */
  min-height: 30px;
  /* Ensure space for two lines of text */
}

/* Completed Step Styles */
.progress-step.completed .step-circle {
  background-color: #3B82F6;
  /* Blue for completed steps */
  border-color: #3B82F6;
  color: #ffffff;
  /* White icon for completed */
}

.progress-step.completed .step-label {
  color: #BFDBFE;
  /* Lighter blue for completed label */
}

/* Current Step Styles */
.progress-step.current .step-circle {
  background-color: #60A5FA;
  /* Lighter blue for current step */
  border-color: #60A5FA;
  color: #ffffff;
  /* White icon for current */
  transform: scale(1.1);
  /* Slightly larger current step */
}

.progress-step.current .step-label {
  color: #E0E1DD;
  /* Brighter label for current */
  font-weight: 500;
}

/* Progress Line Styles */
.progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 19px;
  /* (Circle height / 2) - (Line height / 2) */
  left: 50%;
  width: 100%;
  height: 3px;
  /* Line thickness */
  background-color: #415A77;
  /* Default line color (inactive) */
  z-index: 5;
  /* Behind circles */
  transform: translateX(0%);
  /* Starts from center of current step to center of next */
}

.progress-step.completed:not(:last-child)::after {
  background-color: #3B82F6;
  /* Blue for completed lines */
}

/* Special case for the line before the current step if it's not the first step */
.progress-step.current:not(:first-child)::before {
  content: '';
  position: absolute;
  top: 19px;
  right: 50%;
  /* From right edge of previous step's line area */
  width: 100%;
  height: 3px;
  background-color: #3B82F6;
  /* Line leading to current should be completed */
  z-index: 5;
}


/* Responsive adjustments for progress steps */
@media (max-width: 768px) {

  /* md breakpoint */
  .progress-step .step-circle {
    width: 36px;
    height: 36px;
  }

  .progress-step .step-circle i {
    font-size: 0.875rem;
    /* text-sm */
  }

  .progress-step .step-label {
    font-size: 0.65rem;
    /* Smaller text on mobile */
    white-space: normal;
    /* Allow text to wrap */
  }

  .progress-step:not(:last-child)::after {
    top: 17px;
    /* Adjust for smaller circle */
  }

  .progress-step.current:not(:first-child)::before {
    top: 17px;
  }
}

@media (max-width: 640px) {

  /* sm breakpoint */
  .progress-step .step-circle {
    width: 32px;
    height: 32px;
  }

  .progress-step .step-circle i {
    font-size: 0.75rem;
    /* text-xs */
  }

  .progress-step:not(:last-child)::after {
    top: 15px;
    /* Adjust for smaller circle */
  }

  .progress-step.current:not(:first-child)::before {
    top: 15px;
  }
}





/* LOGIN */


.logbody {
  font-family: 'Inter', sans-serif;
  background-color: #0D1B2A;
  /* Dark Blue Background */
  color: #E0E1DD;
  /* Light Text Color */
}

.loginlogo {
  margin: auto;
  color: #0A1422;
}

.login-panel {
  background-color: #1B263B;
  /* Dark blue-gray card background */
  border: 1px solid #415A77;
  /* Lighter blue border */
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.25);
  /* Enhanced blue glow */
}

.login-input {
  background-color: #0A1422;
  /* Even darker input background */
  border: 2px solid #415A77;
  color: #E0E1DD;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.login-input:focus {
  outline: none;
  border-color: #3B82F6;
  /* Blue-500 */
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4);
}

.login-button {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  /* Gradient button */
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.login-button:hover {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  transform: translateY(-1px);
}

.login-button:active {
  transform: translateY(0px);
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.logo-font {
  font-weight: 800;
  /* Extra bold for logo */
}

.input-icon {
  position: absolute;
  left: 0.75rem;
  /* 12px */
  top: 50%;
  transform: translateY(-50%);
  color: #778DA9;
  /* Icon color */
  z-index: 10;
  /* Ensure icon is clickable if input field has higher z-index for some reason */
}

.password-toggle-icon {
  position: absolute;
  right: 0.75rem;
  /* 12px */
  top: 50%;
  transform: translateY(-50%);
  color: #778DA9;
  /* Icon color */
  cursor: pointer;
  z-index: 10;
}

.password-toggle-icon:hover {
  color: #BFDBFE;
  /* Lighter blue on hover */
}

.input-wrapper {
  position: relative;
}

.login-input.pl-10 {
  /* Ensure padding for left icon */
  padding-left: 2.5rem;
  /* 40px */
}

.login-input.pr-10 {
  /* Ensure padding for right icon (password toggle) */
  padding-right: 2.5rem;
  /* 40px */
}



/* INVOICE */







.popup-container {

  width: 100%;
  height: 100vh;
  background: #0b0b0be8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2000;

}

.popup {
  width: 500px;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  text-align: center;
  padding: 0 30px 30px;
  color: #333;
  visibility: visible;
  transition: transform 0.4s, top 0.4s;
}

.close-popup,
.popup-container-colose {
  visibility: hidden;
  top: 0;
  transform: translate(-50%, -50%) scale(0.1);
}

.popup-container-colose {
  display: none;
}

.popup img {
  width: 100px;
  margin-top: -30px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.popup h1 {
  font-size: 40px;
  font-weight: 500;
  margin: 30px 0 10px;
}

.popup-container .popup .success-alert i {
  border: #358916 2px solid;
  padding: 10px;
  color: #358916;
  border-radius: 50%;
}

.popup-container .popup .error-alert i {
  border: #de0808 2px solid;
  padding: 10px;
  color: #de0808;
  border-radius: 50%;
}

.popup button {
  width: 100%;
  margin-top: 50px;
  padding: 10px 0;
  background: #358916;
  color: #fff;
  border: 0;
  outline: none;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}



@media(max-width:700px) {
  .popup {
    width: 90%;
  }
}
