/*
Version: 1.0.0
*/

@import url("https://fonts.cdnfonts.com/css/plane-crash");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
    --lp-green: #1ca56f;
    --lp-light-green: #7bc02b;
    --lp-black: #000;
    --lp-white: #fff;
    --lp-light-grey: #f2f2f2;
    --lp-text-drak-grey: #636363;
    --lp-border-radius-xm: 5px;
    --lp-border-radius-sm: 10px;
    --lp-border-radius-lg: 15px;
    --lp-border-radius-xl: 20px;
    --lp-border-radius-xxl: 25px;
    --lp-border-radius-uxxxl: 30px;
    --lp-normal-text-line: 28px;
    --lp-body-font-size: 16px;
    --lp-text-decoration: none;
    --lp-full-width: 100%;
    --lp-test-A-size: 75px;
    --lp-test-b-size: 50px;
    --lp-test-c-size: 45px;
    --lp-head-font: "Plane Crash", sans-serif !important;
    --lp-body-text: "Poppins", sans-serif;
}
body {
    font-size: 16px !important;
    line-height: var(--lp-normal-text-line) !important;
    font-family: var(--lp-body-text) !important;
}
h1,
h2 {
    font-family: var(--lp-head-font) !important;
}
h1 {
    font-size: var(--lp-test-A-size) !important;
}
h2 {
    font-size: var(--lp-test-b-size);
}
a {
    text-decoration: none !important;
}
p {
    font-family: var(--lp-body-text);
}
.p-c-text {
    color: var(--lp-text-drak-grey);
}
/*****************************
Padding and Margin
*****************************/
.py-80 {
    padding: 80px 0px;
}
.py-270 {
    padding: 270px 0px;
}
.py-180 {
    padding: 180px 0px;
}
.pt-80 {
    padding-top: 80px;
}
.pb-80 {
    padding-bottom: 80px;
}
.pt-180 {
    padding-top: 180px;
}
.pb-180 {
    padding-bottom: 180px;
}
.mb-70 {
    margin-bottom: 70px;
}
/*****************************
Site Header
*****************************/

.site-header {
    padding: 15px;
    position: fixed;
    width: var(--lp-full-width);
    z-index: 11;
    transition: 0.5s;
}
.menu-header {
    margin-right: auto;
}
.login-btn {
    margin-left: auto;
}
.login-btn a {
    background-color: var(--lp-green);
    border-radius: var(--lp-border-radius-sm);
    padding: 11px 22px;
    color: var(--lp-white) !important;
    display: inline-flex;
    gap: 4px;
    float: right;
}
.menu-header,
.site-logo,
.login-btn {
    width: 33.5%;
}
.fixed-top {
    background: var(--lp-white);
    box-shadow: 0px 0px 12px #dddddd;
}
.site-logo img {
    transition: 0.5s;
    width: 105px;
}
.fixed-top .site-logo img {
    width: 80px;
    transition: 0.5s;
}
.site-logo {
    /* text-align: center; */
}

.d-header {
    position: relative !important;
}
/*****************************
Menu Style
*****************************/
.button_toogle a:after {
    content: "";
    position: absolute;
    background: #1abc9c;
    height: 2px;
    width: 0%;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
    transition: 0.35s ease;
}
.button_toogle a:hover:after,
.button_toogle a:focus:after,
.button_toogle a:active:after {
    width: 100%;
}
h1 {
    position: relative;
    text-align: center;
    font-family: "Varela Round", serif;
}
.button_toogle span.middle {
    width: 80% !important;
}
.button_toogle span.bottom {
    width: 50% !important;
}
.button_toogle {
    position: relative;
    top: 5%;
    left: 2%;
    height: 27px;
    width: 35px;
    cursor: pointer;
    z-index: 100;
    transition: opacity 0.25s ease;
}
.button_toogle:hover {
    opacity: 0.7;
}
.button_toogle.active .top {
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: var(--lp-white);
}
.button_toogle.active .middle {
    opacity: 0;
    background: var(--lp-white);
}
.button_toogle.active .bottom {
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: var(--lp-white);
    width: 100% !important;
}
.button_toogle span {
    background: #000;
    border: none;
    height: 3px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.35s ease;
    cursor: pointer;
}
.button_toogle span:nth-of-type(2) {
    top: 11px;
}
.button_toogle span:nth-of-type(3) {
    top: 22px;
}
.menu-overlay {
    position: fixed;
    background: var(--lp-green);
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s, height 0.35s;
    overflow: hidden;
}
.menu-overlay.open {
    opacity: 0.9;
    visibility: visible;
    height: 100%;
}
.menu-overlay.open li {
    animation: fadeInRight 0.5s ease forwards;
    animation-delay: 0.35s;
}
.menu-overlay.open li:nth-of-type(2) {
    animation-delay: 0.4s;
}
.menu-overlay.open li:nth-of-type(3) {
    animation-delay: 0.45s;
}
.menu-overlay.open li:nth-of-type(4) {
    animation-delay: 0.5s;
}
.menu-overlay nav {
    position: relative;
    height: 70%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    font-family: "Varela Round", serif;
    font-weight: 400;
    text-align: center;
}
.menu-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
}
.menu-overlay ul li {
    display: block;
    height: 25%;
    height: calc(100% / 4);
    min-height: 50px;
    position: relative;
    opacity: 0;
}
.menu-overlay ul li a {
    /*display: block;*/
    position: relative;
    color: var(--lp-white);
    text-decoration: none;
    overflow: hidden;
    font-family: var(--lp-head-font) !important;
    text-transform: lowercase;
}
.menu-overlay ul li a:hover:after,
.menu-overlay ul li a:focus:after,
.menu-overlay ul li a:active:after {
    width: 100%;
}
.menu-overlay ul li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    transform: translateX(-50%);
    height: 3px;
    background: var(--lp-white);
    transition: 0.35s;
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}
/*****************************
Button Style
*****************************/
.defualt-btn {
    padding: 11px 12px 11px 22px;
    color: var(--lp-black);
    display: inline-flex;
    border: 2px solid #ebebeb !important;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    align-items: center;
    gap: 12px;
    transition: 0.5s;
}
.defualt-btn:hover {
    background-color: #1ca56f;
    color: #fff;
}
.defualt-btn::after {
    content: url(../images/btn-arrow.svg);
    background: var(--lp-green);
    width: 35px;
    height: 35px;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    border-radius: var(--lp-border-radius-xm);
    top: 29px;
    padding: 2px 0px 0px;
}
.green-btn {
    background: var(--lp-green);
    border-radius: 8px;
    border: none;
    height: 49px;
    color: var(--lp-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.defualt-g-btn {
    background: var(--lp-green);
    border-radius: 8px;
    border: none;
    color: var(--lp-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 15px 25px;
}
/*****************************
Banner Section
*****************************/
.home-banner-section {
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    background-image: url(../images/Banner-slider.jpg);
    display: flex;
    align-items: end;
}
.bannert-text {
    position: relative;
    top: -198px;
}
.bannert-text h4 {
    font-size: var(--lp-test-c-size);
}
.btm-br-line::after {
    content: "";
    background-image: url("../images/bottom-divider.svg");
    width: 100%;
    position: absolute;
    height: 102px;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: -4px;
}
.top-br-line::before {
    content: "";
    background-image: url("../images/top-diver.svg") !important;
    height: 149px;
    top: -45px;
    background-repeat: no-repeat;
    position: absolute;
    background-size: cover;
    width: 100%;
}
.btm-arrow {
    position: absolute;
    right: 0px;
    left: 0px;
    bottom: -203px;
    z-index: 1;
}
/*****************************
Number Count Section
*****************************/
.counter-number-section {
    background-image: url("../images/conter-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.nbr-count-box {
    padding: 62px 10px;
    background: #ffffffd6;
    border-radius: 30px;
    transition: 2.5s;
}
.nbr-count-box:hover {
    transform: rotateY(360deg);
}
.nbr-count-box small {
    text-transform: uppercase;
}
/*****************************
Services Section
*****************************/
.ser-grid-box img.ser-img {
    border-radius: 30px !important;
}
.ser-grid-box {
    position: relative;
}
.text-ser-box {
    position: absolute;
    height: 100%;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    left: 0;
    top: 0;
    flex-direction: column;
    flex-wrap: wrap;
}
a.ser-arrow {
    position: relative;
    right: -34%;
    top: -12%;
}
/*****************************
Client Logo Slider
*****************************/
.slick-slide {
    margin: 0px 20px;
}
.slick-slide img {
    width: 100%;
}
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir="rtl"] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.client-logo-section {
    background: var(--lp-light-grey);
    position: relative;
}
/*****************************
Social Foot Section
*****************************/
.social-foot {
    position: relative;
    background-image: url("../images/botm-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
/*****************************
Faq Accodian Section
*****************************/
.faq-section .accordion-button {
    background: none;
}
.faq-section .accordion-item {
    border: none;
    margin-bottom: 20px;
    background-color: #f2f2f2 !important;
    border-radius: 10px !important;
}
.faq-section .accordion-button:not(.collapsed) {
    background-color: #f2f2f2;
    border-radius: 10px !important;
}
.faq-section button.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgb(28 165 111 / 31%);
    color: #1ca56f;
}
.faq-section button.accordion-button.collapsed,
.faq-section .accordion-button:not(.collapsed) {
    text-transform: uppercase;
    font-weight: 500;
}
/*****************************
Footer Section
*****************************/
footer.site-footer {
    background-color: #053d26;
    position: relative;
}
.contact-details {
    display: flex;
    gap: 50px;
}
.email-box,
.phone-box {
    display: flex;
    align-items: center;
    gap: 13px;
}
.footer-btm-bar {
    padding: 50px 0px;
    border-top: 2px solid #1e5e44;
}
.contact-form-footer input,
.contact-form-footer textarea {
    height: 47px;
    background: none;
    border: 2px solid #1e5e44;
    border-radius: 10px;
}
.contact-form-footer textarea {
    height: 110px;
}
.submite-btn {
    background-color: #1ca56f;
    height: 50px;
    border-radius: 10px;
    width: 100%;
    border: none;
    color: var(--lp-white);
}
/*****************************
Login Form
*****************************/
.login-page {
    background-image: url(../images/login-page-bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
}
.form-center-login {
    border: 2px solid #e9e9e9 !important;
    /*padding: 44px;*/
    border-radius: 30px;
    background: #ffffffa8;
}
.form-center-login input::placeholder {
    font-size: 16px;
}
a.link-signup {
    color: #158f5e;
    text-decoration: underline !important;
}
.form-center-login input:focus {
    box-shadow: 0 0 0 0.25rem rgb(28 165 111 / 31%);
}
.dashboard-cont-section {
    padding: 0px 4%;
}
/*---Form Feild---*/
.form-center-login input[type="password"],
.form-center-login input[type="email"],
.form-center-login input[type="text"],
.form-center-login input[type="phone"],
.form-center-login textarea {
    background: #f7f9fb;
    box-shadow: inset 0px 0px 4.7px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    height: 50px;
}
.form-center-login textarea {
    height: 110px;
}
/*---Bashboard Header---*/
.d-header {
    position: relative;
}
/*****************************
Dashboard
*****************************/
.grid-dash {
    display: flex;
    align-content: center;
    padding: 20px;
    gap: 21px;
    background-color: var(--lp-light-grey);
    border-radius: var(--lp-border-radius-lg);
}
.d-grid-cont {
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.d-grid-cont span.d-grid-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.d-map-section iframe {
    border-radius: var(--lp-border-radius-uxxxl);
}
/*****************************
Bottom Controle
*****************************/
.btm-controle {
    display: inline-flex;
    gap: 15px;
    padding: 18px;
    width: auto !important;
    justify-content: center;
    align-content: center;
    background: #f7fbf7;
    border: 1px solid #f7f9fb;
    box-shadow: inset 0px 0px 5px #dfdfdf;
    border-radius: 20px;
    align-items: center;
}
.scan-btn a {
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 125px;
    height: 125px;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 20pc;
    top: 0px;
    border: 1px solid #f7fbf7;
    box-shadow: inset 0px 0px 16.3px rgb(185 185 185);
    color: var(--lp-black);
    font-weight: 500;
}

.scan-btn a:hover {
    color: var(--lp-green);
}
.scan-btn img {
    width: 45px;
}
.btm-controle {
    position: relative;
    height: 94px;
}
.home-btn a,
.visit-btn a,
.profile-btn a,
.logout-btn a {
    padding: 13px 20px;
    border-radius: 10px;
    transition: 0.5s;
    color: var(--lp-black);
    display: block;
}
.home-btn a:hover,
.visit-btn a:hover,
.profile-btn a:hover,
.logout-btn a:hover {
    background-color: var(--lp-green);
}
.control-opt a img {
    width: 37px;
}
.control-opt a:hover {
    color: white;
}
.scan-btn a:hover {
    color: var(--lp-black);
}
.control-opt a {
    color: var(--lp-black);
}

.btm-controle {
    position: fixed;
    bottom: 49px;
}

/*****************************
popup Style
*****************************/
.popup-outer {
    border-radius: 30px !important;
    border: none !important;
}
.light-green {
    background-color: var(--lp-light-green) !important;
}

.show_icons {
    position: relative;
    /* bottom: 50%;
    left: 81%;
    border: none;*/
}
.show-i {
    position: absolute;
    top: 12px;
    right: 23px;
}
.panel {
    margin: 0px auto 40px;
    max-width: 500px;
    text-align: center;
}

.button_outer {
    background: #83ccd3;
    border-radius: 30px;
    text-align: center;
    height: 50px;
    width: 200px;
    display: inline-block;
    transition: 0.2s;
    position: relative;
    overflow: hidden;
}

.btn_upload {
    padding: 17px 30px 12px;
    color: #fff;
    text-align: center;
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 3;
    white-space: nowrap;
}

.btn_upload input {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    width: 100%;
    height: 105%;
    cursor: pointer;
    opacity: 0;
}

.file_uploading {
    width: 100%;
    height: 10px;
    margin-top: 20px;
    background: #ccc;
}

.file_uploading .btn_upload {
    display: none;
}

.processing_bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    border-radius: 30px;
    background: #83ccd3;
    transition: 3s;
}

.file_uploading .processing_bar {
    width: 100%;
}

.success_box {
    display: none;
    width: 50px;
    height: 50px;
    position: relative;
}

.success_box:before {
    content: "";
    display: block;
    width: 9px;
    height: 18px;
    border-bottom: 6px solid #fff;
    border-right: 6px solid #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 17px;
    top: 10px;
}

.file_uploaded .success_box {
    display: inline-block;
}

.file_uploaded {
    margin-top: 0;
    width: 50px;
    background: #83ccd3;
    height: 50px;
}

.uploaded_file_view {
    max-width: 300px;
    margin: 40px auto;
    text-align: center;
    position: relative;
    transition: 0.2s;
    opacity: 0;
    border: 2px solid #ddd;
    padding: 15px;
}

.file_remove {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: block;
    position: absolute;
    background: #aaa;
    line-height: 30px;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    right: -15px;
    top: -15px;
}

.file_remove:hover {
    background: #222;
    transition: 0.2s;
}

.uploaded_file_view img {
    max-width: 100%;
}

.uploaded_file_view.show {
    opacity: 1;
}

.error_msg {
    text-align: center;
    color: #f00;
}

.bannert-text h1,
.bannert-text h4,
.text-ser-box h4 {
    color: #fff !important;
}
.btn-onoff {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
.btn-onoff input {
    display: block;
    position: absolute;
    width: 112px;
    height: 32px;
}
.btn-onoff span {
    position: relative;
    display: block;
    width: 90px;
    height: 34px;
    border-radius: 40px;
    background: #ccc;
    border: 1px solid #ccc;
    -webkit-transition: 400ms;
    -moz-transition: 400ms;
    -ms-transition: 400ms;
    transition: 400ms;
}
.btn-onoff input:checked ~ span {
    border: 1px solid #4caf50;
    background: #4caf50;
}
.btn-onoff input ~ span:before {
    display: block;
    width: 34px;
    height: 34px;
    position: absolute;
    right: 29px;
    font-size: 12px;
    font-family: "Arial";
    font-weight: bold;
    line-height: 34px;
    color: #444;
    padding: 0px 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-transition: 500ms;
    -moz-transition: 500ms;
    -ms-transition: 500ms;
    transition: 500ms;
}
.btn-onoff input:checked ~ span:before {
    right: 53px;
    color: #fff;
}
.btn-onoff input ~ span:after {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    top: 3px;
    left: 4px;
    background: #fff;
    border-radius: 50%;
    -webkit-transition: 400ms;
    -moz-transition: 400ms;
    -ms-transition: 400ms;
    transition: 400ms;
}
.btn-onoff:hover input ~ span:after {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}
.btn-onoff input:checked ~ span:after {
    content: "";
    left: 51px;
}
.openclose {
    display: flex;
    align-items: center;
    gap: 10px;
}
.editiconBtn {
    position: absolute;
    top: 26px;
    right: 24px;
    background: #26624a;
    padding: 6px 22px;
    border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}
.viewiconBtn {
    background: #26624a;
    padding: 6px 22px;
    border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}
.inputWWapper {
    background: #f7f9fb;
    box-shadow: inset 0px 0px 4.7px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 15px;
}
.scanreader {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    margin: auto;
}
#result {
    background: #56874645;
    padding: 10px;
    border-radius: 5px;
}
.scanreader {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    width: 50%;
    margin: auto;
    padding: 37px;
    border: 1px solid #00000040;
    border-radius: 10px;
}
.resultclass,
.scan {
    padding: 0 !important;
}
a#html5-qrcode-anchor-scan-type-change {
    background: #148100;
    padding: 9px 20px;
    display: block;
    margin: auto;
    border-radius: 5px;
    color: #fff !important;
    font-size: 14px;
    cursor: pointer;
}
#html5-qrcode-button-camera-permission {
    background: #6c6c6c;
    padding: 9px 23px;
    display: block;
    margin: auto;
    border-radius: 5px;
    border: none;
    font-size: 14px;
    color: #fff !important;
    cursor: pointer;
}
#reader__dashboard_section {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
p.result {
    overflow: hidden;
    margin: 0;
}
#span_copy {
    cursor: pointer;
    border: 1px solid #489b12;
    padding: 4px;
    margin: 4px;
    /* border: beige; */
    background: #489b12;
    color: #ffff;
}
#visit_copy {
    cursor: pointer;
    border: 1px solid #489b12;
    padding: 4px;
    margin: 4px;
    /* border: beige; */
    background: #489b12;
    color: #ffff;
}

.update-g-btn,
.defualt-g-btn-cancel {
    width: 106px;

    border-radius: 8px;
    border: none;
    color: var(--lp-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px;
}

.update-g-btn {
    background: var(--lp-green);
}

.defualt-g-btn-cancel {
    background: #adadad !important;
}

.tree-image {
    display: flex;
    justify-content: center;
    gap: 29px;
}
.tree-info-card {
    font-family: "Roboto", sans-serif;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
}

.tree-info-header {
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
}

.tree-title {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.tree-botanical {
    display: block;
    font-size: 12px;
    font-style: italic;
    color: #666;
    margin-top: 2px;
}

.tree-info-body {
    padding: 9px;
}

.tree-image-container {
    width: 100%;
    height: 150px;
    overflow: hidden;
    padding-bottom: 9px;
}

.tree-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tree-details {
    padding: 10px 15px;
}

.tree-description {
    font-size: 13px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.4;
}

.tree-metadata {
    font-size: 12px;
    color: #666;
}

.tree-metadata p {
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.tree-metadata i {
    margin-right: 5px;
    font-size: 14px;
}

.tree-actions {
    padding: 10px 15px;
    border-top: 1px solid #eaeaea;
    text-align: right;
    background-color: #f8f9fa;
}

.tree-actions .btn {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.cardzz {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
}

.headerzz {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.titlezz {
    font-weight: bold;
    margin: 0;
    font-size: 1.1rem;
    font-family: Roboto, Arial, sans-serif !important;
    font-size: 30px !important;
}

.subtitlezz {
    font-style: italic;
    font-size: 0.9rem;
    color: #777;
    margin: 4px 0 0;
}

.imagezz {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.contentzz {
    padding: 1rem;
    color: #444;
    font-size: 0.9rem;
}

.meta-itemzz {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
    color: #555;
    font-size: 0.85rem;
}

.meta-itemzz i {
    margin-right: 0.5rem;
    color: #888;
}

.footerzz {
    padding: 1rem;
    border-top: 1px solid #eee;
    display: flex;
}

.btnzz {
    background-color: #28a745;
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btnzz:hover {
    background-color: #218838;
}

.cardee {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    gap: 20px;
    display: flex !important;
}

.card-headeree {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-direction: column;
}
.tree_count {
    gap: 40px;
}
.iconee {
    width: 60px;
    height: 60px;
    background: #d0f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.2rem;
}

.cardee h4 {
    margin: 0;
    font-size: 1rem;
}

.cardee p {
    margin: 0.2rem 0;
    font-size: 0.9rem;
    color: #666;
}

.progress-containeree {
    margin-top: 0.5rem;
}

.progress-baree {
    background: #d0ebff;
    border-radius: 5px;
    overflow: hidden;
    height: 6px;
    margin: 0.3rem 0;
}

.progress-fillee {
    background: #3498db;
    height: 100%;
    width: 50%; /* Change based on usage */
}

.progress-textee {
    font-size: 0.75rem;
    color: #444;
}

.cardree {
    padding: 20px;
    border-bottom: 1px solid #d3d3d3;
    border-radius: 0;
}

.card-headerree {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-headerree img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
}

.moreree {
    font-size: 14px;
    margin-left: 6px;
}

.card-titleree {
    font-weight: bold;
    font-size: 18px;
    margin: 12px 0 6px;
}

.card-textree {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.card-actionsree {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-actionsree button {
    border: none;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
}

.likeree {
    background: #f1f1f1;
}

.viewree {
    background: #f1f1f1;
}

.joinree {
    background-color: #0057ff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
}
/* .tree_mobile {
     //   display: flex !important;
       // flex-direction: column;
        //gap: 20px;
//   }*/

.tree_mobile {
    display: none !important;
}

.mobile-card {
    padding: 20px;
}
.tb_search_mob input#search_input_all {
    width: 100% !important;
}
.tb_search_mob {
    position: relative;
}

.tb_search_mob i {
    position: absolute;
    right: 22px;
    top: 6px;
}

/*****************************
Media query
*****************************/
@media only screen and (max-width: 781px) {
    .control-opt a {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 999px !important;
    }
}
@media only screen and (max-width: 768px) {
    .tree_mobile {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
    }
    .tree_desktop {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    h1 {
        font-size: 41px !important;
    }
    .bannert-text h4 {
        font-size: 24px;
    }
    .login-btn a {
        padding: 8px 10px;
        gap: 2px;
    }
    .scanreader {
        width: 100% !important;
    }
    .control-opt a img {
        width: 32px;
    }
    /*.btm-controle {*/
    /*    gap: 13px;*/
    /*    border-radius: 0 !important;*/
    /*    bottom: 0 !important;*/
    /*    position: fixed;*/
    /*    width: 100% !important;*/
    /*    max-width: 100% !important;*/
    /*}*/
    .control-opt a span {
        display: none;
    }
    .scan-btn a {
        display: block !important;
        width: 48px !important;
        height: 54px !important;
        box-shadow: none !important;
        padding: 7px;
        box-shadow: none !important;
    }

    .btm-controle {
        gap: 26px;
        border-radius: 0 !important;
        bottom: 13px !important;
        position: fixed;
        width: 356px !important;
        max-width: 100% !important;
        height: 80px;
        border-radius: 9999px !important;
    }
    /*.btm-controle {*/
    /*    width: 62% !important;*/
    /*}*/
    .home-btn a {
        padding: 5px 8px;
        border-radius: 999px;
    }
}

@media only screen and (max-width: 600px) {
    .contact-details {
        flex-direction: column;
    }
    .home-btn a,
    .visit-btn a,
    .profile-btn a,
    .logout-btn a {
        padding: 8px 7px;
    }
}
@media only screen and (max-width: 459px) {
    .btm-controle {
        gap: 4px;
    }
    .scan-btn a {
        width: 94px;
        height: 94px;
    }
}
@media only screen and (mac-width: 399px) {
    .btm-controle {
        width: 80% !important;
    }
}
@media only screen and (max-width: 389px) {
    .control-opt a span {
        display: none;
    }
    .btm-controle {
        gap: 0px;
    }
}

/* Hide mobile mode by default, show only on small screens */
.mobileMode {
    display: none;
}

/* Show desktop mode by default */
.desktopMode {
    display: block;
}

/* Responsive behavior: Show mobile mode and hide desktop mode on smaller screens */

@media screen and (max-width: 469px) {
    .mobileMode .nav-container {
        position: fixed;
        width: 100%;
        left: 0 !important;
        bottom: 35px;
    }
    .card_tag_line p {
        font-size: 9px;
    }
}

@media screen and (max-width: 768px) {
    .search_term {
        width: 100%;
    }
    .stats-container {
        display: grid !important;
        grid-template-columns: 2fr 2fr;
        margin: 5%;
        position: sticky;
        bottom: 13%;
    }
    .stat-card {
        width: 100% !important;
        height: 127px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .mobileMode {
        display: block;
    }
    .stat-card .card_tag_line {
        padding: 0 !important;
    }
    .card_tag_line p {
        font-size: 10px;
    }
    .stat-card .arrow-btn {
        width: 20px !important;
        height: 20px !important;
    }
    .desktopMode {
        display: none;
    }
    .dashboard-cont-section {
        padding: 0;
        margin: 0;
    }
    .mobile-bottom {
        margin: auto;
        width: 50%;
    }
    .mobileModeNavbar {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60px;
        position: fixed;
        z-index: 11;
        width: 100%;
        background: #5381d1;
    }
    .mobileMode .logo img {
        height: 58px;
    }

    .mobileMode .logo {
        height: 100px;
        width: 100px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 68px;
    }
    #menu_item {
        gap: 5px;
    }
    .mobileMode .nav-container {
        background-color: white;
        border-radius: 50px;
        padding: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        max-width: 600px;
        margin: 0 auto;
        position: fixed;
        /* width: 90%; */
        left: 15%;
        bottom: 35px;
    }

    .mobileMode .nav-item {
        display: flex;
        gap: 5px;
        align-items: center;
        justify-content: center;
        border-radius: 30px;
        padding: 8px 11px;

        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobileMode .nav-item.active {
        background-color: #0a8300;
        color: white;
    }

    .mobileMode .nav-item:not(.active) {
        background-color: #f5f5f5;
        color: #333;
    }

    .mobileMode .nav-item img {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

    .mobileMode .nav-text {
        font-weight: 500;
        font-size: 12px;
    }
    .main-content {
        flex-direction: column;
        margin: 5%;
    }
    .main_div {
        width: 100% !important;
        padding: 0 !important;
    }
    .tree-list {
        margin-bottom: 88px;
    }
    .mobile_sec {
        padding-top: 30%;
        padding-bottom: 100px;
    }
    .profile_sec {
        padding: 0 !important;
    }
    .toggle_sec {
        cursor: move;
        display: flex;
        justify-content: center;
        position: fixed;

        right: 14px;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        background: #00834f;

        align-items: center;
        z-index: 11111;
        transition: top 0.1s ease-out, left 0.1s ease-out; /* smooth motion */
    }
    .toggle_sec i {
        color: #fff;
        position: relative;
        font-size: 20px;
    }
}
@media screen and (min-width: 769px) {
    .dashboard-cont-section {
        padding: 113px 0px 0px 0px;
    }
}

.desktopNavbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 121px 28px 121px;
    background-color: transparent;
    position: fixed;
    z-index: 11;
    width: 100%;
}

.desktopNavbar .logo {
    font-size: 24px;
    font-weight: bold;
    color: #2e7d32;
}
.desktopNavbar img {
    height: 65px;
}

.desktopNavbar .nav-links {
    display: flex;
    gap: 30px;
}

.desktopNavbar .nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
}

.logout-btn {
    background-color: #ef5350;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.main_div {
    padding: 90px 0;
    width: 1300px;
    margin: auto;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.stat-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
}

.stat-card .icon {
    width: 40px;
    height: 40px;
    background-color: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card .icon::before {
    font-size: 20px;
}
.stat-card:nth-child(1) .icon::before {
    content: url("/assets/images/logo/tree_icon_1.png");
}
.stat-card:nth-child(2) .icon::before {
    content: url("/assets/images/logo/tree_icon_2.png");
}
.stat-card:nth-child(3) .icon::before {
    content: url("/assets/images/logo/tree_icon_3.png");
}
.stat-card:nth-child(4) .icon::before {
    content: url("/assets/images/logo/tree_icon_4.png");
}
.stat-card .text {
    text-align: left;
}

.stat-card .text h3 {
    font-size: 24px;
    color: #2e7d32;
}

.stat-card .text p {
    font-size: 14px;
    color: #666;
}
.stat-card .icon_count {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 15px;
}
.stat-card .arrow-btn {
    background-color: #2e7d32;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;

    border: none;
}

.arrow-btn span {
    font-size: 32px;
    font-weight: 200;
}
.stat-card .card_tag_line {
    display: flex;
    justify-content: space-between;
    padding: 15px;
}
.main-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 32px 0px;
    flex-wrap: wrap;
}

.map-container {
    flex: 2;

    border-radius: 10px;

    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tree-list {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.data-state {
    max-height: 440px;
    overflow-y: auto;
    padding: 20px;
}

.tree-list h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.tree-list .filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.btnStylish {
    background-color: #e8f5e9;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    color: #2e7d32;
}
.btnNormal {
    background-color: #e8f5e9;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    color: #9ea39f;
}

.tree-list .state-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.tree-list .state-item:last-child {
    border-bottom: none;
}

.tree-list .state-item span {
    font-size: 14px;
}
.dashboard-head:after {
    z-index: -9999999;
    left: 0;
    height: 55%;
    width: 100%;
    position: absolute;
    content: "";
    background: linear-gradient(178deg, #3d6dd7 -11.68%, #c7e8b1 95.21%);
}
.dashboard_sec {
    background: linear-gradient(
        178deg,
        #3d6dd7 -11.68%,
        #c7e8b1 95.21%
    ) !important;
}
.main_div img {
    max-height: 255px;
    object-fit: cover;
}
.card-img-top {
    width: 100%;
    height: 200px;
}
.qr_code_title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
#user_profile_pic {
    max-width: 232px;
}
.profile_sec {
    padding: 27px 211px 0px 312px;
}
.search_term {
    position: relative;
}
.search_term_icon {
    position: absolute;
    bottom: 16%;
    right: 2.1%;
    cursor: pointer;
    font-size: large;
    color: red;
}
