
@media (max-width: 767px) and (min-width: 0px) {
    /* #primaryNavbarCollapse {
        display: block;
        position: absolute;
    } */

    .px-5 {
        padding: 15px 20px !important;
    }
}

@media (max-width: 575px) and (min-width: 0px) {
    /* #primaryNavbarCollapse {
        flex-direction: column;
    } */

    #primaryNavbarCollapse .nav-item {
        margin-block: 20px;
    }

    #primaryNavbarCollapse .nav-item:first-child {
        margin-bottom: 20px !important;
    }
}

.navbar-collapse {
    all: unset;
}

.w-100 {
    width: 100% !important;
}

.navbar-collapse button {
    font-size: 14px;
    padding: 8px 12px !important;
}

#header,
#header .swiper-slide,
#header img {
  min-height: 100vh !important;
}

#header .bg-holder {
    filter: blur(8px);
}

#header .swiper-slide h1,
#header .swiper-slide p {
    color: #000 !important;
}

journey-map {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .journey-map h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
  }

  .journey-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .step {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
  }

  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    width: 60px;
    height: 3px;
    background: #cccccc;
    transform: translateY(-50%);
  }

  .step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    background-color: #e6f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0073e6;
  }

  .step-title {
    font-size: 1.25rem;
    color: #333;
    margin: 10px 0;
  }

  .step-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .step-list li {
    font-size: 0.95rem;
    color: #555;
    margin: 5px 0;
  }

@media (min-width: 575px) {
    .client-journey-content > div  {
        margin-bottom: 100px !important;
    }
}


.whatsapp-area {
  position: fixed;
  bottom: 75px;
  right: 18px;
  z-index: 100;
  background: transparent;
}

.whatsapp-area span {
  position: absolute;
  color: #fff;
  left: -160px;
  align-items: center;
  top: -34px;    
  width: fit-content !important;
  font-size: 18px;
  display: flex;
  border-radius: 7px;
  background-color: #25D366; /* WhatsApp green */
  padding: 8px 13px;
}

.whatsapp-area:hover span {
  display: flex;
  opacity: 1; 
  animation: fadeIn 2s forwards;
}

.whatsapp-area span img {
  margin-right: 5px;
}

.whatsapp-area span:after {
  content: "";
  position: absolute;
  top: 15px;
  right: -8px;
  z-index: 3;
  transform: rotate(200deg);
  border-width: 11px;
  border-style: solid;

  border-color: #25D366 transparent transparent transparent;
}

/* Styling the WhatsApp button */
.whatsapp-btn {
    background-color: #25D366; /* WhatsApp green */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
}

.whatsapp-btn img {
    width: 35px;
    height: 35px;
}

/* Hover effect */
.whatsapp-btn:hover {
    background-color: #20bf5f;
}