@import "default.css";
:root {
    --bd-green: #006a4e;
    --bd-red: #f42a41;
    --bd-gold: #ffd700;
    --bd-light: #f8f9fa;
    --bd-dark: #343a40;
    --bd-shadow: 0 4px 6px rgba(0, 106, 78, 0.1);
}

.btn-primary {
    background-color: #006a4e;
    border-color: #006a4e;
}

.btn-primary:hover {
    background-color: #f42a41;
    border-color: #f42a41;
}

body {
    font-family: 'SolaimanLipi', 'Bangla', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header-top {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 3px solid #f42a41;
}

.bg-primary {
    background-color: #006a4e !important;
}

.header-top .form-control,
.header-top .form-select {
    border: 1px solid #ced4da;
    font-size: 0.875rem;
}

.header-top .btn-danger {
    background-color: #f42a41;
    border-color: #f42a41;
}

.header-top .btn-danger:hover {
    background-color: #d11a2f;
    border-color: #d11a2f;
}

@media (max-width: 767px) {
    .header-top .input-group {
        flex-wrap: nowrap;
    }

    .header-top .form-control,
    .header-top .form-select {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .header-top .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
}

.header-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bd-red) 0%, var(--bd-gold) 50%, var(--bd-red) 100%);
}

.govt-logo img {
    height: 80px;
    max-width: 100%;
    transition: transform 0.3s;
}

.govt-logo img:hover {
    transform: scale(1.05);
}

.parishod-header {
    position: relative;
    z-index: 1;
}

.parishod-header h1 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .parishod-header h1 {
        font-size: 2.2rem;
    }
}

/* Search Form */
.tax-search {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 8px;
    box-shadow: var(--bd-shadow);
    border: 1px solid rgba(0, 106, 78, 0.2);
}

.tax-search .form-control {
    border: 2px solid var(--bd-green);
    border-radius: 5px;
    font-size: 0.9rem;
}

.tax-search .submit {
    background-color: var(--bd-green);
    border: none;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s;
}

.tax-search .submit:hover {
    background-color: var(--bd-red);
    transform: translateY(-2px);
}

/* Main Navigation */
.header-section {
    background-color: var(--bd-green);
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menubar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menubar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.menubar ul li {
    position: relative;
}

.menubar ul li a {
    color: white;
    text-decoration: none;
    padding: 15px 18px;
    display: block;
    font-size: 0.95rem;
    transition: all 0.3s;
    font-weight: 500;
}

.menubar ul li a:hover {
    background-color: var(--bd-red);
}

.menubar ul li a i {
    margin-right: 5px;
}

/* Submenu */
.sub-menu {
    position: absolute;
    background-color: white;
    min-width: 220px;
    box-shadow: var(--bd-shadow);
    z-index: 1000;
    display: none;
    border-top: 3px solid var(--bd-red);
    border-radius: 0 0 5px 5px;
}

.sub-btn:hover .sub-menu {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-link {
    color: var(--bd-dark) !important;
    padding: 12px 18px !important;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.menu-link:hover {
    background-color: #f8f9fa !important;
    color: var(--bd-red) !important;
    padding-left: 22px !important;
}

/* Login Button */
.login-button-home a {
    background-color: var(--bd-red);
    border-radius: 5px;
    padding: 8px 18px !important;
    margin-left: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.login-button-home a:hover {
    background-color: #d11a2f !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 30px 0;
    background-color: white;
}

.feature-box {
    background-color: var(--bd-light);
    border-left: 4px solid var(--bd-green);
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 0 5px 5px 0;
    box-shadow: var(--bd-shadow);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h3 {
    color: var(--bd-green);
    margin-top: 0;
    font-weight: 700;
    border-bottom: 2px dashed #ddd;
    padding-bottom: 10px;
}

.feature-box h3 i {
    margin-right: 10px;
    color: var(--bd-red);
}

.news-section {
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: var(--bd-shadow);
}

.news-item {
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
    transition: all 0.3s;
}

.news-item:hover {
    background-color: #f9f9f9;
    padding-left: 10px;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item h5 {
    color: var(--bd-green);
    font-weight: 600;
}

/* Footer */
.copyright-section {
    background: linear-gradient(135deg, var(--bd-green) 0%, #004d38 100%);
    color: white;
    padding: 25px 0;
    margin-top: auto;
    border-top: 4px solid var(--bd-red);
}

.copyright-section h6 {
    margin: 0;
    font-size: 0.9rem;
}

.hr-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.hr-icon span {
    margin-right: 15px;
    font-weight: 500;
}

.hr-icon a {
    color: white;
    margin-left: 15px;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.hr-icon a:hover {
    color: var(--bd-gold);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .menubar {
        flex-direction: column;
        padding: 10px 0;
    }

    .menubar ul {
        flex-direction: column;
        width: 100%;
    }

    .sub-menu {
        position: static;
        box-shadow: none;
        width: 100%;
        animation: none;
    }

    .login-button-home {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .header-top {
        padding: 15px 0;
    }

    .parishod-header h1 {
        font-size: 1.5rem;
    }

    .tax-search {
        flex-direction: column;
    }

    .tax-search .pb-2 {
        width: 100%;
        margin-bottom: 10px;
    }

    .hr-icon {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .hr-icon a {
        margin: 0 10px 0 0;
    }
}

/* Animation for important elements */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.important-item {
    animation: pulse 2s infinite;
}



/*SLIDER SECTION END*/

/*COMPANY SECTION*/

/*COMPANY SECTION END*/

/*ABOUT SECTION*/
.about-section {
    background: var(--wc);
}


.about-content h6 {
    font-weight: 700;
    font-size: 24px;
    line-height: 42px;
    color: var(--sc);
}

.about-photo {
    text-align: right;
    position: relative;
}

.about-content p {
    line-height: 28px;
    text-align: justify;
}
.about-image{
    width: 300px;
    float: left;
    margin: 10px;
    margin-right: 20px;
}


.content h6 {
    font-weight: 700;
    font-size: 24px;
    line-height: 42px;
    color: var(--wc);
    background-color:#124b65;
    padding:5px 10px;
}

.content p {
    line-height: 28px;
    text-align: justify;
}
.content-image{
    width: 180px;
    float: left;
    margin: 10px;
    margin-right: 20px;
}



.memberdiv img{
    height:170px;
}


.memberdiv p{
    margin-bottom:0px;
    text-align:center;
}

/*BLOG SECTION*/
.blog-section{
    background: var(--wc);
}
.blog-box img {
    width: 100%;
    margin-bottom: 10px;
    max-height: 160px;
}

.blog-box h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--sc);
}

.blog-box p {
    color:
        #444444;
}

.blog-box a {
    font-weight: 500;
    color: var(--sc);
    border: 2px solid #cccccc;
    padding: 7px 10px;
}

/*BLOG SECTION END*/

/*BLOG DETAILS*/
.media-box img {
    width: 100%;
}

.blog-breadcrumb {
    background: #F2F2F2;
}

.blog-image img {
    width: 100%;
}

.blog-date {
    font-weight: 500;
    display: inline-block;
    padding: 10px 0;
    color: #7b7b7b;
}

.blog-details-head {
    font-size: 35px;
    font-weight: 500;
    line-height: 45px;
    color: var(--pc);
}

.posted-blog {
    background: #F2F2F2;
}

.posted-blog img {
    margin-left: 15px;
}

.posted-blog span {
    margin-left: 8px;
}

.blog-search form input {
    background: #F2F2F2;
    -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 14px;
    border: none;
    width: 100%;
    outline: none;
    background-image: url(../images/icons/search-icon.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: auto;
    background-position: right 3% bottom 50%;
}

.blog-search form input::-webkit-input-placeholder {
    font-weight: 500;
    font-size: 20px;
}

.blog-search form input::-moz-placeholder {
    font-weight: 500;
    font-size: 20px;
}

.blog-search form input:-ms-input-placeholder {
    font-weight: 500;
    font-size: 20px;
}

.blog-search form input::-ms-input-placeholder {
    font-weight: 500;
    font-size: 20px;
}

.blog-search form input::placeholder {
    font-weight: 500;
    font-size: 20px;
}

.blog-category-box {
    background: #FAFAFA;
    border: 1px solid #CCCCCC;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 20px;
}

.blog-category-box h4 {
    font-size: 22px;
    margin: 0;
    padding-bottom: 10px;
}

.blog-category-box a {
    display: block;
    padding: 6px;
    font-weight: 500;
}

.blog-category-box a:hover {
    color: var(--pc);
    background: #efefef;
}

.blog-category-box a i {
    float: right;
    color: var(--gc);
}

.blog-sidbar-post p {
    font-weight: 500;
    color: var(--pc);
    margin: 0;
}
.sidbar-blog-box{
    position: relative;
}
.sidbar-blog-box:hover {
    background: #efefef;
}
.sidbar-blog-box img {
    width: 80px;
    margin-right: 10px;
}

.sidbar-blog-box .content h6 {
    font-weight: 500;
    font-size: 17px;
    line-height: 21px;
    color: var(--sc);
}
.hr-icon  span{
    color: var(--sc);
}
.hr-icon  img{
    margin-right: 5px;
}
.sidbar-blog-box .content p span {
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    color: #909090;
}

.sidbar-blog-box .content p span:last-child::before {
    content: "|";
    padding-right: 5px;
}
.sidbar-blog-box .content p.vanue{
    margin: 0;
    color: rgba(2, 0, 91, 0.72);
    font-size: 14px;
}
.sticky-blog-right {
    position: sticky;
    top: 130px;
}

.blog-right {
    background: var(--wc);
    padding: 16px;
    -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
}

.blog-sidbar-post h3 {
    font-size: 22px;
    padding-bottom: 10px;
}

.social-icons a i {
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    color: #002547;
    border: 1px solid var(--sc);
    border-radius: 50%;
    font-size: 13px;
    margin-left: 6px;
}

.social-icons a i:hover {
    background: #002547;
    color: var(--wc);
}

.blog-ditails {
    color: var(--pc);
}

/*BLOG DETAILS END*/

/*CONTACT SECTION*/
.contact-section{
    background: var(--wc);
}
.contact-left h6 {
    font-weight: 600;
    line-height: 19px;
    font-size: 16px;
    color: #444444;
}

.contact-left p {
    font-size: 14px;
    max-width: 354px;
    color: #555555;
}

.contact-form input {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 10px;
    outline: none;
}

.contact-form input::-webkit-input-placeholder {
    font-weight: 500;
    font-size: 16px;
    color: #555555;
}

.contact-form input::-moz-placeholder {
    font-weight: 500;
    font-size: 16px;
    color: #555555;
}

.contact-form input:-ms-input-placeholder {
    font-weight: 500;
    font-size: 16px;
    color: #555555;
}

.contact-form input::-ms-input-placeholder {
    font-weight: 500;
    font-size: 16px;
    color: #555555;
}

.contact-form input::placeholder {
    font-weight: 500;
    font-size: 16px;
    color: #555555;
}

.contact-form textarea {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 10px;
    outline: none;
    height: 100px;
}

.contact-form textarea::-webkit-input-placeholder {
    font-weight: 500;
    font-size: 16px;
    color: #555555;
}

.contact-form textarea::-moz-placeholder {
    font-weight: 500;
    font-size: 16px;
    color: #555555;
}

.contact-form textarea:-ms-input-placeholder {
    font-weight: 500;
    font-size: 16px;
    color: #555555;
}

.contact-form textarea::-ms-input-placeholder {
    font-weight: 500;
    font-size: 16px;
    color: #555555;
}

.contact-form textarea::placeholder {
    font-weight: 500;
    font-size: 16px;
    color: #555555;
}

.contact-form button {
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    background: #484CC5;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 10px;
}

.contact-right h4 {
    font-weight: 700;
    font-size: 24px;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 15px;
}

.contact-right-box p {
    margin-bottom: 6px;
}

.contact-right-box {
    max-width: 346px;
    font-weight: 500;
    color: #444444;
}

/*CONTACT SECTION END*/


/*FOOTER SECTION*/

.scroll-up {
    text-align: right;
}

.scroll-up a {
    color: var(--wc);
    background: #575AC3;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
}

.scroll-up a i {
    font-size: 20px;
}

.scroll-up span {
    font-weight: 600;
    font-size: 16px;
    color: var(--wc);
    margin-top: 20px;
    display: inline-block;
}


/*page head*/
.page-head-section {
    background: #6429E3;
}

.page-head-section h2 {
    color: var(--wc);
    font-weight: 700;
    font-size: 35px;
    text-align: center;
}

.page-head-section p {
    text-align: center;
}

.page-head-section p a {
    color: var(--wc);
    font-weight: 700;
    font-size: 14px;
}

.page-head-section p span {
    color: var(--wc);
    font-weight: 700;
    font-size: 14px;
}
/*page head end*/
/*ABOUT PAGE*/
.about-text ul li {
    background: #EEFCFF;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.25);
    padding: 10px;
    margin: 10px 0;
    display: block;
    padding-left: 40px;
    position: relative;
}

.about-text ul li span {
    content: '';
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background: #1FAEFF;
    position: absolute;
    top: 15px;
    left: 10px;
}
/*ABOUT PAGE END*/

/*CONTACT PAGE*/
.contact-bottom-section {
    background: var(--wc);
}
.ready-question .accordion-button span{
    background: #02005B;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    line-height: 50px;
    font-size: 20px;
    font-weight: 600;
    color: var(--wc);
    margin-right: 20px;
}
.ready-question .accordion-button{
    color: #333333;
    font-weight: 600;
    font-size: 18px;
    box-shadow: none;
}
.ready-question .accordion-body{
    padding-left:
    80px;
}
.ready-question h4{
    font-weight: 600;
    font-size: 35px;
    line-height: 42px;
}
.ready-question .q-text{
    font-weight: 500;
    font-size: 16px;
}
.contact-location h4{
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
}
/*CONTACT PAGE END*/

/*BLOG DETAILS*/
.media-box img{
    width: 100%;
}
.blog-breadcrumb {
    background: #F2F2F2;
}
.blog-image img{
    width: 100%;
}
.blog-date{
    font-weight: 500;
    display: inline-block;
    padding: 10px 0;
    color: #7b7b7b;
}
.blog-details-head{
    font-size: 35px;
    font-weight: 500;
    line-height: 45px;
    color: var(--sc);
}
.posted-blog{
    background: #F2F2F2;
}
.posted-blog img{
    margin-left: 15px;
}
.posted-blog span{
    margin-left: 8px;
}
.blog-search form input{
    background: #F2F2F2;
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
border-radius: 5px;
    padding: 14px;
    border: none;
    width: 100%;
    outline: none;
     background-image: url(../images/icons/search-icon.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: auto;
    background-position: right 3% bottom 50%;
}
.blog-search form input::placeholder{
    font-weight: 500;
    font-size: 20px;
}
.blog-category-box{
    background: #FAFAFA;
border: 1px solid #CCCCCC;
box-sizing: border-box;
    padding: 20px;
}
.blog-category-box h4{
    font-size: 22px;
    margin: 0;
    padding-bottom: 10px;
    color: var(--sc);
}
.blog-category-box a{
    display: block;
    padding: 8px 0;
    font-weight: 500;
}
.blog-category-box a:hover{
    color: var(--sc);
}
.blog-category-box a i{
    float: right;
    color: var(--gc);
}
.blog-sidbar-post p{
    font-weight: 500;
    color: var(--pc2);
    margin: 0;
}
.sidbar-blog-box img{
    width: 80px;
    margin-right: 10px;
}
.sidbar-blog-box .content h6 {
    font-weight: 500;
    font-size: 17px;
    line-height: 21px;
}
.sidbar-blog-box .content p span{
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    color: #909090;
}
.sidbar-blog-box .content p span:last-child::before{
    content: "|";
    padding-right: 5px;
}
.sticky-blog-right{
    position: sticky;
    top:90px;
}
.blog-right{
    background: var(--wc); padding: 16px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
}
.blog-sidbar-post h3{
    font-size: 22px;
    padding-bottom: 10px;
    color: var(--sc);
}
.social-icons a i {
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    color: #002547;
    border: 1px solid var(--sc);
    border-radius: 50%;
    font-size: 13px;
    margin-left: 6px;
}

.social-icons a i:hover {
    background: #002547;
    color: var(--wc);
}
.blog-ditails {
    color: var(--pc);
}

/*BLOG DETAILS END*/


/* #gallery {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
} */

#gallery a {
    width: 100%;
}

/* #gallery img {
    width: 100%;
    height: auto;
    margin: 4% auto;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
} */





/* dashboard */
.dashboard-main {
    background: #f7f7f7;
    position: relative;
}

.dashboard {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.dashboard-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #cccccccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.dashboard-head img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.dashboard-head p {
    color: #9e9e9e;
    margin: 0;
}

.dashboard-head h4 {
    color: #0c5702;
    font-size: 20px;
}


.d-mobile-btn {
    background: #004e30;
    padding: 4px 10px;
    color: #ffffff;
    border-radius: 5px;
    display: none;
}

.d-mobile-btn:hover {
    background: #004e30;
}

.d-mobile-btn i {
    font-size: 22px;
}

.dashboard-sidnav {
    background: #EDF8FF;
    padding: 20px;
    border-radius: 10px;
    position: sticky;
    top: 110px;
    z-index: 2;
}

.dashboard-body {
    background: #EDF8FF;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.d-submenu {
    padding-top: 5px;
}

.d-submenu a {
    display: flex;
    padding: 5px 0;
    align-items: center;
    gap: 5px;
}

.dashboard-sidnav>ul{
    list-style: none;
}

.dashboard-sidnav>ul>li {
    padding: 10px 0;
}

.d-submenu {
    padding-left: 15px;
    display: none;
}

.d-submenu i {
    font-size: 10px;
    padding: 3px;
    padding-top: 0;
}

.d-submenu.mm-active {
    display: block;
}

.dashboard-sidnav ul li a.mm-active {
    color: #39004E;
    font-weight: 500;
}

.d-subbtn.mm-active>a {
    color: #39004E;
    font-weight: 500;
}

.d-submenu.mm-active>.mm-active {
    color: #39004E;
    font-weight: 500;
}

.dashboard-card {
    display: flex;
    align-items: start;
    gap: 15px;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.dashboard-card i {
    font-size: 40px;
}

.dashboard-sidnav .d-mobile-close {
    cursor: pointer;
    position: absolute;
    right: 25px;
    top: 8px;
    display: none;
}

.dashboard-sidnav .d-mobile-close i {
    font-size: 25px;
}

@media(max-width:991px) {
    .d-mobile-menu {
        position: absolute;
        width: 250px;
        left: -260px;
        top: 0;
        height: 100%;
        transition: .4s;
        display: none;
    }

    .d-mobile-menu .dashboard-sidnav {
        height: 100%;
        border-right: 1px solid #ffffff;
    }

    .d-mobile-menu.active {
        display: block;
        left: 0px;
    }

    .d-mobile-btn {
        display: block;
    }

    .dashboard-sidnav .d-mobile-close {
        display: block;
    }

    .sm-ul {
        margin-top: 15px;
    }
}



.user-profile-img img {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    margin: 0 auto;
}

.user-profile-img>div {
    width: 150px;
}

.user-profile-img .image-upload-wrapper {
    height: 150px;
}

.user-profile-img .image-upload-preview {
    border-radius: 50%;
}

.profile-information p {
    margin: 0;
    font-size: 18px;
    padding: 2px 0;
}

.custom-card.card {
    background: #ffffff;
    border: none;
    border: 1px solid #f2faff;
}

.custom-card.card .card-body {
    background: #ffffff;
}

.custom-card.card .card-footer {
    background: #ffffff;
    border-top: 1px solid #f2faff;
}

.table {
    border: 1px solid #39004e19;
}

.table>:not(caption)>*>* {
    background: none;
}

.custom-card.card .card-header {
    background: #ffffff;
    border-bottom: 1px solid #39004e19;
}

.card {
    overflow: hidden;
}


.card-footer.pagination-card-footer {
    background: inherit;
    border-top: none;
    border-top: 1px solid #e6e6e6;
}



.card-footer.pagination-card-footer .pagination {
    float: right;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.card-footer.pagination-card-footer .pagination .page-item .page-link {
    border-radius: 20px;
    margin: 0 5px 5px 0;
    outline: none;
    box-shadow: none;
    min-height: 38px;
    min-width: 38px;
    text-align: center;
}

.card-body .card-list {
    display: flex;
    padding: 8px;
    flex-wrap: nowrap;
    border-bottom: 1px solid #f1f1f1;
    justify-content: space-between;

}

.card-body .card-list:last-child {
    border-bottom: none;
}

/* dashboard end*/
