﻿@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@500;600;700&family=Poppins:wght@100;300;400;500&display=swap');

* {
    box-sizing: border-box !important;
}

a {
    text-decoration: none !important;
}

    a:hover {
        cursor: pointer;
    }

img {
    vertical-align: middle;
    border-style: none;
    max-width: 100%;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
/*font-family: 'Playfair Display', serif;*/
p {
    line-height: 22px;
}

div:after {
    content: '';
    display: block;
    clear: both;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    position: relative;
}

.wrapper {
    margin: 0 auto;
    position: relative;
    min-height: 85vh;
}






.about_bg {
    width: 100%;
}

    .about_bg img {
        width: 100%;
    }

    .about_bg p {
        font-size: 20px !important;
        line-height: 30px;
    }

    .about_bg h2 {
        position: relative;
        margin: 0 auto 20px;
    }

        .about_bg h2:after {
            content: "";
            position: absolute;
            left: 15px;
            background-image: url("../image/a-icn.svg");
            background-repeat: no-repeat;
            height: 40px;
            width: 40px;
            top: 0px;
        }

        .about_bg h2:before {
            content: "";
            position: absolute;
            right: 15px;
            background-image: url("../image/a-icn.svg");
            background-repeat: no-repeat;
            height: 40px;
            width: 40px;
            top: 0px;
        }

a.read_more {
    margin: 0px;
}

a.read_more {
    background-color: transparent;
    border: 2px solid #f9d423;
    padding: 6px 10px;
    color: #4A4A4A;
    transition: 0.5s all;
    border-radius: 20px;
}

a:hover.read_more {
    color: #000;
    background-color: #f9d423;
}

.address {
    padding: 20px;
    background: linear-gradient(90deg, rgb(251 231 243) 0%, #e9ecef 100%);
    border: 1px solid #fff;
    width: 40%;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 20px 30px #00000045;
}

    .address img {
        width: 10%;
    }

.footer_home {
    text-align: center;
    color: #000;
    width: 100%;
    padding: 1px 0;
    background: linear-gradient(45deg, #9d5667 0%, #829fe3 100%);
    position: absolute;
    bottom: 0;
    font-size: 12px;
}

.footer {
    text-align: center;
    color: #000;
    width: 100%;
    padding: 1px 0;
    background: linear-gradient(45deg, #9d5667 0%, #829fe3 100%);
    position: relative;
    font-size: 12px;
}
/*custom css*/
.body_bg {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("../image/bg_2.webp");
    background-size: cover;
    z-index: -999;
    background-repeat: no-repeat;
    bottom: 0;
}

.overlay {
    background: -webkit-radial-gradient(top, #ffffff, #e4e4e4de);
    position: absolute;
    width: 100%;
    /*height: 100%;*/
    z-index: -1;
}

.preheader {
    width: 100%;
    background: linear-gradient(45deg, #9d5667 0%, #829fe3 100%);
}

    .preheader a {
        color: #fff;
        padding: 10px;
        background-color: #193f917a;
        transition: 0.5s all;
    }

        .preheader a:hover {
            background-color: #0938a6;
            color: #fff;
        }

.login-panel {
    color: #fff;
    position: relative;
}

    .login-panel p {
        margin: 0;
        /* margin-top: 4px; */
        background-color: #f9d423;
        position: absolute;
        left: -67px;
        padding: 10px;
        color: #fff;
    }

        .login-panel p:after {
            content: '';
            width: 0;
            height: 0;
            border-top: 13px solid transparent;
            border-bottom: 11px solid transparent;
            border-left: 11px solid #f9d423;
            position: absolute;
            right: -6px;
        }

.address-area {
    color: #000;
    font-size: 18px;
}

.address-area {
    padding: 10px 10px 10px 50px;
    margin: 0;
}

    .address-area p {
        margin: 2px 0;
        font-size: 16px;
        padding: 2px 0;
        color: #000;
        position: relative;
        text-decoration: none;
    }

    .address-area ul {
        margin: 0;
        padding: 0;
    }

        .address-area ul li {
            padding: 10px;
            list-style: circle;
        }

.cube {
    position: absolute;
    top: 80vh;
    left: 45vw;
    width: 10px;
    height: 10px;
    background: rgba(0, 5, 255, 1.00);
    transform-origin: top left;
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    -webkit-animation: cube 5s ease-in forwards infinite;
    animation: cube 5s ease-in forwards infinite;
    border-radius: 100%;
}

    .cube:nth-child(2n) {
        background: rgba(0, 5, 255, 1.00);
    }

    .cube:nth-child(2) {
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
        left: 25vw;
        top: 40vh;
    }

    .cube:nth-child(3) {
        -webkit-animation-delay: 3s;
        animation-delay: 3s;
        left: 75vw;
        top: 50vh;
    }

    .cube:nth-child(4) {
        -webkit-animation-delay: 4s;
        animation-delay: 4s;
        left: 90vw;
        top: 10vh;
    }

    .cube:nth-child(5) {
        -webkit-animation-delay: 7s;
        animation-delay: 7s;
        left: 10vw;
        top: 85vh;
    }

    .cube:nth-child(6) {
        -webkit-animation-delay: 9s;
        animation-delay: 9s;
        left: 50vw;
        top: 10vh;
    }

    .cube:nth-child(7) {
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
        left: 15vw;
        top: 20vh;
    }

    .cube:nth-child(8) {
        -webkit-animation-delay: 3s;
        animation-delay: 3s;
        left: 10vw;
        top: 20vh;
    }

    .cube:nth-child(9) {
        -webkit-animation-delay: 4s;
        animation-delay: 4s;
        left: 70vw;
        top: 30vh;
    }

    .cube:nth-child(10) {
        -webkit-animation-delay: 7s;
        animation-delay: 7s;
        left: 40vw;
        top: 85vh;
    }

    .cube:nth-child(11) {
        -webkit-animation-delay: 9s;
        animation-delay: 9s;
        left: 60vw;
        top: 10vh;
    }

@-webkit-keyframes cube {
    from {
        transform: scale(0) rotate(0deg) translate(-50%, -50%);
        opacity: .2;
    }

    to {
        transform: scale(10) rotate(960deg) translate(-50%, -50%);
        opacity: 0;
    }
}

@keyframes cube {
    from {
        transform: scale(0) rotate(0deg) translate(-50%, -50%);
        opacity: .2;
    }

    to {
        transform: scale(10) rotate(960deg) translate(-50%, -50%);
        opacity: 0;
    }
}

.add-list-button {
    display: inline-block;
    margin-left: 10px
}

    .add-list-button .btn i {
        font-size: 14px;
        display: inline-block;
        margin-right: 5px
    }

.caption {
    background: url("../image/top_banner.webp");
    background-repeat: no-repeat;
    height: 250px;
}

    .caption .button .btn {
        background-color: transparent;
        border: 2px solid #fff;
        color: #fff;
        padding: 12px 30px;
        margin-top: 30px;
    }

        .caption .button .btn:hover {
            background-color: #1F2B84;
            color: #fff;
        }

.home_link {
    float: left;
}

a {
    text-decoration: none;
}

p {
    line-height: 24px
}

.float_left {
    float: left;
}

.float_right {
    float: right;
}

.header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    position: sticky;
    left: 0;
    z-index: 1;
    padding: 10px 0;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    background-image: url("../image/header_texture.jpg");
    background-repeat: repeat;
}

.top-bg {
    color: #000;
    text-align: center;
    font-size: 25px;
    width: 100%;
    top: 0;
    z-index: 0;
    padding: 10px 0;
    position: relative;
}

    .top-bg h1 {
        padding: 0;
        margin: 0 0 7px;
        font-weight: 700;
    }

    .top-bg h3 {
        padding: 0;
        margin: 0;
    }

    .top-bg h2 {
        position: relative;
        width: 180px;
        margin: 0 auto;
        font-size: 22px;
    }

        .top-bg h2:after {
            content: "";
            position: absolute;
            left: 0;
            background-image: url("../image/a-icn.svg");
            background-repeat: no-repeat;
            height: 26px;
            width: 26px;
            top: 0px;
        }

        .top-bg h2:before {
            content: "";
            position: absolute;
            right: 0;
            background-image: url("../image/a-icn.svg");
            background-repeat: no-repeat;
            height: 26px;
            width: 26px;
            top: 0px;
        }

.srvc_logo {
    float: left;
}

@media screen and (min-width: 320px) and (max-width: 767px) {
    .login_outer {
        width: 100% !important;
        margin: 4px auto;
    }

    .address {
        width: 80%;
    }

    .login_info {
        display: none;
    }
}

@media screen and (min-width: 320px) and (max-width: 1200px) {
    .body_bg {
        position: relative;
    }

    .login_bg {
        position: relative;
    }
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(0deg);
        opacity: 0;
        border-radius: 100%;
    }
}
/* Service box start*/
.practice_area {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: -80px;
}

    .practice_area.practice_area2 {
        padding-top: 15px;
        padding-bottom: 0;
    }

    .practice_area .single_practice {
        margin: 12px 0;
        position: relative;
        background-size: contain;
        background-repeat: no-repeat;
        background: center;
        box-shadow: 0 0 10px #4976df4a;
    }

        .practice_area .single_practice .practice_hover {
            position: relative;
            padding: 15px 0;
            width: 100%;
            background: rgb(255 255 255);
            top: 50%;
        }

            .practice_area .single_practice .practice_hover h3 {
                font-size: 16px;
                color: #000000;
                font-family: "Poppins", sans-serif;
                margin: 8px 0;
            }

            .practice_area .single_practice .practice_hover p {
                font-size: 16px;
                color: #C7C7C7;
            }

        .practice_area .single_practice .practice_hover {
            position: relative;
            top: 10%;
            -webkit-transform: translateY(0%) translateY(0px);
            -moz-transform: translateY(0%) translateY(0px);
            -ms-transform: translateY(0%) translateY(0px);
            transform: translateY(0%) translateY(0px);
            right: 0;
            left: 0;
            text-align: center;
            -webkit-transition: 0.3s;
            -moz-transition: 0.3s;
            -o-transition: 0.3s;
            transition: 0.3s;
        }

            .practice_area .single_practice .practice_hover .hover_inner .lern_more {
                color: #fff;
                font-size: 16px;
                font-weight: 400;
                opacity: 1;
                margin-top: 10px;
                /*  visibility: hidden;*/
                transition: 0.5s;
                padding: 10px;
                cursor: pointer;
                background: linear-gradient(45deg, #866fd7 0%, #4976df 100%);
                border-radius: 20px;
            }

    .practice_area .single_practice {
        transition: 0.5s;
    }

        .practice_area .single_practice:hover {
            opacity: 1;
            visibility: visible;
            transition: 0.5s;
        }

        .practice_area .single_practice:hover {
            -webkit-transform: translateY(-2%) translateY(-25px);
            -moz-transform: translateY(-2%) translateY(-25px);
            -ms-transform: translateY(-2%) translateY(-25px);
            transform: translateY(-2%) translateY(-25px);
        }

.boxinner_content {
    position: relative;
    vertical-align: top;
    padding: 10px;
}

    .boxinner_content img {
        position: relative;
        width: 40px;
        height: auto;
    }

.date {
    text-align: left;
    color: #fff;
    width: 90%;
    margin: 0 auto;
}

    .date table {
        width: 100%;
        margin-bottom: 30px;
    }

        .date table td {
            border: 0.5px solid #e7e7e7;
            padding: 3px;
            border-collapse: collapse;
            color: #636363;
        }
/* Service box End*/
.side_button {
    position: absolute;
    top: 186px;
    z-index: 999;
    left: 8px !important;
    border: navajowhite;
    writing-mode: vertical-lr;
    display: inline-block;
    height: 115px;
}

    .side_button a {
        text-orientation: mixed;
        padding: 10px 12px;
        background: linear-gradient(45deg, #866fd7 0%, #4976df 100%);
        transition: 0.5s;
        color: #fff;
        border-radius: 0 20px 20px 0;
    }

        .side_button a:hover {
            color: #fff;
        }

.innerpage_heading {
    position: relative;
}

    .innerpage_heading h4 {
        padding: 8px 0 8px 24px;
        color: #fff;
        background: linear-gradient(45deg, #7945a6 0%, #4976df 100%);
        font-size: 20px !important;
        font-size: 20px !important;
    }

        .innerpage_heading h4:before {
            content: "";
            height: 23px;
            width: 10px;
            background-color: #f9d423;
            position: absolute;
            left: 8px;
        }

.drawer {
    display: none;
}

.drawer_overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    opacity: 0;
    transition: opacity 0.3s;
    will-change: opacity;
    background-color: #000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.drawer_header {
    padding: 10px 0 0;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    border-bottom: 1px solid #dde7ff;
}

.drawer_close {
    /* Optional */
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    background-image: url("../image/cross_icn.svg");
    display: block;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    margin-left: 1rem;
    position: absolute;
    right: 20px;
    z-index: 999;
    background-color: transparent;
}

.drawer_wrapper {
    position: fixed;
    top: 100px;
    right: 0;
    width: 100%;
    max-width: 380px;
    z-index: 9999;
    overflow: auto;
    transition: transform 0.3s;
    will-change: transform;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    -webkit-transform: translate3d(103%, 0, 0);
    transform: translate3d(103%, 0, 0); /* extra 3% because of box-shadow */
    -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
    /* Optional */
    box-shadow: 0 2px 6px #777;
}

.drawer_content {
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    flex-grow: 1;
    /* Optional */
}

.drawer-left .drawer_wrapper {
    left: 0;
    right: auto;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.drawer.is-active {
    display: block;
}

.drawer.is-visible .drawer_wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.drawer.is-visible .drawer_overlay {
    opacity: 0.5;
}
/******form page CSS start********************************************************/
.form_container {
    margin: 0 auto;
    background-color: #fff;
}

.sbc_formtable {
    width: 100%;
    margin: 10px 0;
    border-collapse: collapse;
    background-color: #fff !important;
}

    .sbc_formtable th {
        padding: 10px 6px;
        background-color: #f3f3f3 !important;
        color: #000;
        margin: 0;
        font-weight: 600;
        text-align: left;
        border: 1px solid #b4b4b4 !important;
    }

    .sbc_formtable td {
        padding: 4px;
        text-align: left;
        border: 1px solid #b4b4b4 !important;
    }

    .sbc_formtable input[type=password], .sbc_formtable input[type=text], .sbc_formtable select {
        padding: 8px;
        border-radius: 4px;
        background-color: #fff;
        border: #bdbdbd 1px solid;
        width: 100%;
    }

        .sbc_formtable input[type=password]:focus, .sbc_formtable input[type=text]:focus, .sbc_formtable input[type=select]:focus {
            outline: 0;
            box-shadow: 0 0 6px #ffe5ba;
            border: #E3DCD0 1px solid;
        }

        .sbc_formtable input[type=password]:focus, .sbc_formtable input[type=text]:focus, .sbc_formtable input[type=select]:focus {
            border-radius: 5px;
        }

    .sbc_formtable select {
        width: 100%;
    }

        .sbc_formtable select:focus {
            outline: 0;
            box-shadow: 0 0 10px #c3dbff;
            border: #deedff 1px solid;
        }

        .sbc_formtable select:hover {
            border: #ddd 1px solid;
            border-radius: 5px;
        }

    .sbc_formtable textarea {
        padding: 7px;
        border-radius: 4px;
        background-color: #fff;
        border: #ddd 1px solid;
        width: 100%;
        resize: vertical;
    }

        .sbc_formtable textarea:focus {
            outline: 0;
            box-shadow: 0 0 10px #ffe5ba;
            border: #ddd 1px solid;
        }

.sbc_formtable2 td {
    width: 50%;
}

.sbc_formtable4 td {
    width: 25%;
}

.sbc_formtable6 td {
    width: 16.5%;
}

.bordered_table th {
    border: #ddd 1px solid;
}

.bordered_table td {
    border: #ddd 1px solid;
}

.btn_sbc_form {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    opacity: 1;
    margin-top: 10px;
    transition: 0.5s;
    padding: 10px 20px;
    cursor: pointer;
    background: linear-gradient(45deg, #866fd7 0%, #4976df 100%);
    border-radius: 20px;
    border: none;
}

    .btn_sbc_form:hover {
        background: linear-gradient(45deg, #866fd2 0%, #4976df 100%);
    }
/******form page CSS end********************************************************/
/*****login page start***********************************************************/
.login_outer {
    min-width: 320px;
    width: 50%;
    margin: 4px auto;
    position: relative;
}

.login_corner {
    width: 100%;
    float: right;
    margin: 10% 0;
    position: relative;
}

.login_info {
    float: left;
    width: 40%;
    background: linear-gradient(151deg, #516eb6 0%, rgb(156 88 107) 100%);
    padding: 100px 20px;
    height: 398px;
    border-radius: 10px 0 0 10px;
    font-size: 20px;
    color: #fff
}

    .login_info h4 {
        font-size: 18px;
        margin-top: 10px;
    }

.login_corner-form h5 {
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.login_corner-form .login_input {
    text-align: left;
}

    .login_corner-form .login_input .login_inputBox {
        margin-top: 10px;
    }

        .login_corner-form .login_input .login_inputBox label {
            display: block;
            color: #000;
            margin-bottom: 5px;
            letter-spacing: 1px;
        }

        .login_corner-form .login_input .login_inputBox input {
            position: relative;
            width: 100%;
            height: 40px;
            border: none;
            outline: none;
            padding: 5px 15px;
            color: #000;
            background-color: #f3f3f3;
        }

.login_corner-form .login_submit_btn input {
    position: relative;
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    padding: 5px 15px;
    background: linear-gradient(45deg, #866fd7 0%, #4976df 100%);
    color: #fff;
    transition: 0.5s;
    border-radius: 10px;
}

    .login_corner-form .login_submit_btn input:hover {
        background-color: #9d793b;
    }

.login_corner-form .login_input .login_inputBox input[type="submit"] {
    cursor: pointer;
    margin-top: 20px;
    letter-spacing: 1px;
}

    .login_corner-form .login_input .login_inputBox input[type="submit"]:hover {
        background: linear-gradient(315deg, #5d02ff, #e91e63);
    }

.login_corner-form .input .login_inputBox input[type="submit"]:active {
    color: rgba(255, 255, 255, 0.521);
    background: linear-gradient(315deg, #e91e6271, #5f02ff8c);
}

.login_forgot {
    margin-top: 10px;
    color: #000;
    font-size: 14px;
    letter-spacing: 1px;
}

    .login_forgot a {
        color: #65c466;
    }

.login_captcha_area {
    height: 42px;
    background-color: #fff;
    padding: 10px;
    margin: 22px 0;
    border: 1px solid #e5ddcf;
}

.login_c-img {
    width: 25%;
}

.login_captcha_area input {
    width: 45%;
    padding: 4px;
    height: 22px;
    border: 1px solid #e5ddcf;
}

    .login_captcha_area input:focus-visible {
        border: 1px solid #95dede !important;
    }

.login_captha_icn {
    width: 7%;
    margin-left: 8px;
}

.login_bg {
    background-image: url("../image/login-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

.login_overlay {
    background-color: rgb(237 240 246 / 86%);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}
/******landing page CSS end********************************************************/

.status_box {
    width: 25%;
    padding: 4px;
    margin: 10px 0;
    color: #000;
    background: rgb(247 245 255);
    border: 1px solid #e9e9e9;
    position: relative;
    z-index: 0;
}

.pendingbg {
    background-color: #b6e796;
}

.rejectbg {
    background-color: #f9c3cb;
}

.approvebg {
    background-color: #9da4e3;
}

.defaultbg {
    background-color: #9bd3df;
}
/*.status_box:before {
  content: '';
  width: 40px;
  height: 40px;
  background: #ededed;
  left: 0;
  top: 0;
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}*/
.status_box h6 {
    color: #000;
    font-size: 16px;
}

a.status_box {
    /*color: #fff;*/
    font-size: 30px;
    font-weight: 700;
    width: 25%;
    float: left;
    padding: 10px;
}

    a.status_box:hover {
        color: #454444;
        background-color: #fff;
    }
/*status icon pendind strat CSS*/
.sts_icn_pnding {
    width: 40px;
    float: right;
    height: 40px;
    background-color: #76ab54;
    border-radius: 50%;
    margin-top: -20px;
    text-align: center;
    position: relative;
    z-index: 0;
}

    .sts_icn_pnding:after {
        content: '';
        position: absolute;
        width: 30px;
        height: 30px;
        background-color: rgb(81 101 69);
        border-radius: 50%;
        top: 5px;
        z-index: -1;
        left: -8px;
    }

    .sts_icn_pnding img {
        width: 60%;
        margin-top: 5px;
    }
/*status icon Approved strat CSS*/
.sts_icn_approved {
    width: 40px;
    float: right;
    height: 40px;
    background-color: #515791;
    border-radius: 50%;
    margin-top: -20px;
    text-align: center;
    position: relative;
    z-index: 0;
}

    .sts_icn_approved:after {
        content: '';
        position: absolute;
        width: 30px;
        height: 30px;
        background: rgba(133, 145, 249, 0.8);
        border-radius: 50%;
        top: 5px;
        z-index: -1;
        left: -8px;
    }

    .sts_icn_approved img {
        width: 60%;
        margin-top: 5px;
    }
/*status icon rejected strat CSS*/
.sts_icn_rejected {
    width: 40px;
    float: right;
    height: 40px;
    background-color: #d37c89;
    border-radius: 50%;
    margin-top: -20px;
    text-align: center;
    position: relative;
    z-index: 0;
}

    .sts_icn_rejected:after {
        content: '';
        position: absolute;
        width: 30px;
        height: 30px;
        background-color: rgb(255 125 119 / 50%);
        border-radius: 50%;
        top: 5px;
        z-index: -1;
        left: -8px;
    }

    .sts_icn_rejected img {
        width: 60%;
        margin-top: 5px;
    }
/*status icon Default strat CSS*/
.sts_icn_default {
    width: 40px;
    float: right;
    height: 40px;
    background-color: #61b3c5;
    border-radius: 50%;
    margin-top: -20px;
    text-align: center;
    position: relative;
    z-index: 0;
}

    .sts_icn_default:after {
        content: '';
        position: absolute;
        width: 30px;
        height: 30px;
        background-color: rgb(54 93 151 / 25%);
        border-radius: 50%;
        top: 5px;
        z-index: -1;
        left: -8px;
    }

    .sts_icn_default img {
        width: 60%;
        margin-top: 5px;
    }

.link {
    width: 100%;
}

.link_box {
    width: 100%;
    padding: 1px 10px;
    color: #000;
    background: #f9f9f9;
    position: relative;
    z-index: 0;
    margin-top: 10px;
    border-radius: 6px;
}

    .link_box h5 {
        margin: 10px 0;
        background-color: #d2e0ff;
        padding: 6px;
    }

.link {
    width: 100%;
}

    .link a {
        width: 100%;
        padding: 14px 10px;
        color: #393939;
        cursor: pointer;
        font-size: 16px;
        border-bottom: 1px solid #678fe7;
    }

        .link a:hover {
            background-color: #F7F7F7;
        }

    .link img {
        width: 40px;
        height: 24px;
        float: left;
        margin-right: 6px;
        margin-top: 14px;
    }

    .link a:before {
        background-color: #b49c73;
        content: "";
        width: 2px;
        height: 30px;
        position: absolute;
        right: 20px;
    }

.login-panel span {
    line-height: 38px;
    margin-right: 10px;
}

.login-panel img {
    width: 20px;
    height: 20px;
}
/*tab css start*/
.box_area {
    margin-top: 8px;
    padding: 10px;
}

    .box_area h5 {
    }

.tabs_wrapper {
    margin: 0 auto;
    padding-top: 20px;
}

ul.tabs {
    display: inline-block;
    vertical-align: top;
    position: relative;
    z-index: 10;
    padding: 0;
    min-width: 175px;
    list-style: none;
}

    ul.tabs li {
        cursor: pointer;
        padding: 16px;
        display: inline;
        color: white;
        text-align: left;
        background-color: #5376de;
        border-bottom: 1px solid #37373f;
        /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#600026", endColorstr="#c60943", GradientType=0);
        /* IE6-9 */
        margin-right: -3px;
    }

        ul.tabs li:hover {
            color: white;
        }

        ul.tabs li.active {
            background: #f6ace0;
            color: #000;
            position: relative;
        }

            ul.tabs li.active::after {
                content: "";
                position: absolute;
                border-left: 12px solid transparent;
                border-right: 12px solid transparent;
                border-bottom: 12px solid transparent;
                border-top: 12px solid #f6ace0;
                right: 58%;
                margin-right: -23px;
                top: 48px;
            }

.tab_container {
    display: inline-block;
    vertical-align: top;
    position: relative;
    min-width: 10px;
    text-align: left;
    width: 100%;
}

    .tab_container h4 {
        padding-bottom: 8px;
        border-bottom: 1px dashed #ccc;
        font-size: 18px;
    }

.tab_drawer_heading {
    min-display: none;
}

.tabs li::before {
    content: "";
    background-image: url(../images/left-arrow.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 14px;
    width: 19px;
    height: 20px;
}

.service_box {
    background: #fff;
    padding: 20px 10px;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease 0s;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    box-shadow: 0 5px 10px #dfdfdf;
    border-bottom: #f9c3cb 2px solid;
}

    .service_box:hover {
        margin-top: -2px;
    }

    .service_box img {
        width: 30px;
    }

    .service_box a {
        color: #000;
    }

        .service_box a:hover {
            color: #000;
        }
/*tab css end*/
@media screen and (max-width: 767px) {
    ul.tabs {
        display: block;
    }

    .tab_container {
        display: block;
        margin: 0 auto;
        width: 100%;
        border-top: none;
        border-radius: 0;
    }

    .tab_drawer_heading {
        background-color: #017aff;
        color: #fff;
        margin-bottom: 1px;
        padding: 20px;
        display: block;
        cursor: pointer;
        font-size: 16px;
    }

        .tab_drawer_heading:hover {
            background: #022245;
            color: white;
        }

    .d_active {
        background: #022245;
        color: #fff;
    }

    .heading-home h3 {
        font-size: 16px;
    }

    .heading-home h1 {
        font-size: 30px;
    }

    .tab_container h4 {
        font-size: 16px;
    }

    .lp_bg {
        background-size: cover !important;
    }

    .login_corner-form {
        width: 96% !important;
        margin: 0 auto;
        float: none;
        box-shadow: none;
        border-radius: 10px;
    }

    .login_corner {
        margin: 10px auto;
        padding: 10px auto;
    }

    .container_lp h1 {
        font-size: 30px;
        text-align: center;
    }

    .container_lp p {
        text-align: center;
        font-size: 16px;
    }

    .inner-container {
        margin-top: 0px;
    }

    .container_lp {
        width: 90%;
    }

    .title_box {
        margin: 20px 0px;
    }

        .title_box h1 {
            font-size: 36px;
        }

    .side_button {
        top: 45%;
    }

    a.status_box {
        width: 100%;
        float: none;
    }

    @media screen and (min-width: 768px) and (max-width: 1200px) {
        .lp_bg {
            background-size: 150% !important;
        }

        .title_box h1 {
            color: #fff;
            font-weight: 100;
            font-size: 40px;
        }

        .login_corner-form {
            width: 100%;
        }
    }
}
/*animation css onload*/
.drop-in {
    animation: drop-in 1s ease 200ms backwards;
}

.drop-in-2 {
    animation: drop-in 1200ms ease 500ms backwards;
}

@keyframes drop-in {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translate(0px);
    }
}
/*back button*/
.backbtn_area {
    width: 40px;
    height: 40px;
    border-radius: 20%;
}

.back_btn {
    padding: 2px;
    border: none;
    border-radius: 20%;
    transition: 0.5s;
}

    .back_btn img {
        width: 100%;
    }

    .back_btn:hover {
        padding: 2px;
        border: none;
        border-radius: 20%;
    }

.file-upload {
    height: 38px;
    width: 38px;
    border-radius: 100px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid #FFFFFF;
    overflow: hidden;
    background-image: linear-gradient(to bottom, #2590EB 50%, #f9d423 50%);
    background-size: 100% 200%;
    transition: all 1s;
    margin: 0 auto;
}

    .file-upload input[type=file] {
        height: 38px;
        width: 38px;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        cursor: pointer;
    }

    .file-upload:hover {
        background-position: 0 -100%;
        color: #2590EB;
    }




#popup_common {
    /* height: 28px; */
    font-size: 13px;
    position: absolute;
    background-color: #fff;
    z-index: 999;
    border-radius: 6px;
    text-align: center;
    transition: 0.5s;
    left: 0;
    right: 0;
    width: 40%;
    margin: 0 auto;
    top: 100px;
    font-size: 18px;
    color: #9d9d9d;
    box-shadow: 20px 9px 10px #0000003b;
    border: 4px solid #fff;
}

    #popup_common a {
        color: #7a6aaf;
        text-decoration: underline;
        padding: 0 6px;
        background-color: #fff;
        border-radius: 3px;
        position: absolute;
        top: 7px;
        right: 6px;
        font-size: 11px;
    }

.popup-header {
    background-color: #8e7fad;
    padding: 6px;
    color: #000;
    border-radius: 6px 6px 0 0;
    color: #fff;
    text-align: left;
}

.overlay_popup {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


.MobileOtp {
    padding-left: 15px;
    letter-spacing: 42px;
    border: 0;
    background-image: linear-gradient(to left, black 70%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 50px 1px;
    background-color: #f3f3f3;
    background-repeat: repeat-x;
    background-position-x: 35px;
    width: 220px;
    outline: none;
}

.EmailOtp {
    padding-left: 15px;
    letter-spacing: 42px;
    border: 0;
    background-image: linear-gradient(to left, black 70%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 50px 1px;
    background-color: #f3f3f3;
    background-repeat: repeat-x;
    background-position-x: 35px;
    width: 220px;
    outline: none;
}

@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@500;600;700&family=Poppins:wght@100;300;400;500&display=swap');

* {
    box-sizing: border-box !important;
}

a {
    text-decoration: none !important;
}

    a:hover {
        cursor: pointer;
    }

img {
    vertical-align: middle;
    border-style: none;
    max-width: 100%;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
/*font-family: 'Playfair Display', serif;*/
p {
    line-height: 22px;
}

div:after {
    content: '';
    display: block;
    clear: both;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    position: relative;
}

.about_bg {
    width: 100%;
}

    .about_bg img {
        width: 100%;
    }

    .about_bg p {
        font-size: 15px !important;
        line-height: 26px;
    }

    .about_bg h2 {
        position: relative;
        margin: 0 auto 20px;
    }

        .about_bg h2:after {
            content: "";
            position: absolute;
            left: 15px;
            background-image: url("../image/a-icn.svg");
            background-repeat: no-repeat;
            height: 40px;
            width: 40px;
            top: 0px;
        }

        .about_bg h2:before {
            content: "";
            position: absolute;
            right: 15px;
            background-image: url("../image/a-icn.svg");
            background-repeat: no-repeat;
            height: 40px;
            width: 40px;
            top: 0px;
        }

a.read_more {
    margin: 0px;
}

a.read_more {
    background-color: transparent;
    border: 2px solid #f9d423;
    padding: 6px 10px;
    color: #4A4A4A;
    transition: 0.5s all;
    border-radius: 20px;
}

a:hover.read_more {
    color: #000;
    background-color: #f9d423;
}

.address {
    padding: 20px;
    background: linear-gradient(90deg, rgb(251 231 243) 0%, #e9ecef 100%);
    border: 1px solid #fff;
    width: 40%;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 20px 30px #00000045;
}

    .address img {
        width: 10%;
    }

.footer_home {
    text-align: center;
    color: #000;
    width: 100%;
    padding: 1px 0;
    background: linear-gradient(45deg, #9d5667 0%, #829fe3 100%);
    position: absolute;
    bottom: 0;
    font-size: 12px;
}

.footer {
    text-align: center;
    color: #000;
    width: 100%;
    padding: 1px 0;
    background: linear-gradient(45deg, #9d5667 0%, #829fe3 100%);
    position: relative;
    font-size: 12px;
}
/*custom css*/
.body_bg {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("../image/bg_2.webp");
    background-size: cover;
    z-index: -999;
    background-repeat: no-repeat;
    bottom: 0;
}

.overlay {
    background: -webkit-radial-gradient(top, #ffffff, #e4e4e4de);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.preheader {
    width: 100%;
    background: linear-gradient(45deg, #9d5667 0%, #829fe3 100%);
}

    .preheader a {
        color: #fff;
        padding: 10px;
        background-color: #193f917a;
        transition: 0.5s all;
    }

        .preheader a:hover {
            background-color: #0938a6;
            color: #fff;
        }

.login-panel {
    color: #fff;
    position: relative;
}

    .login-panel p {
        margin: 0;
        /* margin-top: 4px; */
        background-color: #f9d423;
        position: absolute;
        left: -67px;
        padding: 10px;
        color: #fff;
    }

        .login-panel p:after {
            content: '';
            width: 0;
            height: 0;
            border-top: 13px solid transparent;
            border-bottom: 11px solid transparent;
            border-left: 11px solid #f9d423;
            position: absolute;
            right: -6px;
        }

.address-area {
    color: #000;
    font-size: 18px;
}

.address-area {
    padding: 10px 10px 10px 50px;
    margin: 0;
}

    .address-area p {
        margin: 2px 0;
        font-size: 16px;
        padding: 2px 0;
        color: #000;
        position: relative;
        text-decoration: none;
    }

    .address-area ul {
        margin: 0;
        padding: 0;
    }

        .address-area ul li {
            padding: 10px;
            list-style: circle;
        }

.cube {
    position: absolute;
    top: 80vh;
    left: 45vw;
    width: 10px;
    height: 10px;
    background: rgba(0, 5, 255, 1.00);
    transform-origin: top left;
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    -webkit-animation: cube 5s ease-in forwards infinite;
    animation: cube 5s ease-in forwards infinite;
    border-radius: 100%;
}

    .cube:nth-child(2n) {
        background: rgba(0, 5, 255, 1.00);
    }

    .cube:nth-child(2) {
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
        left: 25vw;
        top: 40vh;
    }

    .cube:nth-child(3) {
        -webkit-animation-delay: 3s;
        animation-delay: 3s;
        left: 75vw;
        top: 50vh;
    }

    .cube:nth-child(4) {
        -webkit-animation-delay: 4s;
        animation-delay: 4s;
        left: 90vw;
        top: 10vh;
    }

    .cube:nth-child(5) {
        -webkit-animation-delay: 7s;
        animation-delay: 7s;
        left: 10vw;
        top: 85vh;
    }

    .cube:nth-child(6) {
        -webkit-animation-delay: 9s;
        animation-delay: 9s;
        left: 50vw;
        top: 10vh;
    }

    .cube:nth-child(7) {
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
        left: 15vw;
        top: 20vh;
    }

    .cube:nth-child(8) {
        -webkit-animation-delay: 3s;
        animation-delay: 3s;
        left: 10vw;
        top: 20vh;
    }

    .cube:nth-child(9) {
        -webkit-animation-delay: 4s;
        animation-delay: 4s;
        left: 70vw;
        top: 30vh;
    }

    .cube:nth-child(10) {
        -webkit-animation-delay: 7s;
        animation-delay: 7s;
        left: 40vw;
        top: 85vh;
    }

    .cube:nth-child(11) {
        -webkit-animation-delay: 9s;
        animation-delay: 9s;
        left: 60vw;
        top: 10vh;
    }

@-webkit-keyframes cube {
    from {
        transform: scale(0) rotate(0deg) translate(-50%, -50%);
        opacity: .2;
    }

    to {
        transform: scale(10) rotate(960deg) translate(-50%, -50%);
        opacity: 0;
    }
}

@keyframes cube {
    from {
        transform: scale(0) rotate(0deg) translate(-50%, -50%);
        opacity: .2;
    }

    to {
        transform: scale(10) rotate(960deg) translate(-50%, -50%);
        opacity: 0;
    }
}

.add-list-button {
    display: inline-block;
    margin-left: 10px
}

    .add-list-button .btn i {
        font-size: 14px;
        display: inline-block;
        margin-right: 5px
    }

.caption {
    background: url("../image/top_banner.webp");
    background-repeat: no-repeat;
    height: 250px;
}

    .caption .button .btn {
        background-color: transparent;
        border: 2px solid #fff;
        color: #fff;
        padding: 12px 30px;
        margin-top: 30px;
    }

        .caption .button .btn:hover {
            background-color: #1F2B84;
            color: #fff;
        }

.home_link {
    float: left;
}

a {
    text-decoration: none;
}

p {
    line-height: 24px
}

.float_left {
    float: left;
}

.float_right {
    float: right;
}

.top-bg {
    color: #000;
    text-align: center;
    font-size: 25px;
    width: 100%;
    top: 0;
    z-index: 0;
    padding: 10px 0;
    position: relative;
}

    .top-bg h1 {
        padding: 0;
        margin: 0 0 7px;
        font-weight: 700;
    }

    .top-bg h3 {
        padding: 0;
        margin: 0;
    }

    .top-bg h2 {
        position: relative;
        width: 180px;
        margin: 0 auto;
        font-size: 22px;
    }

        .top-bg h2:after {
            content: "";
            position: absolute;
            left: 0;
            background-image: url("../image/a-icn.svg");
            background-repeat: no-repeat;
            height: 26px;
            width: 26px;
            top: 0px;
        }

        .top-bg h2:before {
            content: "";
            position: absolute;
            right: 0;
            background-image: url("../image/a-icn.svg");
            background-repeat: no-repeat;
            height: 26px;
            width: 26px;
            top: 0px;
        }

.srvc_logo {
    float: left;
}

@media screen and (min-width: 320px) and (max-width: 767px) {
    .login_outer {
        width: 100% !important;
        margin: 4px auto;
    }

    .address {
        width: 80%;
    }

    .login_info {
        display: none;
    }

    .forgot_Password {
        width: 100%;
    }

    .otp_screen {
        padding: 10px !important;
        margin-bottom: 10px !important;
    }
}

@media screen and (min-width: 320px) and (max-width: 1200px) {
    .body_bg {
        position: relative;
    }

    .login_bg {
        position: relative;
    }
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(0deg);
        opacity: 0;
        border-radius: 100%;
    }
}
/* Service box start*/
.practice_area {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: -80px;
}

    .practice_area.practice_area2 {
        padding-top: 15px;
        padding-bottom: 0;
    }

    .practice_area .single_practice {
        margin: 12px 0;
        position: relative;
        background-size: contain;
        background-repeat: no-repeat;
        background: center;
        box-shadow: 0 0 10px #4976df4a;
    }

        .practice_area .single_practice .practice_hover {
            position: relative;
            padding: 15px 0;
            width: 100%;
            background: rgb(255 255 255);
            top: 50%;
        }

            .practice_area .single_practice .practice_hover h3 {
                font-size: 16px;
                color: #000000;
                font-family: "Poppins", sans-serif;
                margin: 8px 0;
            }

            .practice_area .single_practice .practice_hover p {
                font-size: 16px;
                color: #C7C7C7;
            }

        .practice_area .single_practice .practice_hover {
            position: relative;
            top: 10%;
            -webkit-transform: translateY(0%) translateY(0px);
            -moz-transform: translateY(0%) translateY(0px);
            -ms-transform: translateY(0%) translateY(0px);
            transform: translateY(0%) translateY(0px);
            right: 0;
            left: 0;
            text-align: center;
            -webkit-transition: 0.3s;
            -moz-transition: 0.3s;
            -o-transition: 0.3s;
            transition: 0.3s;
        }

            .practice_area .single_practice .practice_hover .hover_inner .lern_more {
                color: #fff;
                font-size: 16px;
                font-weight: 400;
                opacity: 1;
                margin-top: 10px;
                /*  visibility: hidden;*/
                transition: 0.5s;
                padding: 10px;
                cursor: pointer;
                background: linear-gradient(45deg, #866fd7 0%, #4976df 100%);
                border-radius: 20px;
            }

    .practice_area .single_practice {
        transition: 0.5s;
    }

        .practice_area .single_practice:hover {
            opacity: 1;
            visibility: visible;
            transition: 0.5s;
        }

        .practice_area .single_practice:hover {
            -webkit-transform: translateY(-2%) translateY(-25px);
            -moz-transform: translateY(-2%) translateY(-25px);
            -ms-transform: translateY(-2%) translateY(-25px);
            transform: translateY(-2%) translateY(-25px);
        }

.boxinner_content {
    position: relative;
    vertical-align: top;
    padding: 10px;
}

    .boxinner_content img {
        position: relative;
        width: 40px;
        height: auto;
    }

.date {
    text-align: left;
    color: #fff;
    width: 90%;
    margin: 0 auto;
}

    .date table {
        width: 100%;
        margin-bottom: 30px;
    }

        .date table td {
            border: 0.5px solid #e7e7e7;
            padding: 3px;
            border-collapse: collapse;
            color: #636363;
        }
/* Service box End*/
.side_button {
    position: absolute;
    top: 186px;
    z-index: 999;
    left: 8px !important;
    border: navajowhite;
    writing-mode: vertical-lr;
    display: inline-block;
    height: 115px;
}

    .side_button a {
        text-orientation: mixed;
        padding: 10px 12px;
        background: linear-gradient(45deg, #866fd7 0%, #4976df 100%);
        transition: 0.5s;
        color: #fff;
        border-radius: 0 20px 20px 0;
    }

        .side_button a:hover {
            color: #fff;
        }

.innerpage_heading {
    position: relative;
}

    .innerpage_heading h4 {
        padding: 8px 0 8px 24px;
        color: #fff;
        background: linear-gradient(45deg, #7945a6 0%, #4976df 100%);
        font-size: 20px !important;
        font-size: 20px !important;
    }

        .innerpage_heading h4:before {
            content: "";
            height: 23px;
            width: 10px;
            background-color: #f9d423;
            position: absolute;
            left: 8px;
        }

.drawer {
    display: none;
}

.drawer_overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    opacity: 0;
    transition: opacity 0.3s;
    will-change: opacity;
    background-color: #000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.drawer_header {
    padding: 10px 0 0;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    border-bottom: 1px solid #dde7ff;
}

.drawer_close {
    /* Optional */
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    background-image: url("../image/cross_icn.svg");
    display: block;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    margin-left: 1rem;
    position: absolute;
    right: 20px;
    z-index: 999;
    background-color: transparent;
}

.drawer_wrapper {
    position: fixed;
    top: 100px;
    right: 0;
    width: 100%;
    max-width: 380px;
    z-index: 9999;
    overflow: auto;
    transition: transform 0.3s;
    will-change: transform;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    -webkit-transform: translate3d(103%, 0, 0);
    transform: translate3d(103%, 0, 0); /* extra 3% because of box-shadow */
    -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
    /* Optional */
    box-shadow: 0 2px 6px #777;
}

.drawer_content {
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    flex-grow: 1;
    /* Optional */
}

.drawer-left .drawer_wrapper {
    left: 0;
    right: auto;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.drawer.is-active {
    display: block;
}

.drawer.is-visible .drawer_wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.drawer.is-visible .drawer_overlay {
    opacity: 0.5;
}


/* Dashboardpage-css start*/
.tabcontent_bg {
    background-color: #fbf3e4;
    border: 1px solid #fbecd2;
    border-radius: 6px;
}

.wht_box {
    background-color: transparent;
}

    .wht_box a {
        display: block;
        font-size: 30px;
        transition: 0.5s all;
    }

    .wht_box h5 {
        margin: 0;
        padding: 0;
    }
/*.wht_box h5:before {
  content: "";
  position: absolute;
  left: 0;
  height: 15px;
  width: 10px;
  background-color: #d78f64;
  top: 6px;
}*/
.status_box {
    width: 25%;
    padding: 4px;
    margin: 10px 0;
    color: #000;
    background: rgb(247 245 255);
    border: 1px solid #e9e9e9;
    position: relative;
    z-index: 0;
}

.pendingbg {
    background-color: #b6e796;
}

.rejectbg {
    background-color: #f9c3cb;
}

.approvebg {
    background-color: #9da4e3;
}

.defaultbg {
    background-color: #9bd3df;
}
/*.status_box:before {
  content: '';
  width: 40px;
  height: 40px;
  background: #ededed;
  left: 0;
  top: 0;
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}*/
.status_box h6 {
    color: #000;
    font-size: 16px;
}

a.status_box {
    /*color: #fff;*/
    font-size: 30px;
    font-weight: 700;
    width: 25%;
    float: left;
    padding: 10px;
}

    a.status_box:hover {
        color: #454444;
        background-color: #fff;
    }
/*status icon pendind strat CSS*/
.sts_icn_pnding {
    width: 40px;
    float: right;
    height: 40px;
    background-color: #76ab54;
    border-radius: 50%;
    margin-top: -20px;
    text-align: center;
    position: relative;
    z-index: 0;
}

    .sts_icn_pnding:after {
        content: '';
        position: absolute;
        width: 30px;
        height: 30px;
        background-color: rgb(81 101 69);
        border-radius: 50%;
        top: 5px;
        z-index: -1;
        left: -8px;
    }

    .sts_icn_pnding img {
        width: 60%;
        margin-top: 5px;
    }
/*status icon Approved strat CSS*/
.sts_icn_approved {
    width: 40px;
    float: right;
    height: 40px;
    background-color: #515791;
    border-radius: 50%;
    margin-top: -20px;
    text-align: center;
    position: relative;
    z-index: 0;
}

    .sts_icn_approved:after {
        content: '';
        position: absolute;
        width: 30px;
        height: 30px;
        background: rgba(133, 145, 249, 0.8);
        border-radius: 50%;
        top: 5px;
        z-index: -1;
        left: -8px;
    }

    .sts_icn_approved img {
        width: 60%;
        margin-top: 5px;
    }
/*status icon rejected strat CSS*/
.sts_icn_rejected {
    width: 40px;
    float: right;
    height: 40px;
    background-color: #d37c89;
    border-radius: 50%;
    margin-top: -20px;
    text-align: center;
    position: relative;
    z-index: 0;
}

    .sts_icn_rejected:after {
        content: '';
        position: absolute;
        width: 30px;
        height: 30px;
        background-color: rgb(255 125 119 / 50%);
        border-radius: 50%;
        top: 5px;
        z-index: -1;
        left: -8px;
    }

    .sts_icn_rejected img {
        width: 60%;
        margin-top: 5px;
    }
/*status icon Default strat CSS*/
.sts_icn_default {
    width: 40px;
    float: right;
    height: 40px;
    background-color: #61b3c5;
    border-radius: 50%;
    margin-top: -20px;
    text-align: center;
    position: relative;
    z-index: 0;
}

    .sts_icn_default:after {
        content: '';
        position: absolute;
        width: 30px;
        height: 30px;
        background-color: rgb(54 93 151 / 25%);
        border-radius: 50%;
        top: 5px;
        z-index: -1;
        left: -8px;
    }

    .sts_icn_default img {
        width: 60%;
        margin-top: 5px;
    }

.link {
    width: 100%;
}

.link_box {
    width: 100%;
    padding: 1px 10px;
    color: #000;
    background: #f9f9f9;
    position: relative;
    z-index: 0;
    margin-top: 10px;
    border-radius: 6px;
}

    .link_box h5 {
        margin: 10px 0;
        background-color: #d2e0ff;
        padding: 6px;
    }

.link {
    width: 100%;
}

    .link a {
        width: 100%;
        padding: 14px 10px;
        color: #393939;
        cursor: pointer;
        font-size: 16px;
        border-bottom: 1px solid #678fe7;
    }

        .link a:hover {
            background-color: #F7F7F7;
        }

    .link img {
        width: 40px;
        height: 24px;
        float: left;
        margin-right: 6px;
        margin-top: 14px;
    }

    .link a:before {
        background-color: #b49c73;
        content: "";
        width: 2px;
        height: 30px;
        position: absolute;
        right: 20px;
    }

.login-panel span {
    line-height: 38px;
    margin-right: 10px;
}

.login-panel img {
    width: 20px;
    height: 20px;
}
/*tab css start*/
.box_area {
    margin-top: 8px;
    padding: 10px;
}

    .box_area h5 {
    }

.tabs_wrapper {
    margin: 0 auto;
    padding-top: 20px;
}

ul.tabs {
    display: inline-block;
    vertical-align: top;
    position: relative;
    z-index: 10;
    padding: 0;
    min-width: 175px;
    list-style: none;
}

    ul.tabs li {
        cursor: pointer;
        padding: 16px 8px;
        display: inline;
        color: white;
        text-align: left;
        background-color: #5376de;
        border-bottom: 1px solid #37373f;
        /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#600026", endColorstr="#c60943", GradientType=0);
        /* IE6-9 */
        margin-right: -3px;
    }

        ul.tabs li:hover {
            color: white;
        }

        ul.tabs li.active {
            background: #f6ace0;
            color: #000;
            position: relative;
        }

            ul.tabs li.active::after {
                content: "";
                position: absolute;
                border-left: 12px solid transparent;
                border-right: 12px solid transparent;
                border-bottom: 12px solid transparent;
                border-top: 12px solid #f6ace0;
                right: 58%;
                margin-right: -23px;
                top: 48px;
            }

.tab_container {
    display: inline-block;
    vertical-align: top;
    position: relative;
    min-width: 10px;
    text-align: left;
    width: 100%;
}

    .tab_container h4 {
        padding-bottom: 8px;
        border-bottom: 1px dashed #ccc;
        font-size: 18px;
    }

.tab_drawer_heading {
    min-display: none;
}

.tabs li::before {
    content: "";
    background-image: url(../images/left-arrow.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 14px;
    width: 19px;
    height: 20px;
}

.service_box {
    background: #fff;
    padding: 20px 10px;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease 0s;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    box-shadow: 0 5px 10px #dfdfdf;
    border-bottom: #f9c3cb 2px solid;
}

    .service_box:hover {
        margin-top: -2px;
    }

    .service_box img {
        width: 30px;
    }

    .service_box a {
        color: #000;
    }

        .service_box a:hover {
            color: #000;
        }
/*tab css end*/
@media screen and (max-width: 767px) {

    ul.tabs li {
        display: block !important;
    }

    ul.tabs {
        display: block;
    }

    .tab_container {
        display: block;
        margin: 0 auto;
        width: 100%;
        border-top: none;
        border-radius: 0;
    }

    .tab_drawer_heading {
        background-color: #017aff;
        color: #fff;
        margin-bottom: 1px;
        padding: 20px;
        display: block;
        cursor: pointer;
        font-size: 16px;
    }

        .tab_drawer_heading:hover {
            background: #022245;
            color: white;
        }

    .d_active {
        background: #022245;
        color: #fff;
    }

    .heading-home h3 {
        font-size: 16px;
    }

    .heading-home h1 {
        font-size: 30px;
    }

    .tab_container h4 {
        font-size: 16px;
    }

    .lp_bg {
        background-size: cover !important;
    }

    .login_corner-form {
        width: 96% !important;
        margin: 0 auto;
        float: none !important;
        box-shadow: none;
        border-radius: 10px;
    }

    .login_corner {
        margin: 10px auto;
        padding: 10px auto;
    }

    .container_lp h1 {
        font-size: 30px;
        text-align: center;
    }

    .container_lp p {
        text-align: center;
        font-size: 16px;
    }

    .inner-container {
        margin-top: 0px;
    }

    .container_lp {
        width: 90%;
    }

    .title_box {
        margin: 20px 0px;
    }

        .title_box h1 {
            font-size: 36px;
        }

    .side_button {
        top: 45%;
    }

    a.status_box {
        width: 100%;
        float: none;
    }

    @media screen and (min-width: 768px) and (max-width: 1200px) {
        .lp_bg {
            background-size: 150% !important;
        }

        .title_box h1 {
            color: #fff;
            font-weight: 100;
            font-size: 40px;
        }

        .login_corner-form {
            width: 100%;
        }
    }
}
/*animation css onload*/
.drop-in {
    animation: drop-in 1s ease 200ms backwards;
}

.drop-in-2 {
    animation: drop-in 1200ms ease 500ms backwards;
}

@keyframes drop-in {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translate(0px);
    }
}
/*back button*/
.backbtn_area {
    width: 40px;
    height: 40px;
    border-radius: 20%;
}

.back_btn {
    padding: 2px;
    border: none;
    border-radius: 20%;
    transition: 0.5s;
}

    .back_btn img {
        width: 100%;
    }

    .back_btn:hover {
        padding: 2px;
        border: none;
        border-radius: 20%;
    }

.file-upload {
    height: 38px;
    width: 38px;
    border-radius: 100px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid #FFFFFF;
    overflow: hidden;
    background-image: linear-gradient(to bottom, #2590EB 50%, #f9d423 50%);
    background-size: 100% 200%;
    transition: all 1s;
    margin: 0 auto;
}

    .file-upload input[type=file] {
        height: 38px;
        width: 38px;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        cursor: pointer;
    }

    .file-upload:hover {
        background-position: 0 -100%;
        color: #2590EB;
    }
/*****login page start***********************************************************/
.login_outer {
    min-width: 320px;
    width: 720px;
    margin: 10px auto;
    position: relative;
}

.login_corner {
    width: 100%;
    float: right;
    margin: 5% 0;
    position: relative;
}

.login_corner-form {
    position: relative;
    background: #e2e2e2;
    padding: 20px 40px;
    text-align: center;
    border-radius: 0 10px 10px 0;
    width: 60%;
    float: left;
}

.login_info h4 {
    font-size: 18px;
    margin-top: 10px;
}

.login_corner-form h5 {
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.login_corner-form .login_input {
    text-align: left;
}

    .login_corner-form .login_input .login_inputBox {
        margin-top: 10px;
    }

        .login_corner-form .login_input .login_inputBox label {
            display: block;
            color: #000;
            margin-bottom: 5px;
            letter-spacing: 1px;
        }

        .login_corner-form .login_input .login_inputBox input {
            position: relative;
            width: 100%;
            height: 40px;
            border: none;
            outline: none;
            padding: 5px 15px;
            color: #000;
            background-color: #f3f3f3;
        }

.login_corner-form .login_submit_btn input {
    position: relative;
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    padding: 5px 15px;
    background: linear-gradient(45deg, #866fd7 0%, #4976df 100%);
    color: #fff;
    transition: 0.5s;
    border-radius: 10px;
    margin-bottom: 4px;
}

    .login_corner-form .login_submit_btn input:hover {
        background-color: #9d793b;
    }

.login_corner-form .login_input .login_inputBox input[type="submit"] {
    cursor: pointer;
    margin-top: 20px;
    letter-spacing: 1px;
}

    .login_corner-form .login_input .login_inputBox input[type="submit"]:hover {
        background: linear-gradient(315deg, #5d02ff, #e91e63);
    }

.login_corner-form .input .login_inputBox input[type="submit"]:active {
    color: rgba(255, 255, 255, 0.521);
    background: linear-gradient(315deg, #e91e6271, #5f02ff8c);
}

.login_forgot {
    margin-top: 10px;
    color: #000;
    font-size: 14px;
    letter-spacing: 1px;
}

    .login_forgot a {
        color: #65c466;
    }

.login_
_area {
    height: 42px;
    background-color: #fff;
    padding: 10px;
    margin: 22px 0;
    border: 1px solid #e5ddcf;
}

.login_c-img {
    width: 25%;
}

.login_captcha_area input {
    width: 45%;
    padding: 4px;
    height: 22px;
    border: 1px solid #e5ddcf;
}

    .login_captcha_area input:focus-visible {
        border: 1px solid #95dede !important;
    }

.login_captha_icn {
    width: 7%;
    margin-left: 8px;
}

.login_bg {
    background-image: url("../image/login-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

.login_overlay {
    background-color: rgb(237 240 246 / 86%);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}
/*****Login registration button css start***********************************************************/
.login_corner-form .login_register_btn input {
    position: relative;
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    padding: 5px 15px;
    background: linear-gradient(45deg, #f9d423 0%, #ff5448 100%);
    color: #fff;
    transition: 0.5s;
    border-radius: 10px;
    margin-bottom: 4px;
}

.login_info {
    float: left;
    width: 40%;
    background: linear-gradient(151deg, #516eb6 0%, rgb(156 88 107) 100%);
    padding: 100px 20px;
    height: 445px;
    border-radius: 10px 0 0 10px;
    font-size: 20px;
    color: #fff
}
/*****forgot Password page css start***********************************************************/
.forgot_Password {
    position: relative;
    background: #ffffff;
    padding: 20px 40px;
    text-align: center;
    border-radius: 10px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 0 40px #a7b1ef9e;
}

@media screen and (min-width: 320px) and (max-width: 576px) {
    .forgot_Password {
        width: 96%;
        margin: 0 auto;
    }

    .forgot_info {
        display: none;
    }
}

.forgot_Password .login_inputBox input {
    position: relative;
    width: 100%;
    border: none;
    outline: none;
    padding: 5px 15px;
    color: #000;
    background-color: #f3f3f3;
    margin-bottom: 10px;
}

    .forgot_Password .login_inputBox input[type='radio'] {
        width: auto !important;
        height: auto !important;
        margin: 0 5%;
    }



.forgot_Password .login_submit_btn {
    text-align: center;
    margin-top: 10px;
}

    .forgot_Password .login_submit_btn input {
        position: relative;
        height: 50px;
        border: none;
        outline: none;
        padding: 5px 15px;
        background: linear-gradient(45deg, #866fd7 0%, #4976df 100%);
        color: #fff;
        transition: 0.5s;
        border-radius: 10px;
        margin-bottom: 4px;
    }

.forgot_info {
    position: absolute;
    z-index: 99;
}

.profile_detail {
    background-color: #fff;
    box-shadow: 0 0 10px #ccc;
    border-radius: 10px;
    padding: 10px;
}

.welcomeuser {
    position: absolute;
    right: 30px;
    top: 7px;
}

    .welcomeuser p {
        color: #fff;
    }

    .welcomeuser span {
        color: #f9d423;
    }

.logout_btn a {
    background-color: #FFAE00;
    padding: 0 6px 4px;
    border-radius: 4px;
    color: #000;
    margin-left: 10px;
    border: 1px solid #FFA600;
    transition: 0.5s;
}

    .logout_btn a:hover {
        background-color: #FF6E00;
        color: #fff;
    }

.forgot_Password .login_input {
    text-align: left;
}

.signup_heading {
    text-align: left;
    margin: 20px 0;
}

    .signup_heading h5 {
        font-size: 30px;
        text-align: center;
    }

    .signup_heading img {
        width: 60px;
    }

.login_corner-form .login_submit_btn input {
    position: relative;
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    padding: 5px 15px;
    background: linear-gradient(45deg, #866fd7 0%, #4976df 100%);
    color: #fff;
    transition: 0.5s;
    border-radius: 10px;
    margin-bottom: 4px;
}

.otp_screen .login_inputBox input {
    position: relative;
    width: 100%;
    height: 50px;
    outline: none;
    padding: 15px 11px;
    color: #000;
    background-color: #f3f3f3;
    margin-bottom: 10px;
    border: 1px solid #b480fc;
    border-radius: 10px;
    width: 8%;
    margin-right: 4px;
}

.otp_screen .login_submit_btn {
    text-align: center;
    margin-top: 10px;
}

    .otp_screen .login_submit_btn input {
        position: relative;
        height: 50px;
        border: none;
        outline: none;
        padding: 15px 11px;
        background: linear-gradient(45deg, #866fd7 0%, #4976df 100%);
        color: #fff;
        transition: 0.5s;
        border-radius: 10px;
        margin-bottom: 4px;
    }

.otp_screen {
    position: relative;
    padding: 20px 20px;
    background-color: #ffffff8a;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.login_submit_btn input {
    position: relative;
    height: 40px;
    border: none;
    outline: none;
    padding: 5px 15px;
    background: linear-gradient(45deg, #866fd7 0%, #4976df 100%);
    color: #fff;
    transition: 0.5s;
    border-radius: 10px;
    margin-bottom: 4px;
}

    .login_submit_btn input:hover {
        background-color: #9d793b;
    }

.otp-container {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 20px;
}

#timer {
    margin-right: 10px;
}

#resend-btn {
    padding: 2px 6px;
    background-color: #337ab7;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    margin-left: 4px;
}

    #resend-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

#timer1 {
    margin-right: 10px;
}

#resend-btn1 {
    padding: 2px 6px;
    background-color: #337ab7;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    margin-left: 4px;
}

    #resend-btn1:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }


.msg_box {
    margin: 100px 0 0;
}

    .msg_box .signup_heading {
        margin: 0;
    }

.profile_photo {
    text-align: center;
    width: 100%;
    border-radius: 50px;
}

    .profile_photo img {
        width: 30%;
        margin: 0 auto;
    }

.sbc_user_detail {
    width: 100%;
    background: linear-gradient(90deg, #4b74dd 0%, rgb(154 94 116) 100%);
    padding: 10px;
    border-radius: 5px;
    min-height: 70vh;
    height: 137vh;
}

    .sbc_user_detail h3 {
        color: #fff;
        text-align: center;
        font-size: 17px;
        margin: 0;
        padding: 6px 0 0;
    }

    .sbc_user_detail ul {
        margin: 0;
        padding: 0;
    }

        .sbc_user_detail ul li {
            padding: 14px 10px;
            text-align: left;
            color: #fff;
            position: relative;
            border-bottom: 1px solid #b1b1b17d;
        }

.pro_link {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

    .pro_link img {
        width: 20px;
        margin: 0 2px;
    }

.pass_link a {
    color: #000;
    transition: 0.5s;
    background-color: #ffee9f;
    padding: 3px 7px 4px;
    border-radius: 10px;
    font-size: 8px;
}

    .pass_link a:hover {
        transition: 0.5s;
        background-color: #e4cb58;
    }

@media screen and (min-width:320px) and (max-width:768px) {

    .sbc_user_detail {
        height: auto !important;
    }
}


.container-fluid {
    width: 98% !important;
    margin: 0 auto !important;
}

/*Css address by manish*/
.countdown-clock {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff7e5f, #feb47b); /* Gradient background */
    border-radius: 15px;
    padding: 5px 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: float 3s ease-in-out infinite, pulse 1.5s ease-in-out infinite; /* Combined animations */
    color: white; /* White text for contrast */
    font-size: 1.5em; /* Smaller font size */
    overflow: hidden; /* Hide overflow for wave effect */
}

.time {
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Text shadow for depth */
    position: relative; /* Position relative for wave effect */
}

.countdown-clock:hover .wave {
    animation: radio-wave 1s ease-in-out infinite; /* Radio wave animation on hover */
}

.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%; /* Adjust size for wave effect */
    height: 200%; /* Adjust size for wave effect */
    background: rgba(255, 255, 255, 0.3); /* Light wave color */
    border-radius: 50%; /* Make it circular */
    transform: translate(-50%, -50%) scale(0); /* Center and scale down */
    opacity: 0; /* Start invisible */
}

@keyframes radio-wave {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1; /* Start visible */
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0; /* Fade out */
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(-50%) translateZ(0);
    }

    50% {
        transform: translateY(-45%) translateZ(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}
/*.time:hover {
    
    transform: translateY(-50%) scale(1.1);*/ /* Scale up on hover */
/*box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);*/ /* Increase shadow on hover */
/*transition: transform 0.3s ease, box-shadow 0.3s ease;*/ /* Smooth transition for hover effect */
/*}*/
.countdown-clock:hover {
    animation: none; /* none; Stop floating and pulsing animations on hover */
    transform: translateY(-50%) scale(1.1); /* Scale up on hover */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); /* Increase shadow on hover */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effect */
}

/*.button-add:hover  {
    animation: pulse 0.6s infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}*/




.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-top: 12px;
    font-size: 15px;
    user-select: none; /* Prevent text selection */
    position: relative;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

    .custom-checkbox:hover {
        transform: scale(1.05); /* Slightly enlarge on hover */
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
    }

.hidden-checkbox {
    display: none; /* Hide the default checkbox */
}


.checkmarkCheckBox {
    width: 35px;
    height: 35px;
    position: relative;
    display: inline-block;
    background-color: aliceblue;
    margin-right: 25px;
    transition: background-color 0.3s, border-color 0.3s; /* Smooth transition */
}

.checkmarkCheckBox {
    width: 28px;
    height: 28px;
    border: solid white;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
}

    /* Animation for the checkmarkCheckBox */
    .checkmarkCheckBox::after {
        content: "";
        position: absolute;
        left: 15px; /* Adjusted for better positioning */
        top: 5px;
        width: 5px;
        height: 12px;
        border: solid transparent; /* Initially transparent */
        border-width: 0 2px 2px 0; /* Create a checkmarkCheckBox shape */
        transform: rotate(45deg); /* Rotate to form a checkmarkCheckBox */
        opacity: 0; /* Initially hidden */
        transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition */
    }

    /* When checked, show the checkmarkCheckBox */
    .checkmarkCheckBox.checked {
        background-color: #4CAF50; /* Green background when checked */
        border-color: #4CAF50; /* Match border color */
    }

        .checkmarkCheckBox.checked::after {
            border-color: white; /* White checkmarkCheckBox */
            opacity: 1; /* Show the checkmarkCheckBox */
            transform: scale(1); /* Scale to normal size */
        }

/* Animation for the text */
.checkbox-text {
    transition: color 0.3s, transform 0.3s; /* Smooth text color transition */
}

/* Change text color when checked */
.hidden-checkbox:checked + .checkmarkCheckBox + .checkbox-text {
    color: #4CAF50; /* Change text color when checked */
    transform: translateY(-2px); /* Slightly lift the text */
}

/* Text hover animation */
.checkbox-text:hover {
    color: #4CAF50; /* Change text color on hover */
    transform: scale(1.1); /* Slightly enlarge text on hover */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

/* Additional animations on hover */
.custom-checkbox:hover .checkmarkCheckBox {
    transform: rotate(5deg); /* Slight rotation on hover */
    transition: transform 0.3s ease; /* Smooth transition */
}

.custom-checkbox:hover .checkbox-text {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
    transition: text-shadow 0.3s ease; /* Smooth transition */
}

/* Radio wave effect */
.radio-wave {
    position: absolute;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.5); /* Light green color */
    animation: wave-animation 0.6s ease-out forwards;
    pointer-events: none; /* Prevent interaction */
}

@keyframes wave-animation {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}



/*//appliactionn no*/






@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}




.user-container {
    position: fixed;
    top: 60px; /* Adjusted distance from the top */
    right: 20px; /* Distance from the right */
    background-color: whitesmoke;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 5px 6px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0; /* Start hidden */
    transform: translateY(-20px); /* Start slightly above */
    animation: fadeInSlide 0.5s forwards;
    /*  bounce 1s 0.5s ease infinite;*/
    /* Animation on load ,pulse 2.6s infinite */
}

    .user-container:hover .wave {
        animation: radio-wave 1s ease-in-out infinite; /* Radio wave animation on hover */
    }

.username {
    font-size: 15px;
    color: #333;
    margin-right: 15px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
    /* animation: fadeIn 2.5s infinite;*/
}
/* userLogin Login Icon Design */
.userLogin-icon {
    width: 20px;
    height: 20px;
    position: relative;
    margin-right: 8px;
    background-color: #007BFF; /* Background color for the icon */
    border-radius: 50%; /* Circular shape for the head */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

    .userLogin-icon::before {
        content: '';
        position: absolute;
        top: 10px; /* Position for head */
        width: 20px; /* Head width */
        height: 20px; /* Head height */
        background-color: white; /* Head color */
        border-radius: 50%; /* Circular head */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .userLogin-icon::after {
        content: '';
        position: absolute;
        bottom: 0; /* Position for body */
        width: 30px; /* Body width */
        height: 20px; /* Body height */
        background-color: white; /* Body color */
        border-radius: 5px; /* Slightly rounded body */
    }

.username:hover {
    transform: scale(1.2); /* Slightly enlarge on hover */
    box-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
    /* Change color on hover */
    /*  background-color: peachpuff;*/
    /*transform: scale(1.05);  Slightly enlarge on hover */
    /* animation: shake 2.5s infinite; Shake animation on hover */
}

.user-icon {
    width: 20px;
    height: 20px;
    background-color: #007BFF;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

    .user-icon::before {
        content: '';
        position: absolute;
        width: 60%;
        height: 60%;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        animation: pulse 1.5s infinite; /* Pulsing animation */
    }

.logout-button {
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 6px 8px;
    ; /* Smaller padding for a smaller button */
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

    .logout-button:hover {
        background-color: #ff1a1a;
        transform: scale(1.1); /* Slightly enlarge on hover */
        box-shadow: 0 0 10px rgba(255, 26, 26, 0.5); /* Add shadow on hover */
    }

    .logout-button:active {
        transform: scale(0.95); /* Shrink on click */
    }

.logout-icon {
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    position: relative;
    margin-right: 5px;
}

    .logout-icon::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 8px;
        height: 2px;
        background-color: #ff4d4d;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .logout-icon::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 8px;
        height: 2px;
        background-color: #ff4d4d;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position above the button */
    left: 50%;
    margin-left: -60px;
    opacity: 0; /* Start hidden */
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1; /* Show tooltip on hover */
}

@keyframes fadeInSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    0% {
        transform: translate(0);
    }

    25% {
        transform: translate(-2px, 0);
    }

    50% {
        transform: translate(2px, 0);
    }

    75% {
        transform: translate(-2px, 0);
    }

    100% {
        transform: translate(0);
    }
}
/* Login Button Styles */


.login-button {
    background-color: #007BFF; /* Blue background */
    color: white;
    border: none;
    border-radius: 25px;
    padding: 6px 8px; /* Padding for the button */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

    .login-button:hover {
        background-color: #0056b3; /* Darker blue on hover */
        transform: scale(1.05); /* Slightly enlarge on hover */
        box-shadow: 0 0 10px rgba(0, 123, 255, 0.5); /* Add shadow on hover */
    }

    .login-button:active {
        transform: scale(0.95); /* Shrink on click */
    }

/* Tooltip Styles */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position above the button */
    left: 50%;
    margin-left: -60px;
    opacity: 0; /* Start hidden */
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1; /* Show tooltip on hover */
}

/* Keyframes for animations */
@keyframes fadeInSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0% {
        transform: translate(0);
    }

    25% {
        transform: translate(-2px, 0);
    }

    50% {
        transform: translate(2px, 0);
    }

    75% {
        transform: translate(-2px, 0);
    }

    100% {
        transform: translate(0);
    }
}





/*//button*/


.button-proceed {
    background: linear-gradient(135deg, #4A90E2, #A4C8E1);
    color: #FFFFFF;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, transform 0.3s;
}

    .button-proceed:hover {
        background: #357ABD;
        transform: translateY(-2px);
    }

    .button-proceed:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.5);
    }


.radio-group {
    display: flex;
    align-items: center;
}

.radio-item {
    margin-right: 15px; /* Space between radio buttons */
    position: relative;
    cursor: pointer;
    transition: transform 0.2s;
}

    .radio-item:hover {
        background-color: #e7f1ff;
        transform: scale(1.05);
        /*  transform: scale(1.05);*/ /* Slightly enlarge on hover */
    }

.radio-label {
    margin-left: 5px; /* Space between radio button and label */
    font-size: 16px; /* Adjust font size */
    color: #333; /* Label color */
}

input[type="radio"] {
    display: none; /* Hide the default radio button */
}

    input[type="radio"] + .radio-label:before {
        content: '';
        display: inline-block;
        width: 20px; /* Size of custom radio button */
        height: 20px;
        border: 2px solid #e3e8ec; /* Border color */
        border-radius: 50%; /* Make it circular */
        margin-right: 5px; /* Space between custom radio and label */
        vertical-align: middle; /* Align with text */
        transition: background-color 0.2s;
    }

    input[type="radio"]:checked + .radio-label:before {
        color: #007BFF;
        background-color: #007bff; /* Background color when checked */
    }



.button-container {
    margin-top: 20px;
    text-align: center;
    display: flex; /* Enable flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center;
}

.upload-button {
    display: flex;
    align-items: center;
    background-color: cornflowerblue;
    /*   #4CAF50; Green */
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

    .upload-button:hover {
        background-color: #A4C8E1; /* #45a049; Darker green */
        transform: scale(1.05);
    }

    .upload-button:focus {
        outline: none;
    }

.icon {
    margin-right: 10px;
    font-size: 20px;
    transition: transform 0.3s;
}

.upload-button:hover .icon {
    transform: rotate(360deg);
}

.text {
    font-weight: bold;
}

/* Optional: Add a subtle shadow */
.upload-button {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    .upload-button:hover {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }



        .upload-button:hover .icon {
            transform: rotate(360deg) scale(1.2);
            color: #0d6efd; /*#ffeb3b; /* Change icon color on hover */
        }

/* Text Animation */
.text {
    font-weight: bold;
    position: relative;
    transition: color 0.3s, transform 0.3s;
}

.upload-button:hover .text {
    color: #0d6efd;
    /*  #0d6efd;      ;  Change text color on hover */
    transform: translateY(-2px);
}

/* Adding a ripple effect */
.upload-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s, opacity 0.5s;
    opacity: 0;
}

.upload-button:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: 0s;
}

@keyframes grow {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}


@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.refresh-icon {
    background-color: transparent;
    border: none;
    margin-left: 30px;
    cursor: pointer;
    font-size: 24px;
    color: skyblue; /* Change color as needed */
    transition: transform 0.3s ease;
    display: flex;
    animation: blink 2.5s 1s infinite
}

    .refresh-icon:hover {
        transform: rotate(360deg);
        color: blue; /* Change color on hover */
    }

/*.captcha-container {
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 0.5px;
    background-color: #ffffff;*/
/*  // box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
   // transition: transform 0.3s;*/
/*}*/

.captcha-text {
    font-size: 18px;
    display: inline-flex;
    font-weight: bold;
    color: cornflowerblue;
    animation: pulse 3.5s 1s infinite;
    margin-left: 10px;
    /* margin-bottom: 15px;*/
}

    .captcha-text:hover {
        transform: scale(1.2);
        animation: bounce 1.5s 1s infinite; /* Scale up on hover */
    }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        Scale up
    }

    100% {
        transform: scale(1);
        Scale back to original
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5; /* Change this value for more or less blinking */
    }
}


.loader {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid white;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 8px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.voice-icon {
    position: relative;
    font-size: 25px;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
    color: skyblue;
    margin-left: 30px;
    display: flex;
    /* color: #007bff;  Primary color */
}

    .voice-icon:hover {
        transform: scale(1.1) rotate(10deg);
        color: #0056b3; /* Darker shade on hover */
        /* animation: bounce 1s infinite;*/
    }

    .voice-icon:active {
        animation: pulse 0.5s 1s infinite;
    }

.tooltip {
    visibility: hidden;
    width: 120px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position above the icon */
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.voice-icon:hover .tooltip {
    visibility: visible;
    opacity: 1;
}




.voice-iconMsg {
    /*position: relative;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
    color: white;
    margin-left: 30px;
    display: flex;
    top: 10px;
    right: 20px;
*/
    position: relative;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
    color: white;
    /* margin-left: 30px; */
    display: flex;
    top: -38.5px;
    left: 20px;
    animation: blink 2.5s 1s infinite;
}




    /* color: #007bff;  Primary color */


    .voice-iconMsg:hover {
        transform: scale(1.1) rotate(10deg);
        color: #0056b3; /* Darker shade on hover */
        /* animation: bounce 1s infinite;*/
    }

    .voice-iconMsg:active {
        animation: pulse 0.5s 1s infinite;
    }

.tooltipMsg {
    visibility: hidden;
    font-size: 12px;
    width: 120px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    top: 125%; /* Position below the icon */
    left: 50%;
    margin-left: -60px; /* Center the tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}


.voice-iconMsg:hover .tooltipMsg {
    visibility: visible;
    opacity: 1;
}



.declaration-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 400px;
    text-align: center;
    animation: fadeIn 1s ease;
    width: auto;
}

.dec {
    /* // color: #6200ea;*/
    margin-bottom: 20px;
    font-size: 20px;
    text-align: left;
    animation: slideIn 0.5s ease;
}


.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    text-align: left;
}

.checkboxdec {
    margin-right: 10px;
}



@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loadingMessage {
    color: white;
    text-align: center;
}

.spinner {
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-top: 8px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes load {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


/*new deign */

.floating-div {
    position: fixed;
    top: 60px;
    right: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    cursor: move;
    animation: fadeInSlide 0.5s forwards;
}

.user-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 24px;
    transition: transform 0.2s ease;
    cursor: pointer;
    animation: fadeInSlide 0.5s forwards;
}

    .user-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
    }

.user-info {
    display: none;
    /*//flex-direction: column;*/
    align-items: flex-start;
    background-color: #ffffff;
    border-radius: 22px;
    padding: 5px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-right: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    animation: fadeInSlide 0.5s forwards;
}

    .user-info:hover {
        box-shadow: 0 0 10px rgba(0, 123, 255, 0.5); /* Add shadow on hover */
        /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);*/
    }

    .user-info.show {
        display: flex;
        opacity: 1;
        transform: translateX(0);
        animation: fadeInSlide 0.5s forwards;
    }

    .user-info.hide {
        opacity: 0;
        transform: translateX(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        animation: fadeInSlide 0.5s forwards;
    }

.usernameflot {
    font-weight: bold;
    font-size: 15px;
    /* color: #343a40;*/
    color: cornflowerblue;
    margin-bottom: 10px;
    margin-right: 10px;
    margin-top: 8px;
    cursor: pointer;
}
/*.LogoutText {
    font-size: 8px;
    font-weight: bold;*/
/* animation:radiowave */
/*}*/
.logoutButtonfloat {
    margin-top: 5px;
    /*font-size:8px;*/
    font-weight: bold;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 3px 9px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .logoutButtonfloat:hover {
        background-color: #ff1a1a;
        /*background-color: #c82333;  */
        transform: scale(1.1);
        box-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
    }


/*legend here*/

.Inkinebuttoncontainer {
    display: grid; /* Enables grid layout */
    grid-template-columns: repeat(3, auto); /* Creates three columns */
    gap: 10px; /* Space between buttons */
}

.hiddenMessageBox {
    display: none;
}

.password-container {
    position: relative;
    display: block;
}

.toggle {
    position: absolute;
    right: 10px; /* Adjust as needed */
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: gray; /* Change color as needed */
}

    .toggle:focus {
        outline: none; /* Remove outline on focus */
    }
/* Custom styles for the calendar */
.ui-datepicker {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ui-datepicker-header {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px 5px 0 0;
    padding: 10px;
    text-align: center;
}

.ui-datepicker-title {
    font-size: 1.2em;
}

.ui-datepicker .ui-state-default {
    background: #f0f0f0;
    border: 1px solid #ddd;
    color: #333;
}

.ui-datepicker .ui-state-hover {
    background: #007bff;
    color: white;
}

.ui-datepicker .ui-state-active {
    background: #0056b3;
    color: white;
}


.printbutton-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    /* Center the button vertically */
}

.print-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 50px;
    background: linear-gradient(to bottom, #4A90E2, #FFFFFF);
    border: 2px solid #0056b3;
    border-radius: 30px; /* More rounded for elegance */
    color: #0056b3;
    font-family: 'Georgia', serif; /* Elegant font */
    font-size: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.3s ease-in-out;
    outline: none; /* Remove outline */
    padding: 10px 20px; /* Add padding for better spacing */
}

    .print-button:hover {
        background: #0056b3; /* Darker blue on hover */
        color: #FFFFFF; /* White text on hover */
        transform: scale(1.05); /* Slightly scale up */
    }

.print-icon {
    width: 24px;
    height: 24px;
    background-color: #0056b3; /* Icon color */
    position: relative; /* Positioning for the icon */
    margin-right: 10px; /* Space between icon and text */
}

    .print-icon::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 12px; /* Width of the paper */
        height: 16px; /* Height of the paper */
        background-color: #FFFFFF; /* Paper color */
        border: 2px solid #0056b3; /* Border of the paper */
        border-radius: 2px; /* Slightly rounded corners */
        transform: translateX(-50%); /* Center the paper */
    }

    .print-icon::after {
        content: '';
        position: absolute;
        bottom: -6px; /* Position the wheels */
        left: 50%;
        width: 8px; /* Width of the wheels */
        height: 8px; /* Height of the wheels */
        background-color: #0056b3; /* Wheel color */
        border-radius: 50%; /* Make it circular */
        transform: translateX(-50%); /* Center the wheels */
    }

    .print-icon::after {
        content: '';
        position: absolute;
        bottom: -6px; /* Position the wheels */
        left: 50%;
        width: 8px; /* Width of the wheels */
        height: 8px; /* Height of the wheels */
        background-color: #0056b3; /* Wheel color */
        border-radius: 50%; /* Make it circular */
        transform: translateX(-50%); /* Center the wheels */
    }

    .print-icon::after {
        content: '';
        position: absolute;
        bottom: -6px; /* Position the wheels */
        left: 50%;
        width: 8px; /* Width of the wheels */
        height: 8px; /* Height of the wheels */
        background-color: #0056b3; /* Wheel color */
        border-radius: 50%; /* Make it circular */
        transform: translateX(-50%); /* Center the wheels */
    }

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');



.small-div {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg,#6694f0, #6694f0);
    /*#3a5a9a*/
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(43, 65, 119, 0.4);
    padding: 12px 20px;
    gap: 16px;
    max-width: auto;
    cursor: pointer;
    user-select: none;
    background-color: cornflowerblue;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .small-div:hover {
        transform: scale(1.06);
        box-shadow: 0 12px 32px rgba(43, 65, 119, 0.65);
    }

/* Enrollment-icon container with float animation */
.Enrollment-icon {
    position: relative;
    width: 36px;
    height: 40px;
    animation: floatUpDown 4s ease-in-out infinite;
    transform-origin: center bottom;
}

.small-div:hover .Enrollment-icon {
    animation-play-state: paused;
}

/* Book body */
.book {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 28px;
    height: 32px;
    background: white;
    border-radius: 4px 4px 8px 8px;
    box-shadow: inset 0 4px 8px rgba(43, 65, 119, 0.2);
    border-left: 4px solid #2b4177;
    border-right: 4px solid #2b4177;
    overflow: hidden;
}

/* Page lines */
.page-line {
    position: absolute;
    left: 8px;
    right: 8px;
    height: 2px;
    background: #4a6db7;
    border-radius: 1px;
    opacity: 0.5;
    animation-name: pageLinePulse;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
}

.line1 {
    top: 10px;
    animation-duration: 1.6s;
    animation-delay: 0s;
}

.line2 {
    top: 16px;
    animation-duration: 1.9s;
    animation-delay: 0.3s;
}

.line3 {
    top: 22px;
    animation-duration: 1.7s;
    animation-delay: 0.6s;
}

.line4 {
    top: 28px;
    animation-duration: 1.8s;
    animation-delay: 0.9s;
}

/* Bookmark */
.bookmark {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 6px;
    height: 14px;
    background: #f5a623;
    border-radius: 1px 1px 4px 4px;
    box-shadow: 0 0 6px rgba(245, 166, 35, 0.4);
    animation: glowPulse 3s ease-in-out infinite;
}

/* Text */
.Enroll-text {
    color: #edf2fb;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Animations */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 6px rgba(74, 105, 178, 0.4));
    }

    50% {
        transform: translateY(-4px) scale(1.02);
        filter: drop-shadow(0 0 12px rgba(74, 105, 178, 0.8));
    }
}

@keyframes pageLinePulse {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 6px rgba(245, 166, 35, 0.4);
        background-color: #f5a623;
    }

    50% {
        box-shadow: 0 0 18px rgba(245, 166, 35, 0.8);
        background-color: #ffcf5e;
    }
}

/* Responsive tweaks */
@media (max-width: 320px) {
    .small-div {
        max-width: 90vw;
        padding: 10px 18px;
        font-size: 0.9rem;
        gap: 12px;
    }

    .Enrollment-icon {
        width: 30px;
        height: 34px;
    }

    .book {
        width: 24px;
        height: 26px;
        border-left-width: 3px;
        border-right-width: 3px;
    }

    .page-line {
        left: 6px;
        right: 6px;
    }
}

.enrollCenter {
    margin: 0;
    height: 10vh;
    background: #f0f4f8;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}
.DocCenter {
    margin: 0;
    height: 10vh;
    background: #f0f4f8;
    display: inline-flex;
   left:0;
    font-family: 'Poppins', sans-serif;
}