body {
  font-family: "Poppins", sans-serif;
}

.fontsize_paragraph {
  font-size: 0.98rem;
  line-height: 1.6;
}

.fontsize_par2 {
  font-size: 0.9rem;
}

.textjustify {
  text-align: justify;
}

/*=========== Navbar ==========*/
.navbar {
  background-color: rgba(0, 0, 0, 0.8);
}

.nav-link {
  color: rgb(255, 171, 64) !important;
  font-weight: bold;
  font-size: 1.1rem;
}
.navbar-toggler {
  background: rgb(255, 171, 64);
  border: none;
}

/* Submenu styles */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -0.125rem;
  display: none;
}

/* Show submenu on hover for desktop */
@media (min-width: 992px) {
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}

/* Show submenu when has .show class */
.dropdown-submenu > .dropdown-menu.show {
  display: block;
}

/* Mobile: show stacked instead of floating */
@media (max-width: 991.98px) {
  .dropdown-submenu > .dropdown-menu {
    position: static;
    margin-left: 1rem;
    margin-top: 0.25rem;
    width: auto;
  }

  .dropdown-submenu > .dropdown-toggle::after {
    transform: rotate(-90deg);
  }
}

/*=========== Navbar ==========*/

/* ===========home=========== */

/* Carousel desktop */
.carousel-item {
  position: relative;
}

.carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.carousel-item img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.carousel-caption {
  position: absolute;
  z-index: 2;
  color: #fff;
}

.carousel-caption h4,
.carousel-caption h5 {
  font-size: 3rem;
  font-weight: bold;
  color: #ffa733;
  -webkit-text-stroke: 2px #ffa733;
}
.carousel-caption p {
  font-size: 1rem;
}

/* Mobile view: caption full width & top aligned */
@media (max-width: 768px) {
  .carousel-item img {
    height: 400px;
  }
  .carousel-caption {
    top: 30%;
    left: 0;
    transform: none;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 15px;
  }
  .carousel-caption h1,
  .carousel-caption h5 {
    font-size: 1rem;
    line-height: 1.3;
  }
  .carousel-caption p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
}

.quote-button {
  background: rgb(255, 171, 64);
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 8px;
  color: black;
  transition: 0.3s;
}
.quote-button:hover {
  background: #ffa733;
}

.steps {
  position: relative;
  margin-left: 30px;
  padding-left: 20px;
}

.step {
  position: relative;
  margin-bottom: 30px;
  padding-left: 20px;
}

/* vertical line */
.step::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 20px;
  bottom: -30px;
  width: 2px;
  background: #ddd;
}

/* remove line from last step */
.step:last-child::before {
  display: none;
}

/* step icon */
.step-icon {
  position: absolute;
  left: -36px;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #198754;
  font-size: 1.2rem;
}

.homecontentheading {
  font-family: monospace;
  text-align: justify;
  font-weight: 700;
  color: #0eb064;
  -webkit-text-stroke: 2px #0eb064;
}

.servicesh4 {
  color: #040263;
}

.accordion-button {
  font-size: 1.12rem !important;
}

.service-card {
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
}

/* ===========home=========== */

/* ==============form home======== */

.form-section {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.form-control {
  background: #ffcc80;
  border: none;
}
.form-control:focus {
  box-shadow: none;
  border: 1px solid #ff9800;
}
.btn-custom {
  background: rgb(0, 96, 100);
  color: #fff;
  font-weight: bold;
}
.btn-custom:hover {
  background: #00796b;
  color: #fff;
}
.captcha-box {
  background: #999;
  padding: 8px 12px;
  border-radius: 5px;
  display: inline-block;
  font-weight: bold;
  color: #fff;
}

/* ==============form home======== */

/* ================services============ */

/* Desktop Horizontal Steps */
.steps-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin: 40px 0;
}

.steps-wrapper::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: #ffab40;
  z-index: 1;
}

.stephorizontal {
  position: relative;
  text-align: center;
  flex: 1;
  z-index: 2;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffab40;
  color: #000;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

/* Mobile Vertical Timeline */
@media (max-width: 768px) {
  .steps-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 50px; /* space for vertical line */
  }

  /* vertical line for timeline */
  .steps-wrapper::before {
    content: "";
    position: absolute;
    top: 20px; /* start from first circle */
    left: 25px; /* center of circle */
    width: 2px;
    bottom: 20px; /* stops near last circle */
    background: #ffab40;
    z-index: 1;
  }

  .stephorizontal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    margin-bottom: 40px;
  }

  .step-circle {
    position: relative;
    z-index: 2; /* above vertical line */
    margin: 0 0 10px 0;
  }

  .step-content-wrapper {
    margin-left: 10px; /* spacing from line */
  }

  .stephorizontal h6 {
    margin: 0 0 5px 0;
  }

  .stephorizontal p {
    margin: 0;
  }
}

/* ================services============ */

/* =============tracking page====== */

/* Banner */
.banner {
  position: relative;
  background: url("../image/slider-1.jpg") no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* Dark background only for form */
.banner-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.8); /* Dark form background */
  border-radius: 10px;
  padding: 20px;
  color: white;
}
.banner-content h4 {
  color: rgb(255, 171, 64);
}
.search-box input {
  border-radius: 5px 0 0 5px;
  border-right: none;
}
.search-box button {
  border-radius: 0 5px 5px 0;
  background: rgb(255, 171, 64);
  border: none;
}

/* Steps */
.steps-containertrack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.steps-containertrack .steptrack {
  text-align: center;
  flex: 1 1 220px;
}
.steps-containertrack .steptrack h5 {
  color: orange;
  margin-top: 10px;
}

/* =============tracking page====== */

/* ============customer-care========== */

.contact-icon {
  font-size: 36px;
  color: rgb(255, 171, 64);
}
.contact-card {
  transition: 0.3s;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.section-title {
  color: rgb(255, 171, 64);
  font-weight: bold;
}

/* ============customer-care========== */



/* Floating buttons container */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Common style for both buttons */
.floating-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease-in-out;
}

/* WhatsApp style */
.whatsapp-float {
  background: #25d366;
}

/* Phone style */
.phone-float {
  background: #3a04ff;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

