body,label,.fancybox__content,.leaflet-popup-pane, .leaflet-control{
    cursor: url(../dashboard/images/icon/cursor.svg),auto !important;
}

select,a,.nav-item,.nice-select,.nice-select li,button,#searchResults, .dropdown-menu ul, .dropdown-menu li, .tawk-min-container button, #proof,input[type="file"],input[type="radio"],input[type="checkbox"],.place-item,.leaflet-interactive{
     cursor: url(../dashboard/images/icon/pointer.svg),auto !important;
 }

input:not([type="file"]):not([type="radio"]):not([type="checkbox"]),textarea,.flipbook-page-html .textLayer :is(span,br){
    cursor: url(../dashboard/images/icon/type.svg),auto !important;
}

.leaflet-grab,.flipbook-bookLayer{
    cursor: url(../dashboard/images/icon/grab.svg), grab ;
}
.leaflet-dragging .leaflet-grab{
    cursor: url(../dashboard/images/icon/dragging.svg),grabbing !important;
}

.leaflet-grab{
    cursor: url(../dashboard/images/icon/pointer.svg), pointer ;
}

input,textarea{
    caret-color: #FF6725 !important;
}

/* Target the entire Fancybox container and its contents */
.fancybox__container,
.fancybox__container *,
.fancybox__backdrop,
.fancybox__carousel,
.fancybox__viewport,
.fancybox__track,
.fancybox__slide,
.fancybox__content,
.fancybox__iframe,
iframe[src*="youtube"],
iframe[src*="youtube-nocookie"],
.has-youtube iframe,
.has-youtube * {
    cursor: url(../dashboard/images/icon/cursor.svg), auto !important;
}

/* Override any potential inline styles from YouTube's player */
.fancybox__container iframe::after {
    cursor: url(../dashboard/images/icon/cursor.svg), auto !important;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    pointer-events: none;
}


.theme-main-menu.fixed{
    background-color: rgba(255, 255, 255, 0.8); /* White background with 80% opacity */
    backdrop-filter: blur(15px); /* Blur effect */
    -webkit-backdrop-filter: blur(15px); /* Blur effect for Safari */
    box-shadow: 0 0 3px rgba(60, 72, 88, 0.15); /* Subtle shadow */
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease; /* Smooth transition */
}

::selection {
    background-color: #ff6725;
    color: #ffffff;
}


/* Toast */
#toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

.toast {
    display: flex;
    align-items: center;
    background-color: rgba(51, 51, 51, 0.7); /* Translucent background */
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
    opacity: 0;
    animation: fadeIn 0.5s, fadeOut 0.5s 4.5s forwards; /* Added "forwards" to keep final state */
    backdrop-filter: blur(10px); /* Blurred background */
}

.toast img {
    border-radius: 50%;
    margin-right: 10px;
}

.toast.show {
    opacity: 1;
    transform: translateY(0); /* Slide up to appear */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(100%); } /* Slide down to disappear */
}

/* End Toast*/

@media screen and (max-width: 991px) {
    .navbar-collapse .logo {
        margin-bottom: 3vh;
    }
}

.mega-dropdown-list span{
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.glass-effect{
    background-color: rgba(255, 255, 255, 0.8); /* White background with 80% opacity */
    backdrop-filter: blur(15px); /* Blur effect */
    -webkit-backdrop-filter: blur(12px); /* Blur effect for Safari */
    box-shadow: 0 0 3px rgba(60, 72, 88, 0.15); /* Subtle shadow */
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease; /* Smooth transition */
}


@media (max-width: 575px) {
    .dashboard-body .dashboard-header .search-form {display: block !important;}

}

@media (min-width: 1400px) {
    .related-tools-image{
        max-width: 50%;
    }
}
@media (max-width: 1399px) {
    .related-tools-image{
        width: 25px;
        max-width: 150%;
    }
}

@media (max-width: 1199px) {

    .dashboard-body {
        padding: 115px 15px 30px !important;
    }
    .dashboard-body .filter-input li{
        width: calc(33.33% - 20px) !important;
    }
}

.dashboard-body .filter-input li{
    width: calc(33.33% - 20px) !important;
}
@media (max-width: 991px) {
    .dashboard-body .filter-input li {
        width: calc(50% - 20px) !important;
    }
}

.dashboard-body {
    padding-top: 150px;
}

.listing-card-one .feature li {
    padding: 0 15px;
    margin-top: 12px;
}

.alert-primary{
    background-color:#ffede5;
    border-color: #e64500;
    color: #0c0c0c;
}

.alert-primary a{
    color: #FF6725 !important;
}

.navbar .dropdown-menu .dropdown-item {
    font-size: 0.80em;
    padding-top: 0.20rem;
    padding-bottom: 0.20rem;
}


/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 9px; /* Width of the scrollbar */
    height: 9px; /* Height of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
    border-radius: 10px; /* Optional: rounded corners for the track */
}

::-webkit-scrollbar-thumb {
    background: #FF6725; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Optional: rounded corners for the thumb */
    border: 2px solid #f1f1f1; /* Optional: add a border around the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #FF6725; /* Color of the scrollbar thumb when hovered */
}


/* Custom Scrollbar Styles */
#dashAsideNavbar::-webkit-scrollbar {
    width: 9px; /* Width of the scrollbar */
}

#dashAsideNavbar::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
    border-radius: 10px; /* Optional: rounded corners for the track */
}

#dashAsideNavbar::-webkit-scrollbar-thumb {
    background: #FF6725; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Optional: rounded corners for the thumb */
    border: 2px solid #f1f1f1; /* Optional: add a border around the thumb */
}

#dashAsideNavbar::-webkit-scrollbar-thumb:hover {
    background: #FF3F25; /* Color of the scrollbar thumb when hovered */
}
#dashAsideNavbar {
    direction: rtl; /* Switch the direction of the element to right-to-left */
}
#dashAsideNavbar .position-relative {
    direction: ltr; /* Reset the direction to left-to-right for the inner content */
}

/* Credits Section Styles */
.credits-section {
    background-color: #0D1A1C; /* Background color to match your theme */
    padding: 20px 0; /* Padding for spacing */
    position: relative; /* Fixed position to stay at the bottom */
    width: 100%; /* Full width */
}

.credits-section .container {
    max-width: 1200px; /* Max width for the container */
    margin: 0 auto; /* Center align */
}

.credits-section p {
    margin: 0; /* Remove default margin */
    color: #ffffff; /* Text color */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Font weight */
    display: flex; /* Flexbox for centering content */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
}

.footer-logo-icon {
    margin-right: 4px; /* Space between the logo icon and the text */
    margin-bottom: 4px; /* Space between the logo icon and the text */
    width: 24px; /* Width of the logo icon */
    height: auto; /* Maintain aspect ratio */
}



@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    width: 100px;
    height: 100px;
    animation: pulse 1s infinite;
}

#suggestions{
    text-align: left;
    margin-top: 20px;
}

.pagination-one{
    flex-wrap: wrap;
}

.pagination-one button{
    padding: 0 1px;
}

.pagination-one li a{
    width: 60px;
    height: 60px;
    line-height: 60px;
}

.text-orange{
    color: #FF6725;
}
text-primary{
    color: #FF6725 !important;
}
code{
    color: #e64500;
}

/* Remove blue border on focus search bar */
.no-outline:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Remove the clear button (blue cross) */
.no-outline::-ms-clear {
    display: none;
}

.no-outline::-webkit-search-cancel-button {
    display: none;
}
/* Dropdown menu styling */
#searchResults {
    width: 90%; /* Make the dropdown the same width as the search bar */
    max-height: 300px; /* Adjust the max-height as needed */
    overflow-y: auto; /* Add scroll if the content exceeds max-height */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    position: absolute; /* Ensure the dropdown is positioned correctly */
    left: 5% !important; /* Align dropdown with the left edge of the search bar */
    z-index: 1000;
    border: none;
    inset: 0px auto auto 0px;
    margin: 0px;
    transform: translate3d(0px, 55px, 0px);
}

/* Dropdown item styling */
#searchResults .dropdown-item {
    padding: 15px;
    cursor: url(../dashboard/images/icon/pointer.svg),auto;
}

/* Hover effect for dropdown items */
#searchResults .dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Webkit-based browsers (Chrome, Safari) */
#searchResults::-webkit-scrollbar {
    height: 8px; /* Height of the horizontal scrollbar */
}

#searchResults::-webkit-scrollbar-thumb {
    background-color: #FF6725; /* Color of the scrollbar thumb */
    border-radius: 8px; /* Rounded corners of the scrollbar thumb */
}

#searchResults::-webkit-scrollbar-track {
    background-color: #FF6725; /* Color of the scrollbar track */
}

/* Firefox */
#searchResults {
    scrollbar-width: thin; /* Makes the scrollbar thin */
    scrollbar-color: #FF6725 #FF6725; /* Color of the scrollbar thumb and track */
}

.two-line-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.four-line-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-meta-two .hover-content .post-data .blog-title h4 {
    font-size: 30px;
    line-height: 1.444em;
}
:root {
    --bs-focus-ring-width: 0.25rem;
    --bs-focus-ring-opacity: 0.25;
    --bs-focus-ring-color: rgba(255, 103, 37, 0.25); /* Change to your desired color */
}

input.form-control:focus {
    box-shadow: 0 0 3px 3px rgba(255, 103, 37, 0.75); /* Glowing effect */
    outline: none; /* Remove default outline */
    caret-color: #ff6725;
}

.scroll-top{
    left:10px;
}

.hero-banner-three::before{
    background: rgba(0, 0, 0, 0.63);
    filter: blur(10px);
}

.list-style-one li:before{
    color: #ff6725;
}

.text-left{
    text-align: left !important;
}

.block-feature-eight .media-block .screen_02{
    top: -20% !important;
    right: -30% !important;
}

@media screen and (max-width: 480px) {
    .block-feature-eight .media-block .screen_02{
        top: -20% !important;
        right: -3% !important;
    }
}

.feedback-block-four .rating li{
    color: #ff6725;
}

.navbar .dropdown:hover > .dropdown-menu{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow for depth */
}


.hero-banner-two {
    background: linear-gradient(178.61deg, #FFF8F4 1.17%, #F5EDE8 98.81%);
}

.hero-banner-two .shape_02 {
    right: 20%;
    top: 20%;
    max-width: 10%;
}

.faq-section-one .shape_01 {
    bottom: 15%;
}

.process-section img{
    width: 220px;
    opacity: 0.85;
}

.fancy-banner-eight .bg-wrapper {
    padding-top: 30px !important;
}

.info-popup{
    max-width: 480px;
    padding: 30px 20px;
}

.hero-banner-two .hero-heading span img
{
    animation: rotated 18s infinite linear;
    margin-left: 6px;
}

.hero-banner-three .hero-heading span img
{
    animation: rotated 18s infinite linear;
    top: 30%;
}

@media only screen and (max-device-width: 540px){
    .dont-display-on-mobile{
        display: none !important;
    }
}

@media only screen and (max-device-width: 1199px){
    .dont-display-on-small-devices{
        display: none !important;
    }
}


@media (max-width: 991px) {
    .hero-banner-two .hero-heading, .hero-banner-three .hero-heading {
        font-size: 55px !important;
    }
}


.footer-one .footer-intro .social-icon li{
    margin-top: 5px;
}


.dashboard-body .dashboard-header .profile-notification .dropdown-menu:before {
    content: url(../dashboard/images/icon/icon_42.svg);
    position: absolute;
    right: 154px;
    top: -17px;
}

@media (max-width: 767px) {
    .dashboard-body .dashboard-header .profile-notification .dropdown-menu:before {
        right: 92px;
    }

}

@media (max-width: 575px) {
    .dashboard-body .dashboard-header .user-data .user-name-data .dropdown-menu:before {
        right: 17px;
    }

    .dashboard-body .dashboard-header .profile-notification .dropdown-menu:before {
        right: 83px;
    }

    .profile-notification .dropdown-menu{
        transform: translate3d(-202px, 52px, 0px) !important;
    }

    .dash-aside-navbar .footer-one .footer-intro .social-icon li{
        padding : 0 2px;
    }
}

.list-style-referral li:before {
    content: none;
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 0.85em;
}

/* Date Picker Style */
.datepicker {
    font-family: "Gordita", sans-serif;
    font-size: 16px;
    color: #000;
    background-color: #FFF8F4;
    border: 1px solid #FF6725;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.datepicker .datepicker-days table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.datepicker .datepicker-days table th,
.datepicker .datepicker-days table td {
    text-align: center;
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.2s ease-in-out;
}

.datepicker .datepicker-days table th {
    color: #FF6725;
    font-weight: 600;
}

.datepicker .datepicker-days table td.day:hover,
.datepicker .datepicker-days table td.day.focused {
    background-color: #FF6725;
    color: #FFF;
    cursor: url(../dashboard/images/icon/pointer.svg),auto;
}

.datepicker .datepicker-days table td.active,
.datepicker .datepicker-days table td.active:hover {
    background-color: #FF3F25;
    color: #FFF;
}

.datepicker .datepicker-days table td.old,
.datepicker .datepicker-days table td.new {
    color: rgba(0, 0, 0, 0.3);
}

.datepicker .datepicker-months,
.datepicker .datepicker-years,
.datepicker .datepicker-decades {
    padding: 10px;
    border-radius: 8px;
}

.datepicker .datepicker-months table td:hover,
.datepicker .datepicker-years table td:hover,
.datepicker .datepicker-decades table td:hover {
    background-color: #FF6725;
    color: #FFF;
    cursor: url(../dashboard/images/icon/pointer.svg),auto;
}

.datepicker .datepicker-months table td.active,
.datepicker .datepicker-years table td.active,
.datepicker .datepicker-decades table td.active {
    background-color: #FF3F25;
    color: #FFF;
}

.datepicker-dropdown {
    background-color: #FFF8F4;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.datepicker-dropdown:before {
    border-bottom-color: #FF6725;
}

.datepicker-dropdown:after {
    border-bottom-color: #FFF8F4;
}

.text-logo-grey{
    color: #333333 ;
}

.nice-select span.current {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}

.dashboard-body .dash-card-one .value
{
    font-size: 36px;
}

#clicktocopy, #referral-link {
    cursor: url(../dashboard/images/icon/pointer.svg),auto;
}

#loginModal .nice-select{
    background: rgba(0, 0, 0, 0);
}

@media (max-width: 1199px) {
    .dash-aside-navbar .dasboard-main-nav li a img {
        width: 22px !important;
    }
}

.hidden-login-element{
    display: none;
}

#onesignal-bell-container.onesignal-reset .onesignal-bell-launcher.onesignal-bell-launcher-theme-default .onesignal-bell-launcher-button svg .background {
    fill: #ff6725 !important;
}

#onesignal-bell-container.onesignal-reset .onesignal-bell-launcher-inactive{
    display: none !important;
}

/* Live Notification */

.custom-social-proof {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999999999999 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.custom-social-proof.show {
    opacity: 1;
    visibility: visible;
}

.custom-social-proof .custom-notification {
    width: 320px;
    border: 0;
    text-align: left;
    z-index: 99999;
    box-sizing: border-box;
    font-weight: 400;
    border-radius: 6px;
    border: 2px solid #FF6725;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    bottom: 20px;
    left: 20px;
}
.custom-social-proof .custom-notification .custom-notification-container {
    display: flex !important;
    align-items: center;
    min-height: 80px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.custom-social-proof .custom-notification .custom-notification-container .custom-notification-image-wrapper img {
    max-height: 75px;
    margin-left: 5px;
    overflow: hidden;
    border-radius: 6px;
    object-fit: contain;
}
.custom-social-proof .custom-notification .custom-notification-container .custom-notification-content-wrapper {
    margin: 0;
    height: 100%;
    color: #000;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0 6px 6px 0;
    flex: 1;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}
.custom-social-proof .custom-notification .custom-notification-container .custom-notification-content-wrapper .custom-notification-content {
    font-family: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px;
    line-height: 16px;
}
.custom-social-proof .custom-notification .custom-notification-container .custom-notification-content-wrapper .custom-notification-content small {
    margin-top: 3px !important;
    display: block !important;
    font-size: 12px !important;
    opacity: 0.8;
}
.custom-social-proof .custom-notification .custom-close {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 12px;
    width: 12px;
    transition: 0.2s ease-in-out;
    transform: rotate(45deg);
    opacity: 0.5;
    z-index: 999999999999999 !important;
}
.custom-social-proof .custom-notification .custom-close::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: gray;
    position: absolute;
    left: 0;
    top: 5px;
}
.custom-social-proof .custom-notification .custom-close::after {
    content: "";
    display: block;
    height: 100%;
    width: 2px;
    background-color: gray;
    position: absolute;
    left: 5px;
    top: 0;
}
.custom-social-proof .custom-notification:hover .custom-close {
    opacity: 1;
}

.custom-social-proof {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999999999999 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.error-section {
    min-height: 10vh;
}

#referral-link, #original-link {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 60px;
}


.dashboard-body .dashboard-header .profile-notification .dropdown-menu .notify-list li h6 {
    width: 231px;
}
.dash-aside-navbar .dasboard-main-nav li a.active{
    background: #ff6725;
}

.frosted-glass {
    background-color: rgba(255, 255, 255, 0.6); /* White background with 80% opacity */
    backdrop-filter: blur(15px); /* Blur effect */
    -webkit-backdrop-filter: blur(15px); /* Blur effect for Safari */
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease; /* Smooth transition */
}


.slick-center .feedback-block-four{
    background: #FFFFFF;
}

.blog-meta-two .hover-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(243, 243, 243, 0.85); /* Changed from solid #F3F3F3 to semi-transparent */
    backdrop-filter: blur(8px); /* Add blur effect for frosted glass */
    -webkit-backdrop-filter: blur(8px); /* For Safari support */
    z-index: 1;
    padding: 20px 30px 0 30px;
    opacity: 0;
    visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Optional: adds subtle border */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth transition */
}

.blog-meta-two:hover .hover-content {
    opacity: 1;
    visibility: visible;
}


.breadcrumb {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    padding: 0 8px;
}

.breadcrumb-item a {
    color: #FF6725;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #e64500;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #495057;
    font-weight: 500;
}

.theme-details-one .list-type{
    width:auto;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 3px;
    line-height: 30px;
}

.theme-details-one .action-btns {
    justify-content: flex-end !important;
}
.theme-details-one .accordion-style-two .accordion .accordion-button:after{
    line-height: 39px;
}
.theme-details-one .accordion-style-two .accordion .accordion-button:not(.collapsed):after{
    line-height: 35px;
}


.carousel-indicators {
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #FF6725 transparent; /* Optional: thumb color and track color */
}

/* For WebKit browsers (Chrome, Safari, Edge) */
.carousel-indicators::-webkit-scrollbar {
    height: 3px; /* Use height for horizontal scrollbars, width for vertical */
    width: 3px;  /* Set if it's vertical scrolling */
}

.carousel-indicators::-webkit-scrollbar-thumb {
    background-color: #FF6725; /* Scrollbar thumb color */
    border-radius: 3px;
}

.carousel-indicators::-webkit-scrollbar-track {
    background: transparent; /* Scrollbar track color */
}

/* Apartment share button */
/* Add this to your CSS file or in a <style> tag in your head section */

.share-popup {
    position: absolute;
    display: none;
    width: 280px;
    right: 0;
    top: 60px;
    z-index: 10000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.share-popup-inner {
    transition: all 0.3s ease;
    text-align: center;
}

.share-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-items: center;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 5px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    text-align: center;
}

.share-option i {
    font-size: 20px;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px; /* Fixed height for consistency */
}

.share-option span {
    font-size: 12px;
    text-align: center;
    width: 100%;
}

.share-option:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.share-popup.active {
    display: block;
    animation: fadeIn 0.3s forwards;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .share-popup {
        width: 240px;
        right: -100px;
    }

    .share-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pdf-container {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: relative;
}

.pdf-container object {
    display: block;
}

.fallback-message {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.similar-icon {
    font-size: 1.5em;
    line-height: 1;
    margin-top: 6px;
    font-weight: 300;
    color: #000;
}

a:hover .similar-icon,
a:focus .similar-icon {
    color: white;
}

.carousel-indicators [data-bs-target] {
    background-color: transparent;
}

.theme-details-one .media-gallery .carousel .carousel-indicators{
    padding-top: 45px;
}


@media screen and (max-width: 991px) {
    .theme-details-one .media-gallery .carousel .carousel-indicators{
        padding-top: 15px;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }

    .carousel-indicators {
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        margin-bottom: 0 !important;
        padding: 10px !important;
        -webkit-overflow-scrolling: touch;
    }

    .images-carousel-indicators [data-bs-target] {
        background-color: transparent;
        width: 100px !important;
        height: auto !important;
        margin: 0 5px !important;
        flex: 0 0 auto !important;
        opacity: 1;
    }

    .carousel-indicators [data-bs-target] img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }

    /* Show a scrollbar for visibility */
    .carousel-indicators::-webkit-scrollbar {
        height: 4px;
    }

    .carousel-indicators::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 4px;
    }
}

/* Score Card Styles */
.score-card {
    transition: all 0.3s ease;
}

.score-card:hover {
    transform: translateY(-3px);
}

/* Score Circle Styles */
.score-circle-container {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.score-circle {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f5f5f5;
    overflow: hidden;
}

.score-circle:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: white;
    border-radius: 50%;
    z-index: 2;
}

.score-circle:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        var(--circle-color, #ff6725) var(--percentage, 50%),
        #f5f5f5 var(--percentage, 50%)
    );
    z-index: 1;
}

.score-circle-inner {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: white;
    border-radius: 50%;
    z-index: 3;
}

.score-value {
    line-height: 1;
    color: var(--circle-color, #ff6725);
}

.score-label {
    font-size: 12px;
    color: #777;
    line-height: 1;
}

.score-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: rgba(255, 103, 37, 0.1);
    color: #ff6725;
    border-radius: 21%;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .score-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .score-circle-container {
        width: 70px;
        height: 70px;
    }

    .score-value {
        font-size: 1.25rem !important;
    }
}


.category-title {
    position: relative;
    padding-left: 15px;
    color: #333;
}

.category-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background-color: #ff6725;
    border-radius: 3px;
}

.service-card {
    background-color: #fff;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.service-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 103, 37, 0.1);
    color: #ff6725;
    border-radius: 50%;
    font-size: 18px;
}

.service-unavailable .service-icon {
    background-color: rgba(200, 200, 200, 0.3);
    color: #888;
}

.service-status {
    font-size: 13px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 50px;
}

.status-badge.available {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.status-badge.unavailable {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
}

/* Legend for services availability */
.services-legend {
    padding: 10px 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
}

.status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-dot.available {
    background-color: #4CAF50;
}

.status-dot.unavailable {
    background-color: #F44336;
}

.legend-text {
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .service-card {
        margin-bottom: 15px;
    }

    .service-icon-container {
        width: 40px;
        height: 40px;
    }

    .service-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}


/* All Map Related css in apartment listing page*/

/* Nearby Places Section Styles */
.nearby-places-section {
    font-family: "Gordita", sans-serif;
}

.nearby-places-heading {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
}

/* Distance Filter Styles */
.distance-filter-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.distance-filter-label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.distance-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.distance-option {
    padding: 8px 16px;
    border-radius: 50px;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
        cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
}

.distance-option:hover {
    background-color: #f0f0f0;
    color: #000;
}

.distance-option.active {
    background-color: #FF6725;
    color: white;
    border-color: #FF6725;
}

/* Category Tabs Styles */
.category-tabs-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #FF6725 transparent;
    padding-bottom: 10px;
}

.category-tabs-container::-webkit-scrollbar {
    height: 5px;
}

.category-tabs-container::-webkit-scrollbar-thumb {
    background-color: #FF6725;
    border-radius: 10px;
}

.category-tabs-container::-webkit-scrollbar-track {
    background: transparent;
}

.category-tabs {
    display: flex;
    gap: 12px;
    padding: 2px;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
        cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
}

.category-tab i {
    font-size: 16px;
}

.category-tab:hover {
    background-color: #f0f0f0;
    color: #000;
}

.category-tab.active-tab {
    background-color: #FF6725;
    color: white;
    border-color: #FF6725;
}

/* Map and List Container Styles */
.map-and-list-container {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    height: 500px;
}

.map-container {
    flex: 1;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#nearby-map {
    height: 500px;
    width: 100%;
}

.places-list-container {
    width: 340px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.places-list-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.places-count {
    font-size: 18px;
    font-weight: 600;
    color: #FF6725;
    margin: 0;
}

.places-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.place-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
}

.place-item:hover {
    background-color: #f9f9f9;
}

.place-item.selected-place {
    background-color: rgba(255, 103, 37, 0.05);
    border-left: 3px solid #FF6725;
}

.place-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 103, 37, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #FF6725;
    flex-shrink: 0;
}

.place-icon i {
    font-size: 18px;
}

.place-details {
    flex: 1;
}

.place-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0 0 5px;
}

.place-distance {
    font-size: 14px;
    color: #777;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.place-travel-time {
    font-size: 14px;
    color: #777;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.place-arrow {
    color: #ccc;
    font-size: 14px;
}

.selected-place .place-arrow {
    color: #FF6725;
}

/* Custom Map Marker Styles */
.property-marker-inner {
    width: 48px;
    height: 48px;
    background-color: #FF6725;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 0 4px rgba(255, 103, 37, 0.3);
    border: 2px solid white;
    font-size: 20px;
}

.marker-icon-inner {
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6725;
    box-shadow: 0 0 0 3px rgba(255, 103, 37, 0.2);
    border: 2px solid #FF6725;
    font-size: 16px;
}

/* Loading indicator */
.places-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #777;
}

/* Map Attribution Styles */
.map-attribution {
    font-size: 12px;
    color: #777;
    text-align: right;
    margin-top: 10px;
}

.map-attribution a {
    color: #FF6725;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .map-and-list-container {
        flex-direction: column;
        height: auto;
    }

    .map-container {
        height: 500px;
        margin-bottom: 20px;
    }

    #nearby-map {
        height: 350px;
    }

    .places-list-container {
        width: 100%;
        height: 300px;
    }

    .distance-filter-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .distance-filter-options {
        width: 100%;
        justify-content: space-between;
    }

    .distance-option {
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .category-tab {
        padding: 8px 15px;
        font-size: 13px;
    }

    .category-tab i {
        font-size: 14px;
    }

    .places-count {
        font-size: 16px;
    }

    .place-item {
        padding: 12px 15px;
    }

    .place-icon {
        width: 32px;
        height: 32px;
        margin-right: 10px;
    }

    .place-name {
        font-size: 14px;
    }

    .place-distance, .place-travel-time {
        font-size: 12px;
    }
}

.places-loading p{
    padding: 20px;
}

.leaflet-control-attribution {
    display: none;
}

.payment-plan-card {
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
}

.payment-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.plan-header {
    padding: 20px;
    background-color: rgba(255, 103, 37, 0.05);
}

.plan-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #fff;
    color: #ff6725;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 3px 10px rgba(255, 103, 37, 0.2);
}

.plan-title {
    font-weight: 600;
    color: #333;
    font-size: 18px;
}

.plan-badge {
    background-color: #ff6725;
    color: white;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 50px;
}

.plan-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(255, 103, 37, 0.1), rgba(255, 103, 37, 0.5), rgba(255, 103, 37, 0.1));
}

.plan-body {
    padding: 20px;
}

.plan-details {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    white-space: pre-line;
}

.payment-milestones {
    margin-bottom: 15px;
}

.milestone-item {
    margin-bottom: 15px;
}

.milestone-percentage {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.milestone-bar {
    height: 6px;
    background-color: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.milestone-progress {
    height: 100%;
    background-color: #ff6725;
    border-radius: 3px;
}

.milestone-stage {
    font-size: 14px;
    color: #666;
}

.plan-footer {
    border-top: 1px dashed #eee;
    padding-top: 15px;
}

.btn-inquire {
    display: inline-block;
    color: #ff6725;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-inquire:hover {
    color: #e55b1e;
    text-decoration: underline;
}

.no-plans-message {
    background-color: #f9f9f9;
    color: #555;
}

.no-plans-message i {
    color: #ff6725;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .plan-header {
        padding: 15px;
    }

    .plan-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .plan-title {
        font-size: 16px;
    }

    .plan-body {
        padding: 15px;
    }
}

.theme-details-one .property-floor-plan .carousel-indicators{
    top:-50px;
    right: 0 !important;
}

.favourited,.in-comparison{
    color: #fff !important;
    background-color: #ff6725 !important;
    border-color: #ff6725 !important;
}


/* Empty comparison page styling */
.empty-comparison {
    padding: 60px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

/* Responsive fixes for comparison table */
@media (max-width: 768px) {
    .compare-table .table {
        min-width: 800px;
    }
}

.fancy-banner-nine .fact-wrapper .fact-box{
    padding: 40px 20px;
}

.orange-underline{
    font-style: italic;
    color: #FF6725;
    text-decoration-line: underline;
    text-decoration-thickness: 3px;
}

.partner-section-one p{
    margin: 45px 0 0;
}

.partner-section-one blockquote{
    font-size: 32px;
    line-height: 1.625em;
    font-weight: 500;
    color:#000000;
}

.partner-logo-one .item img {
    width: auto;
    height: 60px;
    max-width: 100%;
    margin: 0 auto;
    object-fit: contain;
}

.partner-section-one .bg-wrapper{
    padding: 30px 15px;
}

.express-interest .input-box-three textarea{
    height: auto;
}

/* Floating Form Styles */
.floating-form {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 27%;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.floating-form.visible {
    transform: translateY(0);
}

.floating-form-header {
    background-color: #f8f9fa;
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.floating-form-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.close-floating-form {
    background: none;
    border: none;
    font-size: 20px;
        cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
    color: #6c757d;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.close-floating-form:hover {
    background-color: #e9ecef;
}

.floating-form-content {
    padding: 15px;
    overflow-y: auto;
}

/* Form input styles to match original */
.floating-form .input-box-three {
    margin-bottom: 15px;
}

.floating-form .label {
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
    color: #555;
}

.floating-form input[type="text"],
.floating-form input[type="tel"],
.floating-form textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 14px;
}

.floating-form textarea {
    height: 80px;
    resize: none;
}

.floating-form button[type="submit"] {
    width: 100%;
    background-color: var(--color-one, #FF5A3C);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
        cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-form button[type="submit"]:hover {
    background-color: var(--color-two, #E44D30);
}

/* Success message styling */
.floating-form .success-message {
    text-align: center;
    padding: 20px 10px;
    color: #ff6725;
}

.floating-form .success-message i {
    color: #ff6725;
    font-size: 48px;
    margin-bottom: 15px;
}

/* Hide on smaller devices */
@media only screen and (max-width: 1199px) {
    .floating-form {
        display: none !important;
    }
}
/* Navigation arrows and interactive buttons */
.flipbook-left-arrow,
.flipbook-right-arrow,
.flipbook-first-arrow,
.flipbook-last-arrow,
.flipbook-menu-btn,
.flipbook-btn-close,
.thumb-btn-close,
.flipbook-toc .toc-item,
.flipbook-page-note,
.flipbook-add-note-rect .add-note-btn,
.pageClickArea,
.flipbook-share .social li,
.flipbook-spotlight-close-button,
.flipbook-thumb,
.flipbook-currentPageInput,
.flipbook-search-match,
.flipbook-tocItem,
.flipbook-share .flipbook-menu-btn-wrapper{
    cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
}

/* Grab/dragging cursors */
.flipbook-bookLayer {
    cursor: url(../dashboard/images/icon/grab.svg), grab !important;
}

.flipbook-dragging .flipbook-bookLayer,
.flipbook-move:active {
    cursor: url(../dashboard/images/icon/dragging.svg), grabbing !important;
}

/* Text selection within flipbook */
.flipbook-page-html .textLayer ::selection {
    background: #FF6725;
    background: AccentColor;
}

/* Ensure text input areas use the type cursor */
.flipbook-findbar input,
.flipbook-note-display .note-article {
    cursor: url(../dashboard/images/icon/type.svg), auto !important;
}


/* ec */
.ec-loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3999999;
}

.ec-loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #ff6725;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin-bottom: 20px;
}

.ec-loader-text {
    text-align: center;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center all text content including progress bar */
}

.ec-loader-progress {
    width: 200px;
    height: 20px;
    border-radius: 10px;
    background-color: #f3f3f3;
    margin: 15px auto; /* Add auto margins for horizontal centering */
    overflow: hidden;
}

.ec-loader-progress-bar {
    height: 100%;
    width: 0%;
    background-color: #ff6725;
    transition: width 0.5s;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.active>.page-link, .page-link.active{
    background-color:#FF6725;
    border-color:#FF6725;
}

.page-link{
    color:#FF6725;
}

.dashboard-body .dashboard-header{
    z-index: 1002;
}

.leaflet-touch .leaflet-bar a{
    line-height:27px;
}


.analysis-content h2{
    font-size: 32px;
}
.analysis-content h3{
    font-size: 24px;
}

.analysis-content {
    background-color: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: #333;
    line-height: 1.6;
    max-width: 960px;
    margin: 40px auto;
}

.analysis-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e2a38;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff6725;
    padding-bottom: 8px;
}

.analysis-content h3 {
    font-size: 20px;
    color: #ff6725;
    margin-top: 28px;
    margin-bottom: 12px;
}

.analysis-content ul,
.analysis-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.analysis-content li {
    margin-bottom: 6px;
}

.analysis-content p {
    margin-bottom: 14px;
}

.analysis-content b {
    color: #1d1d1d;
    font-weight: 600;
}

.analysis-content .highlight {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 12px;
    margin: 20px 0;
    font-weight: 500;
    border-radius: 6px;
}

.analysis-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    margin-bottom: 24px;
    background-color: #fafafa;
    font-size: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.analysis-content table thead ,.analysis-content table th  {
    background-color: #000000;
    color: #fff;
    text-align: left;
}

.analysis-content table thead th ,.analysis-content table th {
    padding: 12px 16px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 2px solid #e65a1e;
}

.analysis-content table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
}

.analysis-content table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.analysis-content table tbody tr:hover {
    background-color: #fff3eb;
}

@media (max-width: 600px) {
    .analysis-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
.dash-aside-navbar{
    z-index: 99999 !important;
}

.flipbook-preloader{
    z-index: 999 !important;
}

.pricing-section-two .pr-column-wrapper ul li:before{
    color: #FF6725;
}

.pricing-section-two .pr-column-wrapper ul li.disable:before{
    color: #CC0000;
}


/* Modern Login Modal Styles */
.modern-login-modal {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden;
}

.modern-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 1;
}

.modern-close-btn:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: rotate(90deg);
}

#loginModal .form-wrapper {
    max-width: 420px;
    width: 100%;
    padding: 60px 40px 40px;
    margin: 0 auto;
}

.login-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6725 0%, #FF8A56 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(255, 103, 37, 0.3);
    animation: pulse-login 2s infinite;
}

@keyframes pulse-login {
    0% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 103, 37, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(255, 103, 37, 0.4); }
    100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 103, 37, 0.3); }
}

.login-icon-wrapper i {
    font-size: 36px;
    color: white;
}

.login-heading {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.login-subtitle {
    color: #718096;
    font-size: 16px;
    margin-bottom: 30px;
}

#loginModal .input-group-meta {
    margin-bottom: 20px;
}

.modern-label {
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 8px;
    display: block;
}

.phone-input-container {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.country-select-wrapper {
    flex: 0 0 140px;
    position: relative;
}

.modern-select {
    width: 100%;
    height: 100%;
    padding: 12px 40px 12px 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    appearance: none;
        cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
    transition: all 0.3s ease;
}

.modern-select:focus {
    outline: none;
    border-color: #FF6725;
    box-shadow: 0 0 0 3px rgba(255, 103, 37, 0.1);
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #718096;
}

.modern-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #2d3748;
    transition: all 0.3s ease;
}

.modern-input:focus {
    outline: none;
    border-color: #FF6725;
    box-shadow: 0 0 0 3px rgba(255, 103, 37, 0.1);
    background: rgba(255, 255, 255, 1);
}

.modern-input::placeholder {
    color: #a0aec0;
}

.btn-login-modern {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #FF6725 0%, #FF8A56 100%);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: white;
        cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 103, 37, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.btn-login-modern:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 103, 37, 0.4);
    background: linear-gradient(135deg, #FF5614 0%, #FF7945 100%);
}

.btn-login-modern:active {
    transform: translateY(0);
}

.btn-login-modern:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-otp-modern {
    width: 100%;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #FF6725;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #FF6725;
        cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-otp-modern:hover:not(:disabled) {
    background: #FF6725;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 103, 37, 0.3);
}

.btn-otp-modern:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
/* Custom checkbox styling with white checkmark */
.checkbox-wrapper-modern input[type="checkbox"] {
    width: 20px;
    height: 20px;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
        cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-wrapper-modern input[type="checkbox"]:checked {
    background-color: #FF6725;
    border-color: #FF6725;
}

.checkbox-wrapper-modern input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-wrapper-modern input[type="checkbox"]:hover:not(:checked) {
    border-color: #FF6725;
}

.checkbox-wrapper-modern input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 103, 37, 0.1);
}
.terms-text-modern {
    font-size: 12px;
    color: #718096;
    text-align: center;
    line-height: 1.5;
}

.terms-text-modern a {
    color: #FF6725;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.terms-text-modern a:hover {
    text-decoration: underline;
}

.otp-input-modern {
    letter-spacing: 8px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

/* Loading state */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* Success animation */
.success-icon {
    color: #ff6725;
    font-size: 24px;
    animation: checkmark 0.6s ease;
}

@keyframes checkmark {
    0% { transform: scale(0) rotate(45deg); }
    50% { transform: scale(1.2) rotate(45deg); }
    100% { transform: scale(1) rotate(45deg); }
}

/* Responsive */
@media (max-width: 480px) {
    #loginModal .form-wrapper {
        padding: 40px 20px 30px;
    }

    .country-select-wrapper {
        flex: 0 0 120px;
    }

    .login-heading {
        font-size: 24px;
    }

    .login-subtitle {
        font-size: 14px;
    }
}

.modern-close-btn i {
    font-size: 18px;
    color: #4a5568;
    transition: color 0.3s ease;
}

.modern-close-btn:hover i {
    color: #2d3748;
}

/* end of loginmodal */

.text-primary{
    color: #FF6725;
}


/* tool article */

#tool-article {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 20px 0;
}

#tool-article .column {
    padding: 40px;
}

/* Typography */
#tool-article h1 {
    font-size: 39px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.2;
}


#tool-article h2 {
    font-size: 30px;
}
#tool-article h3 {
    font-size: 27px;
}
#tool-article h4 {
    font-size: 24px;
}

#tool-article h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #FF6725, #FF8A56);
    margin: 25px auto 0;
    border-radius: 2px;
}

#tool-article h5 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 25px 0 25px;
    position: relative;
    padding-left: 15px;
}

#tool-article h5::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 22px;
    background: #FF6725;
    border-radius: 2px;
}

#tool-article h6 {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin: 35px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#tool-article h6::before {
    content: '▸';
    color: #FF6725;
    font-size: 22px;
}

/* Paragraphs - Reduced gap */
#tool-article p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 12px;
}

#tool-article p strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* First paragraph emphasis */
#tool-article section:first-of-type p:first-child {
    font-size: 19px;
    color: #2d3748;
    line-height: 1.8;
}

/* Lists */
#tool-article ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

#tool-article ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
}

#tool-article ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background: rgba(255, 103, 37, 0.1);
    color: #FF6725;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

/* Ordered Lists - Fixed for nested content */
#tool-article ol {
    list-style: none;
    counter-reset: tool-list;
    padding: 0;
    margin: 0 0 20px 0;
}

#tool-article ol > li {
    counter-increment: tool-list;
    position: relative;
    padding-left: 45px;
    margin-bottom: 12px;
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
}

#tool-article ol > li::before {
    content: counter(tool-list);
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    background: #FF6725;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
}

/* Nested lists inside ol */
#tool-article ol li ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

#tool-article ol li ul li::before {
    content: '•';
    background: transparent;
    color: #FF6725;
    font-size: 20px;
}

/* Sections - Removed border */
#tool-article section {
    margin-bottom: 60px;
}

/* Special sections - Removed border */
#tool-article section:first-of-type {
    background: linear-gradient(135deg, #FFF8F4 0%, #FFF5EE 100%);
    padding: 35px;
    border-radius: 16px;
    margin-bottom: 10px;
}

/* Table */
#tool-article table {
    width: 100%;
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

#tool-article th {
    background: #FF6725;
    color: white;
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#tool-article td {
    padding: 16px 20px;
    background: white;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    color: #4a5568;
}

#tool-article tr:last-child td {
    border-bottom: none;
}

#tool-article tr:hover td {
    background: #FFF8F4;
}

/* Links */
#tool-article a {
    color: #FF6725;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

#tool-article a:hover {
    border-bottom-color: #FF6725;
}

/* FAQ Section */
#tool-article section p strong:first-child:only-child {
    color: #FF6725;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

/* Contact section */
#tool-article section:last-of-type {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
}

#tool-article section:last-of-type ul {
    display: inline-block;
    text-align: left;
}

/* Responsive */
@media (max-width: 991px) {
    #tool-article .column {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    #tool-article .column {
        padding: 40px 20px;
    }

    #tool-article h1 {
        font-size: 34px;
    }

    #tool-article h5 {
        font-size: 24px;
    }

    #tool-article h6 {
        font-size: 18px;
    }

    #tool-article p,
    #tool-article li {
        font-size: 16px;
    }

    #tool-article section:first-of-type,
    #tool-article section:last-of-type {
        padding: 25px;
    }
}

/* Code blocks */
#tool-article code {
    background: rgba(255, 103, 37, 0.08);
    color: #e64500;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
}

/* Ensure ol numbering works correctly */
#tool-article ol li::marker {
    content: none;
}

#tool-article ol li ol {
    counter-reset: sub-list;
    margin-top: 10px;
}

#tool-article ol li ol li {
    counter-increment: sub-list;
}

#tool-article ol li ol li::before {
    content: counter(sub-list, lower-alpha) ".";
    background: none;
    color: #FF6725;
    width: auto;
    height: auto;
    position: absolute;
    left: 20px;
    font-weight: 600;
}
#tool-article .btn-two{
    color: white;
}
/* tool related */

/* beautiful modal */

.modal-content.beautiful-modal {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden;
    position: relative;
}

/* Modal Sizes */
.modal-content.beautiful-modal.modal-sm {
    max-width: 400px;
    margin: 0 auto;
}

.modal-content.beautiful-modal.modal-md {
    max-width: 600px;
    margin: 0 auto;
}

.modal-content.beautiful-modal.modal-lg {
    max-width: 800px;
    margin: 0 auto;
}

/* Close Button */
.beautiful-modal .btn-close,
.beautiful-modal .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 1;
    cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
}

.beautiful-modal .btn-close:hover,
.beautiful-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: rotate(90deg);
}

/* Modal Content Wrapper */
.beautiful-modal .modal-wrapper {
    padding: 60px 40px 40px;
    text-align: center;
}

/* Icon Styles */
.beautiful-modal .modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6725 0%, #FF8A56 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(255, 103, 37, 0.3);
    animation: pulse-icon 2s infinite;
}

.beautiful-modal .modal-icon.icon-success {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    box-shadow: 0 10px 30px rgba(72, 187, 120, 0.3);
}

.beautiful-modal .modal-icon.icon-danger {
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
    box-shadow: 0 10px 30px rgba(245, 101, 101, 0.3);
}

.beautiful-modal .modal-icon.icon-info {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    box-shadow: 0 10px 30px rgba(66, 153, 225, 0.3);
}

.beautiful-modal .modal-icon i {
    font-size: 36px;
    color: white;
}

.beautiful-modal .modal-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

@keyframes pulse-icon {
    0% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 103, 37, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(255, 103, 37, 0.4); }
    100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 103, 37, 0.3); }
}

/* Typography */
.beautiful-modal h1,
.beautiful-modal h2,
.beautiful-modal h3,
.beautiful-modal h4,
.beautiful-modal h5 {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 10px;
}

.beautiful-modal h2 {
    font-size: 28px;
}

.beautiful-modal h3 {
    font-size: 24px;
}

.beautiful-modal h4 {
    font-size: 20px;
}

.beautiful-modal p {
    color: #718096;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.beautiful-modal .subtitle {
    color: #718096;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Form Elements */
.beautiful-modal .form-group,
.beautiful-modal .input-group-meta {
    margin-bottom: 20px;
    text-align: left;
}

.beautiful-modal label {
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 8px;
    display: block;
}

.beautiful-modal input[type="text"],
.beautiful-modal input[type="email"],
.beautiful-modal input[type="tel"],
.beautiful-modal input[type="password"],
.beautiful-modal input[type="number"],
.beautiful-modal textarea,
.beautiful-modal select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #2d3748;
    transition: all 0.3s ease;
}

.beautiful-modal input:focus,
.beautiful-modal textarea:focus,
.beautiful-modal select:focus {
    outline: none;
    border-color: #FF6725;
    box-shadow: 0 0 0 3px rgba(255, 103, 37, 0.1);
    background: rgba(255, 255, 255, 1);
}

.beautiful-modal input::placeholder,
.beautiful-modal textarea::placeholder {
    color: #a0aec0;
}

/* Buttons */
.beautiful-modal .btn-primary,
.beautiful-modal .btn-modal-primary {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #FF6725 0%, #FF8A56 100%);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 103, 37, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.beautiful-modal .btn-primary:hover:not(:disabled),
.beautiful-modal .btn-modal-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 103, 37, 0.4);
    background: linear-gradient(135deg, #FF5614 0%, #FF7945 100%);
}

.beautiful-modal .btn-secondary,
.beautiful-modal .btn-modal-secondary {
    width: 100%;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #FF6725;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #FF6725;
    cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.beautiful-modal .btn-secondary:hover:not(:disabled),
.beautiful-modal .btn-modal-secondary:hover:not(:disabled) {
    background: #FF6725;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 103, 37, 0.3);
}

/* Button Group */
.beautiful-modal .button-group {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.beautiful-modal .button-group .btn-primary,
.beautiful-modal .button-group .btn-secondary {
    width: auto;
    min-width: 140px;
}

/* Feature Box */
.beautiful-modal .feature-box {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 103, 37, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin: 15px 0;
    transition: all 0.3s ease;
}

.beautiful-modal .feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 103, 37, 0.15);
    border-color: rgba(255, 103, 37, 0.3);
}

/* Lists */
.beautiful-modal ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.beautiful-modal ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #4a5568;
}

.beautiful-modal ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF6725;
    font-weight: bold;
}

/* Alerts */
.beautiful-modal .alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.beautiful-modal .alert-success {
    background: rgba(72, 187, 120, 0.1);
    color: #276749;
    border-color: rgba(72, 187, 120, 0.3);
}

.beautiful-modal .alert-danger {
    background: rgba(245, 101, 101, 0.1);
    color: #742a2a;
    border-color: rgba(245, 101, 101, 0.3);
}

.beautiful-modal .alert-info {
    background: rgba(66, 153, 225, 0.1);
    color: #2a4e7c;
    border-color: rgba(66, 153, 225, 0.3);
}

/* Loading State */
.beautiful-modal .btn-loading {
    position: relative;
    color: transparent !important;
}

.beautiful-modal .btn-loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .beautiful-modal .modal-wrapper {
        padding: 50px 30px 30px;
    }

    .beautiful-modal h2 {
        font-size: 24px;
    }

    .beautiful-modal .button-group {
        flex-direction: column;
    }

    .beautiful-modal .button-group .btn-primary,
    .beautiful-modal .button-group .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .beautiful-modal .modal-wrapper {
        padding: 40px 20px 30px;
    }

    .beautiful-modal .modal-icon {
        width: 60px;
        height: 60px;
    }

    .beautiful-modal .modal-icon i {
        font-size: 28px;
    }

    .beautiful-modal h2 {
        font-size: 20px;
    }

    .beautiful-modal p {
        font-size: 14px;
    }
}

/* Animation Classes */
.beautiful-modal.fade-in {
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Utility Classes */
.beautiful-modal .text-center { text-align: center; }
.beautiful-modal .text-left { text-align: left; }
.beautiful-modal .text-right { text-align: right; }
.beautiful-modal .mb-0 { margin-bottom: 0; }
.beautiful-modal .mb-1 { margin-bottom: 10px; }
.beautiful-modal .mb-2 { margin-bottom: 20px; }
.beautiful-modal .mb-3 { margin-bottom: 30px; }
.beautiful-modal .mt-2 { margin-top: 20px; }
.beautiful-modal .mt-3 { margin-top: 30px; }
/* Fix for Bootstrap's default close button */
.beautiful-modal .btn-close::before {
    content: '×';
    font-size: 28px;
    color: #4a5568;
    font-weight: 300;
    line-height: 1;
    display: block;
}

/* Override Bootstrap's background image */
.beautiful-modal .btn-close {
    background-image: none !important;
}
/* modal over */


.download-btn {
    background: #ff6725;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: url(../dashboard/images/icon/pointer.svg),auto !important;
    margin-top: 15px;
}
.option-card {
    cursor: url(../dashboard/images/icon/pointer.svg),auto !important;
    transition: all 0.3s;
    border:1px solid #E5E5E5;
}

/* VerifyMyLand Promotion Header Styles */
:root {
    --primary-color: #ff6725;
    --primary-hover: #e55510;
    --primary-light: #ff8a50;
    --primary-bg: #fff5f0;
}

.promotion-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 50px 0;
    margin-bottom: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(255, 103, 37, 0.25);
    position: relative;
    overflow: hidden;
}

.promotion-header-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.promotion-header-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.promotion-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.promotion-icon-wrapper i {
    font-size: 40px;
    color: white;
}

.promotion-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease;
}

.promotion-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease 0.2s;
    animation-fill-mode: both;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.promotion-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.4s;
    animation-fill-mode: both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: url(../dashboard/images/icon/cursor.svg), auto !important;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 16px;
    color: white;
}

.promotion-cta {
    animation: fadeInUp 0.6s ease 0.6s;
    animation-fill-mode: both;
}

.btn-promotion {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
    cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
}

.btn-promotion:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    color: var(--primary-hover);
    text-decoration: none;
}

.btn-promotion i {
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.promotion-note {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-style: italic;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive for Promotion Header */
@media (max-width: 768px) {
    .promotion-header {
        padding: 40px 0;
        margin-bottom: 20px;
    }

    .promotion-header h2 {
        font-size: 2rem;
    }

    .promotion-header p {
        font-size: 1rem;
    }

    .promotion-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .promotion-icon-wrapper i {
        font-size: 30px;
    }

    .promotion-features {
        gap: 10px;
        margin-bottom: 30px;
    }

    .feature-item {
        font-size: 12px;
        padding: 8px 12px;
    }

    .feature-item i {
        font-size: 14px;
    }

    .btn-promotion {
        padding: 12px 28px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .promotion-features {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: auto;
        min-width: 160px;
        justify-content: center;
    }
}
