.animated-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 36px;
    border: 4px solid;
    border-color: transparent;
    font-size: 16px;
    background-color: inherit;
    border-radius: 100px;
    font-weight: 600;
    color: #EA561D;
    box-shadow: 0 0 0 2px #EA561D;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.partnerbannerbox {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.partnerbannerbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
}

.partnerbannerbox .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.animated-button svg {
    position: absolute;
    width: 24px;
    fill: #EA561D;
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
    right: 16px;
}

.animated-button .arr-2 {
    left: -25%;
}

.animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #EA561D;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}



.boxcontent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    /* Optional: Center text within the box */
}

.boxcontent h3 {
    color: white;
    font-size: 30px;
}

.animated-button .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: white;
    border-radius: 12px;
}

.animated-button:hover .arr-1 {
    right: -25%;
}

.animated-button:hover .arr-2 {
    left: 16px;
}

.animated-button:hover .text {
    transform: translateX(12px);
    color: white;
}

.animated-button:hover svg {
    fill: white;
}

.animated-button:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px #EA561D;
}

.animated-button:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
}

.preregisterbox {

    box-shadow: 0 0 4px;
    background-color: white;
    padding: 10px;
    border-radius: 6px;
    height: 100%;
    text-align: center;
}

.preregisterbox h6 {
    font-size: 16px;
}

.preregisterbox img {
    width: 60px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.mainlist {
    padding: 0px 30px;

}

.mainlist li {
    list-style: circle;
}

.listbox {
    margin-bottom: 20px;
}




.hoverbtn {
    width: 200px;
    height: 50px;
    background-color: #EA561D;
    color: #fff;
    border-radius: 50px;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.hoverbtn span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: top 0.5s;
}

.btn-text-one {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.btn-text-two {
    position: absolute;
    width: 100%;
    top: 150%;
    left: 0;
    transform: translateY(-50%);
}

.hoverbtn:hover .btn-text-one {
    top: -100%;
}

.hoverbtn:hover .btn-text-two {
    top: 50%;
}

.journeybox {
    position: absolute;
    top: 100px;
    text-align: center;
    width: 92%;
    left: 40px;
}

.journeybox h2 {
    color: white;
    font-weight: 700;
    font-size: 30px;
}

.journeybox p {
    color: white;
}


.formbox h3 {
    font-size: 30px;
}

.section_title h2 {
    font-size: 38px;
    letter-spacing: 1px;
}

.bg-orange {
    background-color: #EA561D;
}

.process img {
    height: 400px;
}

.process h4 {
    color: #EA561D;
}

.preregisterbox svg {
    width: 70px;
    margin-bottom: 10px;
}

.preregisterbox:hover {
    background-color: #EA561D;
    transition: all ease 0.6s;
    color: white;
}

.preregisterbox:hover #SVGRepo_iconCarrier path {
    fill: white;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 16px;
    width: 97%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;


}

@media (max-width:768px) {
    .journeybox {
        width: 80%;
        top: 16px;
    }

    .section_title h2 {
        font-size: 24px;
    }

    .section_title h3 {
        font-size: 16px;
    }

    .mobileorderimg {
        order: 1;
    }

    .mobilecontent {
        order: 2;
    }


    .boxcontent {
        width: 100%;
    }

    .image-overlay {
        width: 92%;
    }
}