.navbar {
    box-shadow: 0 0 10px #d3d0d0;
    background: #fff;
    padding: 20px;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: unset !important;
}

.header-top {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.header {
    background: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu-btn {
    width: 30px;
    height: 18px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-btn span {
    display: block;
    height: 3px;
    width: 28px;
    background: #000;
    border-radius: 2px;
    transition: 0.3s ease;
}

/* Change to X */
.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-38deg) translateY(-12px);
}

/* Overlay background */
.overlay {
    position: fixed;
    top: 50px;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 62%);
    transition: left 0.3s ease;
    z-index: 999;
}

/* Side Drawer */
.side-menu {
    position: absolute;
    top: 10px;
    left: 0;
    width: 260px;
    height: 100%;
    background: #fff;
    /* padding: 20px; */
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.side-menu h3 {
    margin: 15px 0 10px;
    font-size: 14px;
    text-transform: uppercase;
    color: #555;
}

.navbar-list li a {
    display: block;
    padding: 10px 0;
    color: #000;
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid #000;
}

.side-menu a:hover {
    color: #1dbf73;
}


.overlay.active {
    left: 0;
}

.loginBtn {
    border: none;
    background: unset;
    font-size: 18px;
    padding: 0px;
}

/* header css end */


.loginbtn:hover {
    background: unset;
    color: #000;
}

.navbar-nav {
    gap: 10px;
    margin-right: 20px;
    align-items: center;
}

.borderLeft {
    border-left: 2px solid #000;
    height: 20px;
}

/* login modal css start */


#LoginModal .modal-content {
    border: none !important;
    background-color: unset !important;
}

.login-dialog .modal-body {
    padding: 0;
}

.login-dialog .modal-header {
    border-bottom: none !important;
}

#LoginModal.show .modal-dialog {
    transform: none;
    width: 100% !important;
    max-width: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.login-card {
    display: flex;
    flex-direction: row;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.card-left {
    flex: 1;
    background: #011b3e;
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-left h1 {
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.card-left p {
    font-size: 14px;
    margin: 0px;
}

.qr-box p {
    font-size: 14px;
    margin: 0px;
    color: #000;
    font-weight: 600;
}

.card-left .feature {
    display: flex;
    align-items: center;
}

.card-left .feature span {
    font-size: 16px;
    margin-left: 10px;
}

.qr-box {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.qr-box img {
    width: 80px;
    border-radius: 6px;
}

.card-right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.card-right h2 {
    margin-bottom: 10px;
    font-weight: 700;
}

.card-right p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.form-group input {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 100%;
    margin-bottom: 20px;
    font-size: 14px;
}


.create {
    /* margin-top: 30px; */
    font-size: 14px;
    font-weight: 600;
}

.create a {
    color: #0046d5;
    text-decoration: none;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
    background: none;
    margin: 0;
}

.input-group label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    background: white;
    padding: 0 4px;
    color: #999;
    font-size: 14px;
    pointer-events: none;
    transition: 0.2s ease all;
}

.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label {
    top: 0px;
    font-size: 12px;
    color: #0046d5;
}

/* Button styles */
/* .login-btn {
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    color: white;
    background: #ccc;
    cursor: not-allowed;
    transition: 0.3s;
} */

.login-btn.active {
    background: #0046d5;
    cursor: pointer;
}

.feature-box {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 768px) {
    .login-card {
        flex-direction: column;
    }

    .left,
    .right {
        padding: 20px;
    }
}

.main-image {
    background: #fff;
    padding: 6px;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* login modal css end */

.side-menu ul {
    padding: 0;
    list-style: none;
}

.side-menu ul li a {
    display: block;
    padding: 20px 20px;
    color: #000;
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid #000;
}

.userLoginDiv .user-initial {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #04171a;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    line-height: 40px;
}


/* search bar css start */

.search-container {
    position: relative;
    /* parent ko relative karna zaroori hai */
    width: 100%;
}

.search-container input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.search-dropdown {
    position: absolute;
    /* space nahi lega */
    top: 100%;
    /* input ke just neeche */
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    /* by default hidden */
    z-index: 1000;
    /* dusre elements ke upar */
}

.search-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-dropdown li {
    padding: 10px;
    cursor: pointer;
}

.search-dropdown li:hover {
    background: #f1f1f1;
}

/* input pe focus hote hi dropdown dikhana */
.search-container input:focus+.search-dropdown {
    display: block;
}

/* search bar css end */

.login-btn {
    padding: 12px;
    width: 100%;
    background: #ccc;
    border: none;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    cursor: not-allowed;
    transition: 0.3s;
}
