/*GENERAL START*/
body {
    font-family: "Jost", sans-serif;
    overflow-x: hidden !important;
    background: var(--white);
}

* {
    user-select: none;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+ */
}

.fl-wrapper {
    z-index: 99999 !important;
}



.clear {
    margin-top: 80px;
}

.content-wrapper {
    padding-top: 100px;
    min-height: calc(100vh - 100px);
    padding-bottom: 24px;
}

.vh-100 {
    height: 100vh !important;
}

.section-padding {
    padding: clamp(2rem, calc((100vw - 1439px) * 120), 2rem) 0px !important;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 1.5rem 0px !important;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 1rem 0px !important;
    }
}

.section-padding-small {
    padding: clamp(1rem, calc((100vw - 1439px) * 120), 1rem) 0px !important;
}

@media (max-width: 991px) {
    .section-padding-small {
        padding: 1rem 0px !important;
    }
}

@media (max-width: 767px) {
    .section-padding-small {
        padding: 0.5rem 0px !important;
    }
}

/*GENERAL END*/

/*AUTHENTICATION START*/
.authentication {
    min-height: 100vh;
}

.authentication-blur-card {
    border-radius: 32px;
    border-top: 1px solid #d1d1d1;
    border-right: 0.5px solid #d1d1d1;
    border-bottom: 0.5px solid #d1d1d1;
    border-left: 1px solid #d1d1d1;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.13) 0%,
            rgba(114, 114, 114, 0.16) 100%);
    box-shadow: 4px 4px 7px 0px rgba(197, 197, 197, 0.2) inset;
    backdrop-filter: blur(10px);
}

.authentication-blur-card .icon-container {
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(50px);
    width: 36px;
    height: 36px;
    padding: 6px;
    border-radius: 50%;
}

.authentication-left {
    background-image: url("../../../assets/images/authentication/left-image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/*AUTHENTICATION END*/

/*TOAST START*/
/* Toast Styles */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    min-width: 300px;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    background: var(--toast-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease-in-out;
}

.toast-success {
    border-left: 4px solid var(--toast-success);
}

.toast-error {
    border-left: 4px solid var(--toast-error);
}

.toast-icon {
    width: 24px;
    height: 24px;
}

.toast-message {
    color: var(--toast-text);
    flex: 1;
}

.toast-close {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.toast-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/*TOAST END*/

/*SIDEBAR START*/

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 280px;
    display: flex;
    overflow-x: hidden;
    flex-direction: column;
    background: #161a2d;
    padding: 20px 0px;
    transition: all 0.4s ease;
}



.sidebar .sidebar-header {
    display: flex;
    align-items: center;
}

.sidebar .sidebar-header img {
    padding: 0px 20px;
    width: 280px;
}

.sidebar .sidebar-links .menu-separator {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    transform: scaleX(1);
    transform: translateY(-50%);
    background: #4f52ba;
    transform-origin: right;
    transition-delay: 0.2s;
}

.sidebar .sidebar-links li:hover img {
    filter: invert(42%) sepia(97%) saturate(427%) hue-rotate(165deg) brightness(94%) contrast(96%);
}



.sidebar-links {
    list-style: none;
    height: 100%;

    max-width: 280px;
}

.sidebar-links::-webkit-scrollbar {
    display: none;
}

.sidebar-links li {
    align-items: center;
    gap: 0 20px;
    white-space: nowrap;
    padding: 15px 20px;
    text-decoration: none;
    transition: 0.2s ease;
}

.sidebar-links li a:hover {
    color: #161a2d;
    border-radius: 4px;
}

.sidebar-links li:hover {
    background: rgba(13, 47, 70, 0.65);
}

.sidebar-links li:hover a {
    color: var(--primary-50);
}

.sidebar .user-account {
    margin-top: auto;
    padding: 12px 20px;
}

.sidebar .user-profile {
    display: flex;
    align-items: center;
    color: #161a2d;
}

.sidebar .user-profile img {
    border-radius: 50%;
    border: 1px solid var(--primary-colors-primary-color-50, #17a6e5);
}

.user-detail {
    margin-left: 23px;
    white-space: nowrap;
}



/*SIDEBAR END*/

/*HEADER START*/

.header {
    position: fixed;
    top: 0;
    right: 0px;

    height: 80px;
    background: var(--white-20);
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    border-bottom: 1px solid var(--gray-30, #a6b5ba);

    position: fixed;
    bottom: 0;
    padding: 16px 0px;

    background-size: cover;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .header {
        left: 0px;
    }
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-title {
    color: var(--white);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-icon-button {
    width: 40px !important;
    height: 40px !important;
    padding: 8px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    background: transparent !important;
    border: 1px solid var(--white-100) !important;
    transition: all 0.3s ease !important;
}

.header-icon-button:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.header-icon-button .notification-badge {
    position: absolute !important;
    top: -4px !important;
    right: -4px !important;
    width: 18px !important;
    height: 18px !important;
    background: var(--primary-50) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 10px !important;
    color: var(--white-100) !important;
    border: 2px solid var(--white-100) !important;
}

.header-icon-button img {
    width: 24px;
    height: 24px;
}

/*HEADER END*/

/* Header Select Styles */
.header .form-select {
    background-color: var(--black) !important;
    color: var(--white-100) !important;
    border: 1px solid var(--white-100) !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
}

.header .form-select option {
    background-color: var(--black) !important;
    color: var(--white-100) !important;
}

/* Header Responsive */
@media (max-width: 768px) {
    .header-right {
        gap: 12px !important;
    }

    .header-icon-button {
        width: 36px !important;
        height: 36px !important;
        padding: 6px !important;
    }

    .header-icon-button .notification-badge {
        width: 16px !important;
        height: 16px !important;
        font-size: 9px !important;
    }

    .header .form-select {
        padding: 6px 12px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 576px) {
    .header-right {
        gap: 8px !important;
    }

    .header-icon-button {
        width: 32px !important;
        height: 32px !important;
        padding: 4px !important;
    }
}

/* FILTER START */
.filter-container {
    padding: 24px;
    border-radius: 12px;
    background: #fff;
    height: 100%;
    min-height: 130vh;
    padding-bottom: 64px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.filter-section {
    margin-bottom: 20px;
}

.filter-section-title {
    color: var(--white);
    margin-bottom: 12px;
}

.filter-price-range {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-price-input {
    width: 100%;
    height: 6px;
    background: var(--gray-black);
    border-radius: 2px;
    appearance: none;
}

.filter-price-input::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--primary-40);
    border-radius: 50%;
    cursor: pointer;
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.filter-apply-button {
    width: 100%;
    padding: 12px;
    background: var(--primary-50);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.filter-apply-button:hover {
    background: var(--primary-60);
}

/*FILTER END*/

/*COPYRIGHT START*/
.copyright {
    position: fixed;
    bottom: 0;
    padding: 16px 0px;
    background: var(--white) url("../../images/copyrigt-bg.png") no-repeat center center;
    background-size: cover;
    width: 100%;
}

.copyright-links {
    display: flex;
    gap: 24px;
}

.copyright-link {
    color: var(--white-50);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-link:hover {
    color: var(--primary-50);
}

/*COPYRIGHT END*/
/*PROJECT CARD START*/
.project-card {
    border-radius: 12px;
    position: relative;
}

.project-card:hover {
    border: 1.5px solid var(--primary-colors-primary-color-50, #17a6e5);

    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04),
        0px 8px 16px 0px rgba(0, 0, 0, 0.08);
}

.project-card .image {
    position: relative;
    width: 100% !important;
}

.project-card .button-content {
    position: absolute;
    top: 6px;
    left: 12px;
}

.project-card .icon-container {
    position: absolute;
    top: 12px;
    right: 12px;
}

.project-card .icon-container .icon-content {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

/*PROJECT CARD END*/
/*TABLE START*/
.table-action-button-content {
    background: transparent;
    border-radius: 50%;
    border: 1px solid var(--white-100, #292929);
    display: flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
}

/*TABLE END*/
/*PAGINATION START*/
/* Pagination Styles */

/* Pagination Wrapper */
.pagination-wrapper {
    width: 100%;
}

.pagination-wrapper .total-count {
    display: flex;
    gap: 4px;
    align-items: center;
}

.pagination-wrapper .total-count span {
    font-size: 14px;
    line-height: 1.6;
}

.pagination {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination .page-item .page-link,
.pagination .page-item .page-nav {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px !important;
    color: var(--white-50);
    background: transparent;
    border: 1px solid var(--white-50) !important;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#pageInput {
    height: 40px !important;
}

.pagination .page-item .page-link:hover {
    background: var(--primary-50);
    color: var(--white);
    border-color: var(--primary-50);
}

.pagination .page-item.active .page-link {
    background: var(--primary-50);
    color: var(--white);
    border-color: var(--primary-50);
}

.pagination .page-item.disabled .page-link {
    background: var(--white-30);
    color: var(--white-50);
    border-color: var(--white-30);
    cursor: not-allowed;
}

/* Navigation arrows */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    background: transparent;
    border: none;
    color: var(--primary-50);
}

.pagination .page-item:first-child .page-link:hover,
.pagination .page-item:last-child .page-link:hover {
    background: transparent;
    color: var(--primary-70);
}

/*PAGINATION END*/

/*MODAL START*/
/* Modal Styles */
.modal-dialog {
    max-width: 800px;
}

.modal-content {
    border-radius: 36px !important;
    border: none;
    background: var(--white);
    padding: 24px !important;
}

/* Project Images Preview */
.project-images {
    padding: 12px;
}

.project-image-preview {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    width: 50%;
}

.project-image-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.image-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.price-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
}

.price-tag-slider {
    position: absolute;
    bottom: 12px;
    width: 100%;
}

/* Form Tabs */
.nav-pills {
    padding: 0 16px;
    gap: 16px;
    border-bottom: 1px solid var(--white-40);
}

.nav-pills .nav-link {
    border-radius: 0;
    padding: 12px 0;
    color: var(--gray-50);
    font-weight: 500;
    position: relative;
}

.nav-pills .nav-link.active {
    background: none;
    color: var(--primary-50);
}

.nav-pills .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-50);
}

/* Form Styles */
.project-form {
    padding: 24px 0;
}

.form-label {
    color: var(--gray-90);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control,
.form-select,
.dropdown-toggle {
    height: 36px !important;
    border-radius: 8px;
    border: 1px solid var(--gray-30);
    padding-left: 12px !important;
    padding-right: 12px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.filter-bar-content .form-control,
.filter-bar-content .form-select,
.filter-bar-content .dropdown-toggle {
    border: 1px solid var(--gray-20) !important;
    background: var(--white) !important;
}

    

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-50);
    box-shadow: none;
}

.verification-form-control {
    height: 52px;
}

/* Submit Button */
.btn-primary {
    background: var(--primary-50);
    border: none;
    height: 48px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 24px;
}

.btn-primary:hover {
    background: var(--primary-60);
}

/*MODAL END*/

/*GALLERY START*/
.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 16px;
    margin-top: 24px;
}

.gallery-container a {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.gallery-container a:hover {
    transform: scale(1.02);
}

.gallery-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Özel grid yerleşimleri */
.gallery-container a:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    height: 516px;
    /* 498px + gap */
}

.gallery-container a:nth-child(2) {
    grid-column: span 2;
    height: 250px;
}

.gallery-container a:nth-child(3) {
    grid-column: span 1;
    height: 250px;
}

.gallery-container a:nth-child(4) {
    grid-column: span 1;
    height: 250px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-container a {
        grid-column: span 1 !important;
        height: 250px !important;
    }

    .gallery-container a:nth-child(1) {
        grid-column: span 2 !important;
        height: 300px !important;
    }
}

/*GALLERY END*/

/*PROJECT DETAIL START */
.property-stats .icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-20);
    border-radius: 8px;
}

.customer-stats {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
}

.demand-graph {
    height: 200px;
}

/*PROJECT DETAIL START */

.feature-card {
    transition: all 0.3s ease;
}

/* .feature-card:hover {
  background-color: var(--white-100) !important;
}

.feature-card:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(80deg) brightness(103%) contrast(102%);
}
 */
.feature-card:hover .h5-semi-bold {
    color: var(--white);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background: transparent !important;
    border-right: none !important;
    border-left: none !important;
    border-top: none !important;
    border-bottom: 2px solid var(--white100) !important;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
    background: transparent !important;
    color: var(--white-100);
}

.icon-wrapper {
    border: 1.5px solid #000;
    padding: 10px;
    border-radius: 50% !important;
}

.avatar-group-counter {
    border-radius: 32px;
    background: #000;
    display: inline-flex;
    padding: 0px 7px;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 6px;
    right: -26px;
}

.avatar-group {
    position: relative;
}

/*PROJECT DETAIL END */

/*UPLOAD START*/

.upload-area {
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background: #fafafa;
}

.upload-area-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.upload-area-subtitle {
    font-size: 12px;
    color: #999;
}

.upload-preview {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.upload-preview-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.upload-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-remove-button {
    position: absolute;
    top: 4px;
    right: 4px;
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
}

.upload-remove-button img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.upload-button {
    color: var(--primary-50);
    text-decoration: underline;
    cursor: pointer;
}

.upload-or {
    color: #666;
    margin: 0 5px;
}

.upload-content {
    padding: 24px;
    border: 1px dashed var(--gray-black, #22272a);
    border-radius: 8px;
}

/*UPLOAD END*/

/*ADD PORTFOY START*/

.add-portfoy .nav-pills .nav-link {
    display: flex;
    width: 120px;
    height: 120px;
    padding: 26px 35px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-shrink: 0;
}

/* Inactive state */
.add-portfoy .nav-pills .nav-link:not(.active) {
    background-color: var(--white-20) !important;
}

.add-portfoy .nav-pills .nav-link:not(.active) img {
    filter: brightness(0);
    /* Makes SVG black */
}

.add-portfoy .nav-pills .nav-link:not(.active) span {
    color: var(--white-100);
}

/* Active state */
.add-portfoy .nav-pills .nav-link.active {
    background-color: var(--white-100) !important;
    padding: 26px 36px 26px 37px;
}

.add-portfoy .nav-pills .nav-link.active img {
    filter: invert(48%) sepia(95%) saturate(1642%) hue-rotate(177deg) brightness(96%) contrast(98%);
    /* Makes SVG blue */
}

.add-portfoy .nav-pills .nav-link.active span {
    color: var(--primary-50);
}

/*ADD PORTFOY END*/
/*CHAT LIST*/
.chat-container {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
}

.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.message-item {
    margin-bottom: 24px;
}

.message-content {
    max-width: 70%;
}

.message-text {
    background-color: #f8f9fa;
    padding: 12px 16px;
    border-radius: 12px;
    border-top-left-radius: 0;
}

.message-text.receiver {
    background-color: var(--white-20);
    border-radius: 12px;
    border-top-right-radius: 0;
}

.chat-input {
    padding: 16px;
    background-color: #fff;
    border-top: 1px solid #e9ecef;
}

.input-field {
    border: none;
    background-color: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
}

.input-field:focus {
    outline: none;
    box-shadow: none;
    background-color: #f8f9fa;
}

.chat-input .btn {
    background: none;
    border: none;
    padding: 0 16px;
}

.chat-input .btn:hover {
    opacity: 0.8;
}

/*CHAT LIST END*/

/* NOTIFICATION START */
.notification-modal {}

.notification-card {
    background-color: white;
    border-radius: 24px;
    min-height: 413px;
}

.notification-card img {
    width: 100%;
    height: 168px;
    object-fit: cover;
}

.notification-content {
    padding: 15px;
}

.notification-image {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

/* NOTIFICATION END */

/*HEADER - HOME  START*/
.header-home {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--gray-30, #a6b5ba);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

@media (max-width: 475px) {
    .header-home {
        background: rgba(255, 255, 255, 0.9) !important;
    }
}

.header-home-inner {
    width: 100%;
    height: 100%;
}
html[dir="rtl"] .header-home-inner .dropdown-toggle {
    padding-right: 0px !important;
}
html[dir="rtl"] .dropdown-toggle {
    padding-right: 0px !important;
}
html[dir="rtl"] .header-right {
    padding-left: 30px !important;
}
/*HEADER - HOME END*/

/*FOOTER START*/
.footer-gradient {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(0, 0, 0, 0.05) 100%);
    padding-top: 3rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(0, 0, 0, 0.05) 100%);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-gradient {
        padding-top: 2rem;
    }

    .footer-title {
        margin-bottom: 1rem;
    }

    .footer-description {
        margin-bottom: 2rem;
    }
}

/*FOOTER END*/

/*CONTACT FORM START*/
/* CONTACT INFO START */

.contact-info-button-content {
    background: transparent;
    border-radius: 50%;
    border: 1px solid var(--white-100, #292929);
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #292929;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.contact-text {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/*CONTACT FORM END*/

/* ACCORDION START */
.accordion-item {
    background: var(--white-20);
    border-radius: 0px !important;
}

.accordion-button {
    padding: 20px 24px;
    border-radius: 0px !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-50);
    background: var(--white);
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.accordion-button::after {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-size: 24px;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%2317a6e5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.accordion-body {
    padding: 20px 24px;
    background: var(--white);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

@media (max-width: 991px) {
    .accordion-item {
        margin-bottom: 16px;
    }
}

/* ACCORDION END */

/* MASKED IMAGE START */
.masked-image {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    gap: 12px;
}

.image-section {
    position: relative;
    flex: 1;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.image-section img {
    width: 300%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.section-1 img {
    left: 0;
}

.section-2 img {
    left: -100%;
}

.section-3 img {
    left: -200%;
}

.section-1::after,
.section-3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .masked-image {
        height: 300px;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .masked-image {
        height: 250px;
        gap: 6px;
    }
}

/* MASKED IMAGE END */

/* SERVICES START */
.service-slide-image {
    position: relative;
    width: 100%;
    height: 500px !important;
    overflow: hidden;
    border-radius: 12px;
}

.service-slide-image-small {
    position: relative;
    width: 100%;
    height: 380px !important;
    overflow: hidden;
    border-radius: 12px;
}

.service-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-slide-card-content {
    padding: 24px;
    background: rgba(41, 41, 41, 0.99);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.card-text {
    flex: 1;
}

.card-text h3 {
    margin: 0;
}

.card-text p {
    margin: 0;
}

@media (max-width: 991px) {
    .service-slide-image {
        height: 300px;
        margin-top: 2rem;
    }

    .service-slide-card-content {
        padding: 16px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .card-icon img {
        width: 20px;
        height: 20px;
    }
}

/* SERVICES END */

/*HERO SLIDER START*/
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-content {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-50);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    max-width: 600px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/*CONTACT BUTTON START*/
.contact-button {
    width: 224px;
    height: 40px;
    padding: 12px 16px;
    border-radius: 8px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.contact-button-outline {
    border: 1px solid #22272a;
}

.contact-button-filled {
    background: #17a6e5;
}

.contact-icon-wrapper {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.contact-icon-inner {
    width: 24px;
    height: 24px;
    position: relative;
}

.contact-icon-bg {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 2px;
    top: 2px;
}

.contact-icon-bg.dark {
    background: #292929;
}

.contact-icon-bg.light {
    background: white;
}

.contact-text {
    flex: 1;
    font-size: 16px;
    font-family: Jost;
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word;
    color: #22272a;
}

.contact-text.light {
    color: white;
}

/*CONTACT BUTTON END*/

/*HEADER - HOME  START*/
.header-home {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--gray-30, #a6b5ba);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.header-home-inner {
    width: 100%;
    height: 100%;
}

/*HEADER - HOME END*/

/*FOOTER START*/
.footer-gradient {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(0, 0, 0, 0.05) 100%);
    padding-top: 3rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(0, 0, 0, 0.05) 100%);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-gradient {
        padding-top: 2rem;
    }

    .footer-title {
        margin-bottom: 1rem;
    }

    .footer-description {
        margin-bottom: 2rem;
    }
}

/*FOOTER END*/

/*CONTACT FORM START*/
/* CONTACT INFO START */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #292929;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.contact-text {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/*CONTACT FORM END*/

/* ACCORDION START */
.accordion-item {
    border-radius: 12px !important;
    background: var(--white-20);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-50);
    background: var(--white);
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.accordion-button::after {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-size: 24px;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%2317a6e5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.accordion-body {
    padding: 20px 24px;
    background: var(--white);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

@media (max-width: 991px) {
    .accordion-item {
        margin-bottom: 16px;
    }
}

/* ACCORDION END */

/* MASKED IMAGE START */
.masked-image {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    gap: 12px;
}

.image-section {
    position: relative;
    flex: 1;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.image-section img {
    width: 300%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.section-1 img {
    left: 0;
}

.section-2 img {
    left: -100%;
}

.section-3 img {
    left: -200%;
}

.section-1::after,
.section-3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .masked-image {
        height: 300px;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .masked-image {
        height: 250px;
        gap: 6px;
    }
}

/* MASKED IMAGE END */

/* SERVICES START */
.service-slide-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
}

.service-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-slide-card-content {
    padding: 24px;
    background: rgba(41, 41, 41, 0.99);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.card-text {
    flex: 1;
}

.card-text h3 {
    margin: 0;
}

.card-text p {
    margin: 0;
}

@media (max-width: 991px) {
    .service-slide-image {
        height: 300px;
        margin-top: 2rem;
    }

    .service-slide-card-content {
        padding: 16px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .card-icon img {
        width: 20px;
        height: 20px;
    }
}

/* SERVICES END */

/*HERO SLIDER START*/
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-content {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-50);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    max-width: 600px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Swiper Navigasyon Stilleri */
.swiper-button-next,
.swiper-button-prev {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-50);
    position: absolute;
    right: 30px;
    transform: translateY(-50%);
    z-index: 99999999999999999999 !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-slider:hover .swiper-button-next,
.hero-slider:hover .swiper-button-prev {
    opacity: 1;
}

.swiper-button-next {
    top: 55%;
}

.swiper-button-prev {
    top: 45%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-50);
    color: var(--white);
}

/* Responsive Ayarlar */
@media (max-width: 991px) {
    .hero-slide-content {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 36px;
    }
}

/* Animasyon Efektleri */
.hero-title,
.hero-description,
.hero-buttons {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-description {
    animation-delay: 0.2s;
}

.hero-buttons {
    animation-delay: 0.4s;
}

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

/*HERO SLIDER END*/

/* PANEL BODY START */
.panel-body {
    background: var(--white-20, #efefef);
}

/* PANEL BODY END */
.icon-danger {
    filter: invert(40%) sepia(68%) saturate(5159%) hue-rotate(331deg) brightness(101%) contrast(101%);
}

/* STATS CARDS START */
.stats-cards .card {
    height: 200px;
}

.stats-cards .building-image {
    right: 0px;
    bottom: 0px;
    top: -70px;
    width: 358px;
    height: 271px;
}

@media (max-width: 1440px) {
    .building-image {
        display: none;
    }
}


.price-distribution {
    position: relative;
}

.price-distribution .average-price {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--primary-50) !important;
    border-bottom: 2px solid var(--primary-50) !important;
}

.dropdown .btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #333;
}

.dropdown .btn-secondary:hover,
.dropdown .btn-secondary:focus {
    background: #f8f9fa;
    border-color: #e0e0e0;
    color: #333;
}

.dropdown-menu {
    min-width: 120px;
    padding: 8px 0;
    margin-top: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.dropdown-item.active {
    background: #e9ecef;
    color: #333;
}

.flag-icon {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 2px;
}

.language-btn {
    background-color: #f5f5f5 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
    padding-left: 0px !important;
    color: #333 !important;
   
}

.language-btn:hover,
.language-btn:focus {
    background-color: #ebebeb !important;
    box-shadow: none !important;
}

.language-btn::after {
    margin-left: auto !important;
}

.language-btn .flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.dropdown-menu {
    border-radius: 15px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 8px;

}

.dropdown-item {
    border-radius: 10px;
    padding: 8px 16px;
}

.dropdown-item .flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
}

/* Dil seçici stilleri */
.custom-language-btn {
    background-color: transparent !important;
    border: 1px solid var(--white-100) !important;
    border-radius: 100px !important;
  
    padding-left: 0px !important;
    padding-top: 0px !important;
    color: #fff;
    min-width: 120px!important;
    height: 36px;
}
.custom-language-btn-1{
    min-width: 100px!important;
}

.custom-language-btn::after {
    display: none !important;
}

.custom-language-btn svg {
    color: var(--white-100);
}

.flag-wrapper {
    width: 34px;
    height: 34px;
    border: 1px solid transparent;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-wrapper.selected {
    border-color: var(--white-100) !important;
}

.flag-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selected-text {
    color: var(--white-100);
    font-weight: 500;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background: var(--white-100) !important;
    border-radius: 12px !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    padding: 4px !important;
    margin-top: 8px !important;
}

.dropdown-item {
    border-radius: 8px !important;
    padding: 6px 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: var(--white-100) !important;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.dropdown-item.active {
    background-color: transparent !important;
}

.dropdown-item span {
    color: var(--white-100);
}

.dropdown-item.active .selected-text {
    font-weight: 500;
}

/* Hero Slider Navigation Styles */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid #fff;
    border-radius: 50%;
    position: absolute;
    right: 40px !important;
    left: auto !important;
    margin: 0 !important;
    opacity: 1;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-slider .swiper-button-next {
    top: calc(50% - 50px) !important;
}

.hero-slider .swiper-button-prev {
    top: calc(50% + 30px) !important;
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19 12H5M5 12L12 19M5 12L12 5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-slider .swiper-button-prev::after {
    transform: rotate(180deg);
}

.hero-slider .swiper-button-next::after {
    transform: rotate(0deg);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.05);
}


/* Responsive Ayarlar */
@media (max-width: 991px) {
    .hero-slide-content {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 36px;
    }
}

/* Animasyon Efektleri */
.hero-title,
.hero-description,
.hero-buttons {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-description {
    animation-delay: 0.2s;
}

.hero-buttons {
    animation-delay: 0.4s;
}

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

/*HERO SLIDER END*/

/* PANEL BODY START */
.panel-body {
    background: var(--white-20, #efefef);
}

/* PANEL BODY END */
.icon-danger {
    filter: invert(40%) sepia(68%) saturate(5159%) hue-rotate(331deg) brightness(101%) contrast(101%);
}

/* STATS CARDS START */
.stats-cards .card {
    height: 200px;
}

.stats-cards .building-image {
    right: 0px;
    bottom: 0px;
    top: -70px;
    width: 358px;
    height: 271px;
}

@media (max-width: 1440px) {
    .building-image {
        display: none;
    }
}

/* STATS CARDS END */

.user-activity-chart-container,
.active-users,
.project-submissions,
.price-distribution-chart,
.project-submissions-chart, .user-activity-chart-content {
    height: 500px;
}
.user-activity-chart-container .card,
.active-users .card,
.price-distribution-chart .card,
.project-submissions-chart .card, .user-activity-chart-content .card {
    min-height: 500px;
}

.user-activity-chart {
    height: 100%;
    margin-top: 2rem;
}

.active-users .avatar-group {
    display: flex;
    align-items: center;
}

.active-users .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.active-users .avatar:first-child {
    margin-left: 0;
}

.active-users .badge {
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    padding: 5px 8px;
    font-size: 12px;
    position: relative;
    left: -10px;
    z-index: 999;
}

.price-distribution {
    position: relative;
}

.active-users-tab-buttons {
    display: inline-flex;
    background: #f5f5f5;
    padding: 4px;
    border-radius: 8px;
    gap: 4px;
}

.active-users-tab-buttons .tab-button {
    border: none;
    background: transparent;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: #22272a;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.active-users-tab-buttons .tab-button.active {
    background: #17a6e5;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.most-shared-tab-buttons {
    display: inline-flex;
    background: #f5f5f5;
    padding: 4px;
    border-radius: 8px;
    gap: 4px;
}

.most-shared-tab-buttons .tab-button {
    border: none;
    background: transparent;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: #22272a;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.most-shared-tab-buttons .tab-button.active {
    background: #17a6e5;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.most-shared .tab-content {
    display: none;
}

.most-shared .tab-content.active {
    display: block;
}

.price-distribution .average-price {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--primary-50) !important;
    border-bottom: 2px solid var(--primary-50) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2823, 162, 184, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.price-distribution-tabs {
    display: inline-flex;
    background: #f5f5f5;
    padding: 2px;
    border-radius: 6px;
    gap: 2px;
    margin-bottom: 32px;
}

.price-distribution-tabs .tab-button {
    border: none;
    background: transparent;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #22272a;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.price-distribution-tabs .tab-button.active {
    background: #17a6e5;
    color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.price-distribution-chart {
    position: relative;
    height: 240px;
    margin-bottom: 32px;
}

.average-price {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.average-price h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    color: #292929;
}

.average-price span {
    font-size: 12px;
    color: #666;
    display: block;
    margin-top: 2px;
}

.price-ranges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.range-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.range-item .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.range-item .range-text {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

.project-submissions .card {
    height: 100%;
}

.project-submissions h4 {
    font-size: 14px;
    font-weight: 600;
    color: #292929;
    margin: 0;
}

.country-select .form-select {
    font-size: 13px;
    padding: 6px 28px 6px 12px;
    border-radius: 6px;
    border-color: #e5e5e5;
    color: #666;
    background-position: right 8px center;
    min-width: 100px;
}

.project-tabs {
    display: inline-flex;
    background: #f5f5f5;
    padding: 2px;
    border-radius: 6px;
    gap: 2px;
}

.project-tabs .tab-button {
    border: none;
    background: transparent;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: #22272a;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.project-tabs .tab-button.active {
    background: #17a6e5;
    color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.project-tabs .tab-button.active::after,
.most-shared-tab-buttons .tab-button.active::after,
.active-users-tab-buttons .custom-tab-btn.active::after {
    height: 0px !important;
}

.price-distribution-tabs .tab-button.active::after {
    height: 0px !important;
}

.project-submissions-chart {
    height: 280px;
    margin-top: 24px;
}

.favorite-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.favorite-btn:hover {
    transform: scale(1.1);
}

.heart-icon {
    width: 24px;
    height: 24px;
    transition: all 0.2s ease;
}

.heart-icon.active {
    filter: invert(23%) sepia(92%) saturate(6022%) hue-rotate(343deg) brightness(97%) contrast(128%);
}

.icon-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorite-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.favorite-btn:hover {
    transform: scale(1.1);
}

.heart-icon {
    width: 24px;
    height: 24px;
    transition: all 0.2s ease;
}

.heart-icon.active {
    filter: invert(23%) sepia(92%) saturate(6022%) hue-rotate(343deg) brightness(97%) contrast(128%);
}

.custom-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .custom-tabs {
        gap: 5px;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .custom-tabs {
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
    }
}

.tab-button {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #6c757d;
    position: relative;
    transition: all 0.3s ease;
}

.tab-button:hover {
    color: var(--primary-50);
}

.tab-button.active {
    color: var(--primary-50);
    font-weight: 600;
}

.tab-button.active::after {
    content: "";
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-50);
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

/*price info*/
.price-update-info {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.last-update {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--gray-90);
    color: var(--gray-90);
    font-size: 14px;
    font-weight: 500;
}

.price-analysis {
    display: flex;
    align-items: center;
    padding: 8px 24px;
    border-radius: 8px;
    background-color: var(--primary-50);
    color: white;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.price-analysis:hover {
    background-color: var(--primary-70);
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

.content-wrapper {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-wrapper.active {
    display: block;
    opacity: 1;
}

/*price info end*/

.about-home-icon-content {
    border-radius: 32px;
    background: #fff;
}

/*project demand graph*/
.demand-graph-container {
    background: #ffffff;
}

.demand-graph {
    height: 300px;
    width: 100%;
    position: relative;
}

/*project demand graph end*/
.ea-tabs {
    margin-bottom: 30px;
}

.ea-tab-buttons {
    display: flex;
    gap: 32px;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 24px;
}

.ea-tab-button {
    border: none;
    background: none;
    padding: 12px 0;
    color: #666;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ea-tab-button:hover {
    color: #333;
}

.ea-tab-button.ea-active {
    color: var(--primary-50);
    font-weight: 500;
}

.ea-tab-button.ea-active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-50);
}

.ea-tab-pane {
    display: none;
}

.ea-tab-pane.ea-active {
    display: block;
    animation: eaFadeIn 0.3s ease;
}

.custom-info-badge {
    background: var(--primary-colors-primary-color-50, #17a6e5) !important;
    width: 100px;
    color: #ffff !important;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    border-radius: 16px;
    padding: 4px 8px;
}

@media (max-width: 475px) {
    .authentication-register-form {
        margin-top: 150px !important;
    }
}

/*services swiper start*/
.services-swiper .swiper-pagination {
    display: flex;
    flex-direction: row;
    gap: 12px;
    bottom: 0%;
    transform: translateY(-50%);
    left: 30px;
}

.services-swiper .swiper-pagination-bullet {
    width: 25px;
    height: 4px;
    border-radius: 2px;
    background: #d9d9d9;
    opacity: 1;
    margin: 0 !important;
}

.services-swiper .swiper-pagination-bullet-active {
    background: #22272a;
    width: 40px;
}

/*services swiper end*/

/* Form içeriği her zaman görünür olacak */
.form-content {
    display: block !important;
}

.sub-content {
    display: block !important;
}

.property-card {
    height: 420px;
    position: relative;
    background: #fefefe;
    border-radius: 16px;
    overflow: hidden;
    padding: 16px;
}

.property-card.konut {
    border: 1.5px solid #3fbbf1;
}

.property-card.arsa {
    border: 1.5px solid #292929;
}

.property-card.ticari {
    border: 1.5px solid #656565;
}

.property-type-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    padding: 2px 32px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 16px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    line-height: 24px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.property-type-badge.konut {
    background: #3fbbf1;
}

.property-type-badge.arsa {
    background: #292929;
}

.property-type-badge.ticari {
    background: #656565;
}

.property-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 45px;
    color: black;
    font-size: 17px;
    font-weight: 700;
    line-height: 32px;
}

.property-divider {
    position: absolute;
    width: 280px;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
    top: 85px;
    border: 1px solid #dcdcdc;
}

.property-info {
    position: absolute;
    left: 16px;
    opacity: 0.9;
}

.property-info.type {
    top: 90px;
}

.property-info.date {
    top: 137px;
}

.property-info.room {
    right: 20px;
    top: 91px;
}

.property-info.price {
    top: 173px;
}

.property-info.location {
    top: 209px;
}

.property-info.summary {
    top: 245px;
}

.property-info-label {
    color: #292929;
    font-size: 14px;
    font-family: "Jost", sans-serif;
    font-weight: 700;
    line-height: 22px;
}

.property-info-value {
    color: #292929;
    font-size: 14px;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    line-height: 22px;
}

.property-info-value.price {
    color: #17a6e5;
    font-weight: 700;
}

.property-features {
    position: absolute;
    left: 16px;
    top: 268px;
    display: flex;
    gap: 24px;
}

.feature-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.feature-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
    accent-color: #17a6e5;
}

.feature-checkbox-label {
    color: #22272a;
    font-size: 12px;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    line-height: 20px;
}

.hide-password {
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.main-content {
    margin-left: 280px;
    width: calc(100% - 280px);
    transition: all 0.3s ease;
    padding: 20px;
    margin-top: 80px;
    min-height: 100vh;
    margin-bottom: 100px;
}

.sidebar-collapsed .main-content {
    margin-left: 80px;
    width: calc(100% - 80px);
}

.user-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info {
    flex: 1;
    min-width: 0;
    padding-left: 10px;
}

.user-name {
    font-size: 14px;
    font-weight: 500;
    color: #1c1c1c;
    margin-bottom: 2px;
}

.user-status {
    font-size: 12px;
    color: #4caf50;
}

.last-message {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.message-time {
    font-size: 12px;
    color: #999;
    margin-left: 10px;
}

/* Message Area Styles */
.chat-message-content {
    height: 500px;
}

.messages {
    height: calc(100% - 60px);
}

.message {
    max-width: 70%;
    padding: 8px 12px;
    border-radius: 12px;
    margin-bottom: 5px;
}

.message.received {
    background: #f0f0f0;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.message.sent {
    background: #00296f;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.message .message-time {
    font-size: 10px;
    margin-top: 4px;
    text-align: right;
}

.chat-input-area {
    padding: 15px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    gap: 10px;
    align-items: center;
}

.message-input {
    flex: 1;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 8px 15px;
    outline: none;
}

.send-message {
    background: #00296f;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Scrollbar Styling */
.chat-content::-webkit-scrollbar,
.messages::-webkit-scrollbar {
    width: 6px;
}

.chat-content::-webkit-scrollbar-track,
.messages::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.chat-content::-webkit-scrollbar-thumb,
.messages::-webkit-scrollbar-thumb {
    background: #00296f;
    border-radius: 3px;
}

@media (max-width: 991px) {
    .sidebar-wrapper {
        display: none !important;
    }

    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
        padding: 15px !important;
    }

    .toggle-sidebar {
        display: none !important;
    }
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.mobile-menu-button i {
    font-size: 24px;
    color: #1c1c1c;
}

@media (max-width: 991px) {
    .mobile-menu-button {
        display: block;
    }
}

@keyframes slideLeftRight {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(100%);
    }

    25.1% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(0);
    }
}

.table-action-button-content:hover {
    background-color: #007bff;
    overflow: hidden;
}

.table-action-button-content:hover img {
    animation: slideLeftRight 0.5s linear 1;
}

.table-action-button-content:hover {
    overflow: hidden;
}

/* Individual hover colors for each button */
.table-action-button-content:nth-child(1):hover {
    background-color: #17a6e5;
}

.table-action-button-content:nth-child(2):hover {
    background-color: #22272a;
}

.table-action-button-content:nth-child(3):hover {
    background-color: #09689b;
}

.table-action-button-content:nth-child(4):hover {
    background-color: #ff3657;
}

.table-action-button-content:hover img {
    animation: slideLeftRight 0.5s linear 1;
}

.table-action-button-content:hover img {
    animation: slideLeftRight 0.5s linear 1;
    filter: brightness(0) invert(1);
}

/* Custom scrollbar styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #17a6e5;
    border-radius: 4px;
    height: 2px;
}

::-webkit-scrollbar-thumb:horizontal {
    height: 2px;
}

/* Firefox scrollbar styles */
* {
    scrollbar-width: thin;
    scrollbar-color: #17a6e5 transparent;
}

.search-portfoy-wrapper {
    min-height: 80vh !important;
}

@media (max-width: 991px) {
    .search-portfoy-wrapper {
        min-height: 130vh !important;
    }
}

@media (max-width: 475px) {
    .search-portfoy-wrapper {
        min-height: 150vh !important;
    }
}

.copy-button {
    position: relative;
}

.project-title {
    font-size: 1px;
    font-weight: 700;
}

.copy-tooltip {
    display: none;
    position: absolute;
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    margin-bottom: 5px;
}

.copy-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.authority-info-card {
    min-height: 280px !important;
}

@media (max-width: 600px) {
    .chat-container {
        bottom: -30px !important;
        margin-bottom: 0px !important;
    }
}

.search-portfoy-wrapper {
    background: url("../../../assets/images/search-potfoy-background.png") no-repeat center center;
    background-size: cover;
    position: relative;
}

.search-portfoy-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.search-portfoy-wrapper .container {
    position: relative;
    z-index: 2;
}

.search-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.search-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.search-card img {
    height: 200px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.notifications-dropdown {
    width: 300px;
    background: #1c1c1c;
    border: 1px solid #2c2c2c;
    border-radius: 12px;
    padding: 16px;
    margin-top: 8px;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
}

.notifications-dropdown.show {
    display: block;
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notification-item {
    background: #2c2c2c;
    border-radius: 8px;
    padding: 12px;
    position: relative;
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.delete-notification {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    margin-left: auto;
}

.delete-notification:hover {
    opacity: 1;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-icon-button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.header-icon-button:hover {
    opacity: 0.8;
}

.custom-language-btn {
    background: #2c2c2c;
    border: 1px solid #3c3c3c;
    border-radius: 8px;
    color: #ffffff;
    padding: 8px 16px;
}

.currency-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.currency-icon.selected {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.panel-sidebar-badge {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 14px !important;
    height: 14px !important;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-side-content {
    position: sticky;
    top: 100px;
    height: calc(93vh - 120px);
    overflow-y: auto;
}

@media (max-width: 768px) {
    .filter-content-dropdown .dropdown-toggle {
        width: 100% !important;
        min-width: 100% !important;
    }

    .filter-container,
    .filter-side-content {
        min-height: 140vh !important;
    }
}

.filter-content-dropdown .dropdown-toggle {
    background: #ffff;
}

.form-detail-row {
    border-radius: 16px;
    border: 2px dashed var(--primary-colors-primary-color-50, #17a6e5);
    padding: 12px;
}

.bg-gray {
    background: #cad3d7 !important;
}

.gray-badge {
    color: #000 !important;
}

.form-image-content {
    border-radius: 12px !important;
    border: 1px dashed var(--gray-black, #22272a) !important;
}

.new-project-modal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid var(--white-100);
    width: 60px;
    height: 60px;
}

.new-project-modal-icon {
    width: 32px;
    height: 32px;
}

#newProjectModal .tab-button.active .new-project-modal-content {
    border: 1.5px solid var(--primary-50);
}

.favorite-btn.active img {
    filter: brightness(0) saturate(100%) invert(32%) sepia(32%) saturate(3981%) hue-rotate(326deg) brightness(101%) contrast(102%);
}



.project-detail-table-content {
    border-radius: 24px;
    border: 1px solid var(--gray-20, #cad3d7);
    background: #fff;
    padding: 24px;
}

.project-detail-table-image {
    height: 275px;
    width: 100%;
    object-fit: cover;
}

.text-blue {
    color: #17a6e5 !important;
}

.feature-card-blue {
    border-radius: 20px;
    border: 1px solid var(--primary-colors-60, #0a83bf);
    background: #0c0e12;
}

.name-content-company-detail {
    border-radius: 20px;
    background: var(--gray-black, #22272a);
    display: flex;
    padding: 10px;
    width: 80px;
    height: 80px;
    justify-content: center;
    align-items: center;
}

.team-member-card {
    border-radius: 12px;
    border: 1px solid var(--gray-20, #cad3d7);
    background: #fff;
    min-height: 379px;
}

.team-member-card-header {
    border-radius: 12px;
    border: 1px solid var(--helper-colors-side-bar-color, #0c0e12);
    background: var(--helper-colors-side-bar-color, #0c0e12);
    height: 100px;
}

.team-member-card-header-image {
    position: absolute;
    top: 40px;
    border-radius: 50%;
    border: 1px solid var(--gray-20, #cad3d7);
    background: var(--gray-black, #22272a);
    width: 88px;
    height: 88px;
}

.team-member-card-header-image img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 50%;
}

.page-about {
    padding-top: 160px !important;
}

#rightClickOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#rightClickOverlay .messageBox {
    background: #fff;
    border: 4px solid gold;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

#rightClickOverlay .messageBox h1 {
    margin-top: 0;
    color: #333;
}

#rightClickOverlay .messageBox svg {
    width: 100px;
    height: 100px;
    margin: 20px 0;
}
@media (max-width: 768px) {
    .notifications-dropdown {
        right: 0px !important;
        left: -130% !important;

    }
}

.notifications-dropdown {
    background: white !important;
    max-height: 350px;
    overflow: hidden;
}

.notifications-list {
    max-height: 200px;
    overflow-y: auto;
    margin-right: -5px;
    padding-right: 5px;
}

.notifications-dropdown .notification-item {
    background: white !important;
}

.notifications-dropdown .notification-item:hover {
    background: #efefef !important;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff !important;
}

.currency-dropdown {
    min-width: 120px;
    padding: 8px 0;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.currency-dropdown .dropdown-item {
    padding: 8px 16px;
    color: #333;
    font-size: 14px;
}

.currency-dropdown .dropdown-item:hover {
    background-color: #f5f5f5;
}

.header-icon-button {
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.header-icon-button:hover {
    background-color: #f5f5f5;
    border-radius: 4px;
}

/* Scrollbar styling */
.notifications-list::-webkit-scrollbar {
    width: 5px;
}

.notifications-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.notifications-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.notifications-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Notification Modal Styling */
.notification-modal .modal-content {
    border-radius: 8px;
}

.notification-modal .modal-header {
    border-bottom: 1px solid #dee2e6;
}

.notification-modal .notification-image {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.notification-modal .notification-date {
    color: #6c757d;
    font-size: 14px;
}

.notification-modal .notification-message {
    margin-top: 15px;
}

.flag-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dropdown-menu .flag-icon {
    filter: none !important;
}

.selected {
    border: 2px solid #fff;
}

.selected-text {
    font-weight: bold;
}
.choices {
    margin-bottom: 0;
    position: relative;
}

.choices__inner {
    min-height: 38px;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    background-color: #fff;
    padding: 0.375rem 0.75rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.choices__list--multiple .choices__item {
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 2px 8px;
    margin: 2px;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
}

.choices__list--multiple .choices__item.is-highlighted {
    background-color: #0d6efd;
    border: 1px solid #0d6efd;
    color: #fff;
}

.choices[data-type*="select-multiple"] .choices__button {
    border-left: 1px solid #ced4da;
    margin: 0 0 0 8px;
    padding-left: 8px;
    color: #6c757d;
}

.choices__list--dropdown {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    z-index: 9999;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #0d6efd;
    color: #fff;
}

.choices__input {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 0.875rem;
}

.choices__input:focus {
    outline: none;
}

.choices__placeholder {
    color: #6c757d;
    opacity: 1;
}

.sidebar-wrapper {
    width: auto !important;
}

/* Password toggle button styling */
.toggle-password {
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 6px 12px;
    z-index: 10;
}

.toggle-password:focus {
    outline: none;
}

.toggle-password img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

.toggle-password:hover img {
    opacity: 1;
}

.swiper-pagination-bullets {
    display: none!important;
}

/* RTL Styles */
html[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .rtl {
    direction: rtl;
}

html[dir="rtl"] .text-right {
    text-align: right;
}

html[dir="rtl"] .flex-row-reverse {
    flex-direction: row-reverse !important;
}

html[dir="rtl"] .me-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

html[dir="rtl"] .ms-2 {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
}

html[dir="rtl"] .me-3 {
    margin-left: 1rem !important;
    margin-right: 0 !important;
}

html[dir="rtl"] .ms-3 {
    margin-right: 1rem !important;
    margin-left: 0 !important;
}

html[dir="rtl"] .me-4 {
    margin-left: 1.5rem !important;
    margin-right: 0 !important;
}

html[dir="rtl"] .ms-4 {
    margin-right: 1.5rem !important;
    margin-left: 0 !important;
}

html[dir="rtl"] .pe-3 {
    padding-left: 1rem !important;
    padding-right: 0 !important;
}

html[dir="rtl"] .ps-3 {
    padding-right: 1rem !important;
    padding-left: 0 !important;
}

html[dir="rtl"] .form-check-input {
    float: right;
    margin-left: 0.5rem;
    margin-right: -1.5rem;
}

html[dir="rtl"] .dropdown-menu-end {
    right: auto !important;
    left: 0 !important;
}

html[dir="rtl"] .header .form-select {
    padding-right: 1rem;
    padding-left: 2.5rem;
    background-position: left 0.75rem center;
}

html[dir="rtl"] .header-icon-button .notification-badge {
    right: auto;
    left: -5px;
}

/* RTL for sidebar and main content */
html[dir="rtl"] .sidebar {
    left: auto !important;
    right: 0 !important;
}

html[dir="rtl"] .sidebar-wrapper {
    left: auto !important;
    right: 0 !important;
    position: fixed !important;
    transition: all 0.3s ease !important;
}

html[dir="rtl"] .content-wrapper {
    margin-left: 0 !important;
    margin-right: 80px !important;
    transition: margin 0.3s ease !important;
}

html[dir="rtl"] .main-content {
    margin-left: 0 !important;
  
    transition: margin 0.3s ease !important;
}




html[dir="rtl"] .panel-copyright {
    margin-left: 0 !important;
    margin-right: 280px !important;
}

@media (max-width: 991px) {
    html[dir="rtl"] .sidebar-wrapper {
        width: 0 !important;
        right: -280px !important;
    }
    
    html[dir="rtl"] .main-content {
        margin-right: 0 !important;
    }
    
    html[dir="rtl"] .content-wrapper {
        margin-right: 0 !important;
    }
    
    html[dir="rtl"] .panel-copyright {
        margin-right: 0 !important;
    }
}

/* Main RTL Layout Fixes */
html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

/* Sidebar positioning in RTL */
html[dir="rtl"] .sidebar,
html[dir="rtl"] .sidebar-wrapper {
    left: auto !important;
    right: 0 !important;
}

/* Ensure main content flows correctly in RTL */
html[dir="rtl"] .main-content {
    margin-left: 0 !important;
    float: left !important;  
}

/* Fix for sidebar collapse in RTL */
html[dir="rtl"] .sidebar-collapsed .main-content {
    margin-right: 80px !important;
}

/* Media queries for responsive RTL layout */
@media (max-width: 991px) {
    html[dir="rtl"] .main-content {
        margin-right: 0 !important;
        width: 100% !important;
        float: none !important;
    }
    
    html[dir="rtl"] .mobile-sidebar {
        left: auto !important;
        right: 0 !important;
    }
}

/* Ensure panel wrapper has proper alignment */
html[dir="rtl"] .panel-wrapper {
    flex-direction: row-reverse;
}

/* RTL for contact information cards */
html[dir="rtl"] .contact-info-wrapper {
    flex-direction: row-reverse !important;
}

html[dir="rtl"] .contact-item {
    text-align: right;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
}

html[dir="rtl"] .contact-icon {
    margin-right: 0;
    margin-left: 15px;
}

html[dir="rtl"] .contact-text {
    text-align: right;
}

/* Contact page specific RTL fixes */
html[dir="rtl"] .contact-section .row {
    flex-direction: row-reverse;
}

html[dir="rtl"] .contact-section .col-md-4 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

html[dir="rtl"] .contact-section h2,
html[dir="rtl"] .contact-section p {
    text-align: right;
    width: 100%;
}

html[dir="rtl"] .contact-section .social-media {
    justify-content: center;
    display: flex;
    width: 100%;
}

/* Footer fixes for RTL */
html[dir="rtl"] .footer {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .footer-links {
    padding-right: 0;
}

/* Map container in RTL */
html[dir="rtl"] .contact-map-section {
    direction: ltr;
}

/* RTL dropdown menu fixes */
html[dir="rtl"] .dropdown-menu {
    right: 0 !important;
    left: auto !important;
    text-align: right !important;
}

html[dir="rtl"] .dropdown-item {
    text-align: right !important;
}

/* Fix for submenu and dropdown positioning in RTL */
html[dir="rtl"] .submenu {
    right: 100% !important;
    left: auto !important;
}

html[dir="rtl"] .sidebar-links li {
    text-align: right !important;
}

html[dir="rtl"] .sidebar-links li a {
    display: flex;
    flex-direction: row-reverse;
}

html[dir="rtl"] .submenu-toggle {
    display: flex;
    flex-direction: row-reverse !important;
}

/* Project header dropdown fix for RTL */
html[dir="rtl"] #projectsSubmenu,
html[dir="rtl"] #portfoySubmenu {
    text-align: right !important;
    padding-right: 2rem !important;
    padding-left: 3rem !important;
}

/* Fix for projects dropdown menu RTL */
html[dir="rtl"] .projects-dropdown {
    left: auto !important; 
    right: 0 !important;
    text-align: right !important;
}

/* Additional RTL menu fixes */
html[dir="rtl"] .rtl-menu-item {
    margin-right: 1rem !important;
    margin-left: 0 !important;
}

html[dir="rtl"] .rtl-submenu-toggle {
    flex-direction: row-reverse !important;
    justify-content: space-between !important;
}

html[dir="rtl"] .rtl-submenu {
    padding-right: 2.5rem !important;
    padding-left: 0 !important;
    
}

/* RTL fixes for project dropdown in navbar */
html[dir="rtl"] .projects-dropdown {
    transform: translateX(25%) !important;
}

/* Mobile sidebar adjustments for RTL */
@media (max-width: 991px) {
    html[dir="rtl"] .offcanvas-start {
        right: 0 !important;
        left: auto !important;
        transform: translateX(100%) !important;
    }
    
    html[dir="rtl"] .offcanvas-start.show {
        transform: translateX(0) !important;
    }
    
    html[dir="rtl"] .offcanvas-header {
        flex-direction: row-reverse !important;
    }
    
    html[dir="rtl"] .mobile-sidebar li a {
        text-align: right !important;
        flex-direction: row-reverse !important;
    }
}

html[dir="rtl"] .sidebar {
    left: auto;
    right: 0;
    transition: width 0.3s ease;
}

html[dir="rtl"] .toggle-sidebar {
    left: auto;
    right: 260px;
    transition: all 0.3s ease;
}

html[dir="rtl"] .sidebar.collapsed ~ .toggle-sidebar {
    left: auto;
    right: 70px;
}

html[dir="rtl"] .toggle-sidebar i {
    transform: rotate(180deg);
}

html[dir="rtl"] .sidebar.collapsed .toggle-sidebar i {
    transform: rotate(0deg);
}

@media (max-width: 991px) {
    html[dir="rtl"] .sidebar {
        left: auto;
        right: -280px;
        width: 0px;
    }
    
    html[dir="rtl"] .toggle-sidebar {
        left: auto;
        right: 20px;
    }
}

html[dir="rtl"] .dropdown-menu {
    text-align: right;
    left: auto;
    right: 0;
}
.sidebar-wrapper {
    width: auto !important;
}
.property-info.date {
    top: 115px !important;
}

.property-info.room {
    top: 128px !important;
}

.contact-page {
    contain: content;
    content-visibility: auto;
}

.social-link {
    transition: transform 0.2s ease;
    will-change: transform;
}

.social-link:hover {
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    .social-link {
        transition: none;
    }
}
/* Lazy loading placeholder styles */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy-image.loaded {
    opacity: 1;
}
@media (max-width: 768px) {
    .notifications-dropdown {
        right: 0px !important;
        left: -130% !important;

    }
}

.notifications-dropdown {
    background: white !important;
}

.notifications-dropdown .notification-item {
    background: white !important;
}

.notifications-dropdown .notification-item:hover {
    background: #efefef !important;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff !important;
}

.currency-dropdown {
    min-width: 120px;
    padding: 8px 0;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.currency-dropdown .dropdown-item {
    padding: 8px 16px;
    color: #333;
    font-size: 14px;
}

.currency-dropdown .dropdown-item:hover {
    background-color: #f5f5f5;
}

.header-icon-button {
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.header-icon-button:hover {
    background-color: #f5f5f5;
    border-radius: 4px;
}