body{
    font-family: 'Geologica', sans-serif;

  
}

header {
  position: sticky;
  top: 0;
  z-index: 1000; /* Higher than dropdowns or content */
  background-color: #fff; /* Ensures it doesn't go transparent */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Optional: adds depth */
}
.header-container {
  display: flex;
  align-items: center;
}

/* Logo stays on the left */
.header-logo-wrapper {
  flex: 0 0 auto;
}

.header-nav-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: -5px;
  position: relative;
}

.header-nav {
  display: flex;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Geologica', sans-serif;
  font-size: 15px;
}

.header-nav li {
  display: flex;
  align-items: center;
}

.header-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: #2e1a7c;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Geologica', sans-serif;
  font-size: 15px;
  margin: 0;
}

/* Hide hamburger by default */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  font-family: 'Geologica', sans-serif;
  margin-right: 20px;
}

/* Responsive styles for screen <= 992px */
@media (max-width: 992px) {
  .header-nav {
    display: none;
    flex-direction: column;
     align-items: center;
    background: white;
    position: absolute;
    top: 57px;
    right: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 10px;
    border-radius: 8px;
    z-index: 999;
    width: 100%;
  }

  .header-nav.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .header-nav-wrapper {
    justify-content: flex-end;
  }
}










/* banner */
     .about-banner {
  position: relative;
  background: url('./servicesimg/serv-banner.png') no-repeat center center / cover;
  min-height: 380px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.about-banner .overlay-box {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px 30px;
  max-width: 100%;
  width: 100%;
  max-width: 350px;
  box-sizing: border-box;
}

.about-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
 
  clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
  z-index: 2;
}

.about-content {
  position: relative;
  z-index: 3;
}

.breadcrumb-custom {
  font-weight: 300;
  font-size: 1rem;
  color: white;
  background: transparent;
  padding: 0;
}

.breadcrumb-custom a {
  color: white;
  text-decoration: none;
}

.breadcrumb-custom .active {
  font-weight: bold;
  color: white; /* Light color for active item */
}

.breadcrumb-custom a:hover {
  text-decoration: none;
}



/*on way road  */
 .transport-section {
      padding: 60px 0;
    }

    .transport-grid {
      display: grid;
      grid-template-columns: 1fr 1fr; 
      gap: 20px;
    }

    .transport-box {
      background-color: #F5F3FF; 
      padding: 30px;
      border-radius: 12px;
      height: 100%;
      display: grid;
      place-content: center;
    }

    .transport-title {
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .transport-text {
      font-size: 1rem;
      color: #707070;
    }

    .transport-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }

    @media (max-width: 768px) {
      .transport-grid {
        grid-template-columns: 1fr;
      }
    }


    /* same day */
     .same-day-section {
      padding: 50px 0;
      background-color:#F5F3FF ;
    }
    .same-day-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .same-day-text h2 {
      font-size: 2rem;
      font-weight: bold;
      margin-top: 20px;
    }
    .same-day-text p {
      font-size: 1.1rem;
      color: #555;
    }
    .same-day-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
     
    }