  /* PROCESS SECTION IMPROVED */
  .process {
    padding: 80px 0;
    background: white;
  }

  .process-step {
    position: relative;
    text-align: center;
    padding: 20px;
  }

  .step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #FF800F;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 32px;
    transition: .3s;
    box-shadow: 0px 1px 9px #FF800F;
  }

  .process-step:hover .step-circle {
    transform: scale(1.15) rotate(8deg);
    background: #ff6f00;
  }

  .step-number {
    position: absolute;
    top: -10px;
    right: 35%;
    background: #ffc107;
    color: black;
    font-weight: 700;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }

  .process-step h6 {
    font-weight: 600;
    margin-top: 10px;
  }

  /* connecting line desktop */
  @media(min-width:992px) {
    .process-step::after {
      content: '';
      position: absolute;
      top: 40px;
      right: -50%;
      width: 100%;
      height: 3px;
      background: #0d6efd;
      z-index: -1;
    }

    .process-step:last-child::after {
      display: none;
    }
  }
/* SECTION */
.railway-area{
    padding:30px 0;
    background:linear-gradient(180deg,#f6f8fc,#ffffff);
}

/* TITLE */
.cover-title{
    font-size:38px;
    font-weight:800;
    color:#0b1c39;
}
.cover-sub{
    color:#333;
    max-width:750px;
    margin:auto;
    font-weight: 500;
}

/* CARD */
.rail-card{
    background:#fff;
    border-radius:16px;
    padding:28px;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

/* TOP BAR EFFECT */
.rail-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:#ff7a00;
}

/* HOVER */
.rail-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

/* ICON */
.rail-icon{
    width:60px;
    height:60px;
    background:#ff7a00;
    color:#fff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:15px;
}

/* LOCATION BADGES */
.location-list{
    margin-top:10px;
}

.loc-badge{
    display:inline-block;
    padding:6px 12px;
    background:#f1f4f9;
    border-radius:50px;
    margin:5px 4px;
    font-size:14px;
    color:#0b1c39;
    transition:.25s;
    border:1px solid #e5e9f2;
}

.loc-badge:hover{
    background:#ff7a00;
    color:#fff;
    border-color:#ff7a00;
}

/* MOBILE */
@media(max-width:768px){
    .cover-title{font-size:28px;}
}