﻿/* Panels. */
.splitview {
    position: relative;
    width: 100%;
    min-height: 45vw;
    overflow: hidden;
}

.panel {
    position: absolute;
    width: 100vw;
    min-height: 45vw;
    overflow: hidden;
}

    .panel .contentdt {
        position: absolute;
        width: 100vw;
        min-height: 45vw;
        color: rgb(255, 255, 255);
    }

    .panel .descriptiondt {
        width: 25%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
        text-size-adjust: 50%;
    }

    .panel img {
        box-shadow: 0 0 5px 5px rgba(255, 239, 14, 0.98);
        width: 30%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }


.bottom {
    background-color: rgb(44, 44, 44);
    z-index: 1;
}

    .bottom .descriptiondt {
        right: 5%;
    }

.top {
    background-color: #999999;
    z-index: 2;
    width: 50vw;
    /*-webkit-clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
    clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);*/
}

    .top .descriptiondt {
        left: 5%;
    }

/* Handle. */
.handle {
    height: 100%;
    position: absolute;
    display: block;
    background-color: rgb(253, 171, 0);
    width: 5px;
    top: 0;
    left: 50.5%;
    z-index: 3;
}

/* Skewed. */
.skewed .handle {
    top: 49%;
    transform: rotate(30deg) translateY(-50%);
    height: 200%;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    transform-origin: top;
}

.skewed .top {
    transform: skew(-30deg);
    margin-left: -1000px;
    width: calc(50vw + 1000px);
}

    .skewed .top .contentdt {
        transform: skew(30deg);
        margin-left: 1000px;
    }


.green1 {
    list-style: none; 
    padding: 0;
}

    .green1 li::before {
        content: "✔"; 
        color: rgb(3, 190, 72);
        margin-right: 8px;
        width: 28px;
        height: 28px;
        background-color: transparent;
        border-radius: 90px;
    }

.danger1 {
    list-style: none;
    padding: 0;
}


    .danger1 li::before {
        content: "!";
        font-weight: bold;
        color: rgb(160, 0, 0);
        margin-right: 8px;
        width: 38px;
        height: 38px;
        background-color: transparent;
        border-radius: 50%;
    }



@media screen (max-width: 768px) {
    .splitview {
        min-height: 70vh;
    }

    .panel {
        min-height: 70vh;
    }

     .panel .contentdt {
            min-height: 70vh;
        }

        .panel .descriptiondt {
            width: 30%;
            text-size-adjust: 50%;
        }

        .panel img {
            width: 30%;
        }

    .handle {
/*        height: 100%;
        position: absolute;
        display: block;*/
        width: 4px;
        left: 49%;
    }

    .skewed .top {
        width: 55vw;
    }

    .skewed .handle {
        height: 200%;
    }


    .bottom .descriptiondt {
        right: 5%;
    }

    .panel .descriptiondt {
        width: 25%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
    }
    
}
/*===============anusandhan progress bar start===================*/

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.progress-container {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    width: 90%;
    margin: 50px auto;
    position: relative;
}

    .progress-container::before {
        content: "";
        position: absolute;
        top: 20%;
        left: 0;
        width: 100%;
        height: 5px;
        background: #ddd;
        transform: translateY(-50%);
        z-index: -1;
    }

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    width: 20%;
   
    
}

.circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    background: #ddd;
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

    /* Zoom-in effect on hover */
    .circle:hover {
        transform: scale(1.2);
        cursor: pointer;
    }

.completed .circle {
    background: #4CAF50;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.8); /* Green glow effect */
}

    .completed .circle::after {
        content: "✔";
    }

.step-text {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
}



/* Responsive Design */
@media (max-width: 768px) {
    .progress-container {
        flex-direction: column;
        align-items: flex-start;
        width: 90%;
        position: relative;
    }

        .progress-container::before {
            width: 0px;                     /*hide the progress line*/
            height: 100%;
            left: 20px;
            top: 0;
        }

    .step {
        flex-direction: row;
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .circle {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .step-text {
        margin-left: 15px;
        text-align: left;
     
    }
}
/*===================anusandhan progressbar legend========================*/