html body .page-title {
    position: relative;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    padding: 210px 0;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    margin-top: 57px;
    /* background-image: url(../images/5.jpg); */
}
html body .slide-item .page-title{
    height:550px;
    margin: 0;
}
html body .page-title  .title-top{
    height: 82px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #002941, #006798);
    z-index: 10;

    display: flex;
    align-items: center; /* Vertically centers the content */
    justify-content: center;
}
html body .page-title .title-top h2 {
    margin: 0; 
    color: white;
    font-weight: bold;
}
html body .page-title  .title-middle{
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    padding:82px 0 62px 0;
    background-color: white;
    z-index: 9;

    display: flex;
    justify-content: space-between; /* or space-around, space-evenly */
    align-items: center;
}
html body .page-title  .title-bottom{
    height: 75px;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #006798, #002941);
    z-index: 10;
    display: flex;
    align-items: center; /* Vertically centers the content */
}
html body .page-title  .title-bottom .title-venue{
    flex:1;
    display: flex;
}
html body .page-title  .title-bottom .title-contact{
    flex:1;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
}
html body .page-title .title-bottom p {
    flex:1;
    margin: 0; 
    color: white;
    font-size: 18px;
}
html body .page-title  .title-bottom .fa{
    border: 1px solid;
    border-radius: 50%;
    padding: 5px;
}
html body .page-title  .title-middle .title-left{
    flex: 1;
}
html body .page-title  .title-middle .title-center{
    flex: 1;
    text-align: center;
}

html body .page-title  .title-middle .title-right{
    flex: 1;
}
.mp-indore-symbols{
    position: absolute;
    bottom: 60px;
    left: 10px;
    width: 450px;
    height: auto;
    z-index: 20;
}


/* Blinking animation for registration button */
@keyframes registration-blink {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

.header-top .register-btn {
  animation: registration-blink 1.5s infinite;
  border-radius: 53px;
}

/* Registration Button Background Blink Effect */
.header-top .register-btn {
    animation: bg-blink 1.5s infinite;
}

@keyframes bg-blink {
    0% {
        background-color: var(--original-bg, inherit);
        color: inherit;
    }
    50% {
        background-color: white;
        color: #005580;
    }
    100% {
        background-color: var(--original-bg, inherit);
        color: inherit;
    }
}

.header-top .register-btn:hover {
    animation-play-state: paused;
    background-color: #86C22F;
    color: white;
}

