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

/*GENERAL MIXINS - START*/

.flexCenter {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flexBetween {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mb-2-5 {
  margin-bottom: 12px;
}

/* BUTTON START*/
/* Bootstrap Button Overrides */
.btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px 24px !important;
  height: 58px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  border-radius: 16px !important;
  border: 2px solid var(--primary-50) !important;
  background-color: var(--primary-50) !important;
  color: var(--white) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
  text-transform: capitalize !important;
  text-decoration: none !important;
  height: 40px !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-70) !important;
  border-color: var(--primary-70) !important;
  color: var(--white) !important;
  box-shadow: 0px 5px 12px 0px rgba(13, 47, 70, 0.25) !important;
  outline: none !important;
}

.btn-primary:disabled {
  background-color: var(--white-30) !important;
  color: var(--white-50) !important;
  cursor: not-allowed !important;
  border-color: var(--white-30) !important;
}

.btn-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  border-radius: 16px !important;
  background-color: transparent !important;
  color: var(--gray-90) !important;
  border: 2px solid var(--gray-90) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
  text-transform: capitalize !important;
  text-decoration: none !important;
  height: 40px !important;
}

.btn-secondary:hover {
  background-color: var(--gray-90) !important;
  color: var(--white) !important;
  box-shadow: 0px 5px 12px 0px rgba(13, 47, 70, 0.25) !important;
}

.btn-danger {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  border-radius: 8px !important;
  background-color: var(--red) !important;
  color: var(--white) !important;
  border: 2px solid var(--red) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
  text-transform: capitalize !important;
  text-decoration: none !important;
  height: 40px !important;
}

.btn-danger:hover {
  background-color: var(--red) !important;
  color: var(--white) !important;
}

.btn-outline-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  border-radius: 8px !important;
  background-color: transparent !important;
  border: 2px solid var(--primary-50) !important;
  color: var(--primary-50) !important;
  letter-spacing: 0.02em !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
  text-transform: capitalize !important;
  text-decoration: none !important;
  height: 40px !important;
}

.btn-outline-primary:hover {
  background-color: var(--primary-50) !important;
  color: var(--white) !important;
}

.btn-outline-dark {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  border-radius: 8px !important;
  background-color: transparent !important;
  border: 2px solid var(--gray-90) !important;
  color: var(--gray-90) !important;
  letter-spacing: 0.02em !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
  text-transform: capitalize !important;
  text-decoration: none !important;
  height: 40px !important;
}

.btn-outline-dark:hover {
  background-color: var(--gray-90) !important;
  color: var(--white) !important;
}

.btn-outline-danger {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  border-radius: 8px !important;
  background-color: transparent !important;
  border: 2px solid var(--red) !important;
  color: var(--red) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
  text-transform: capitalize !important;
  text-decoration: none !important;
  height: 40px !important;
}

.btn-outline-danger:hover {
  background-color: var(--red) !important;
  color: var(--white) !important;
}
.btn {
  border-radius: 16px !important;
}
/* Button Sizes */
.btn-lg {
  font-size: 16px !important;
  height: 48px !important;
}

.btn-sm {
  padding: 8px 16px !important;
  font-size: 12px !important;
  height: 32px !important;
}

/* Button with Icon */
.btn-icon {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.btn-icon i {
  font-size: 16px !important;
}

.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(2rem, 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: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://img.freepik.com/free-photo/couple-jewelry-shop-choosing-ring-together_1303-30658.jpg?t=st=1738673607~exp=1738677207~hmac=04a1814e6a209f23718638e065a7a68b7ef58656fb4125458de147118586af62&w=740");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 130vh;
}

/*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: var(--gray-100);
  padding: 20px 0px;
  transition: all 0.4s ease;
}

.sidebar:hover {
  width: 280px;
}

.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:hover .sidebar-links .menu-separator {
  transition-delay: 0s;
  transform: scaleX(0);
}

.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;
}

.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: 4px;
  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%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .copyright {
    position: relative;
  }
}

.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%;
  padding: 16px 0;
}

.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 {
  height: 40px !important;
  border-radius: 8px;
  border: 1px solid var(--gray-30) !important;
  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 {
  border: 1px solid var(--gray-20) !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 img {
  transition: all 0.3s ease;
}

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

.feature-card:hover img {
  filter: brightness(0) invert(1);
}

.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*/
// ... existing code ...

.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: 213px;
  border: 1px solid var(--primary-20);
}

.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;
  height: 70px;
  top: 0px;
  right: 0;
  z-index: 99999999999 !important;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--gray-30, #a6b5ba);
  background: #000;
  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%;
}
/*HEADER - HOME END*/

/*FOOTER START*/
footer {
  background: #000;
  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-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.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: 0px;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--gray-30, #a6b5ba);
  background: #000;
  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;
  }
}
/* STATS CARDS END */

.user-activity-chart-container,
.active-users,
.order-chart,
.project-submissions-chart {
  height: 380px;
}
.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;
}

.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;
  //  min-width: 160px;
}

.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;
  //min-width: 160px;
}

.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: 4px 16px !important;
  padding-left: 0px !important;
  padding-top: 0px !important;
  color: var(--white-100) !important;
  height: 36px;
  width: 100%;
}

.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;
  // min-width: 160px !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,
.order-chart,
.project-submissions-chart {
  height: 380px;
}
.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;
}

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

.order-chart-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;
}

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

.order-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;
}
.order-chart-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;
}

.authentication-register-form-inner {
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
}

@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: 380px;
  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: 14px;
  top: 45px;
  color: black;
  font-size: 17px;
  font-weight: 700;
  line-height: 32px;
}

.property-divider {
  position: absolute;
  width: 280px;
  height: 0;
  left: 8px;
  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 {
  left: 186px;
  top: 101px;
}

.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: var(--primary-50);
  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: var(--primary-90);
  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: var(--gray-50) transparent;
  scrollbar-width: 1px;
}

::-webkit-scrollbar-thumb {
  background: var(--gray-50);
  border-radius: 4px;
  height: 2px;
}

.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;
}

/* Login Form Buttons */
.login-form-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.login-form-buttons .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 120px;
}

.login-form-buttons .btn.active,
.login-form-buttons .btn:hover {
  background-color: var(--primary-30) !important;
  border-color: var(--primary-30) !important;
  color: var(--white-100) !important;
}

.login-form-buttons .btn:not(.active) {
  background-color: transparent !important;
  border: 2px solid var(--coldGray-50) !important;
  color: var(--gray-80) !important;
}

/* Kurumsal Radio Buttons */
#kurumsal-type-buttons {
  padding: 1rem;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
}

#kurumsal-type-buttons .form-check-label {
  color: var(--white-100);
  font-weight: 500;
}

#kurumsal-type-buttons .form-check-input {
  border-color: #000;
}

#kurumsal-type-buttons .form-check-input:checked {
  background-color: var(--primary-50);
  border-color: #000;
}

/* Login Forms */
.login-form {
  transition: all 0.3s ease-in-out;
  opacity: 0;
  display: none;
}

.login-form.active {
  opacity: 1;
  display: block;
}

/* Sepet Kartı Stilleri */
.cart-items-card {
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  margin-bottom: 24px;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--gray-20);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 20px;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-90);
  margin-bottom: 8px;
}

.product-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}

.spec-item {
  font-size: 14px;
  color: var(--gray-60);
  background-color: var(--gray-10);
  padding: 4px 8px;
  border-radius: 4px;
}

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

.current-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-50);
}

.gram-price {
  font-size: 14px;
  color: var(--gray-50);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-10);
  padding: 4px;
  border-radius: 8px;
}

.btn-quantity {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--primary-50);
  border-radius: 6px;
  font-size: 16px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-quantity:hover {
  background: var(--primary-60);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.btn-quantity:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quantity-input {
  width: 45px;
  height: 32px;
  text-align: center;
  border: 1px solid var(--gray-20);
  border-radius: 6px;
  background: var(--white);
  font-size: 14px;
  color: var(--gray-90);
  padding: 0 4px;
}

.quantity-input:focus {
  outline: none;
  border-color: var(--primary-50);
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1);
}

.btn-remove {
  border: none;
  background: var(--danger-10);
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-remove:hover {
  background: var(--danger-20);
  transform: scale(1.05);
}

.btn-remove:active {
  transform: scale(0.95);
}

.btn-remove img {
  width: 20px;
  height: 20px;
  transition: all 0.2s ease;
}

/* Sepet Özeti Kartı */
.cart-summary-card {
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--gray-70);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-90);
}

.total-price {
  color: var(--primary-50);
}

/* Altın Fiyat Kartı */
.gold-price-card {
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: linear-gradient(135deg, #ffd700 0%, #fdb931 100%);
}

.gold-price-card .card-body {
  color: var(--white);
}

.gold-price-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.gold-price-card small {
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
  .cart-item {
    flex-direction: column;
    text-align: center;
  }

  .cart-item-image {
    margin-right: 0;
    margin-bottom: 16px;
  }

  .product-specs {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cart-item-actions {
    margin-top: 16px;
  }
}

/* Genel Stiller */
.cart-title {
  color: var(--gray-90);
  font-weight: 600;
}

.cart-count {
  color: var(--gray-60);
  font-size: 0.9em;
}

/* Sepet Ürün Kartı */
.cart-items-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--gray-20);
  transition: all 0.3s ease;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item:hover {
  background-color: var(--gray-10);
}

.cart-item-image {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 24px;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cart-item-image:hover img {
  transform: scale(1.05);
}

.cart-item-details {
  flex: 1;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-90);
  margin-bottom: 12px;
}

.product-specs {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.spec-item {
  font-size: 14px;
  color: var(--gray-70);
  background-color: var(--gray-10);
  padding: 6px 12px;
  border-radius: 8px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.current-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-50);
}

.gram-price {
  font-size: 14px;
  color: var(--gray-60);
}

/* Miktar Kontrolleri */
.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  background: var(--gray-10);
  padding: 4px;
  border-radius: 8px;
}

.btn-quantity {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--primary-50);
  color: white;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-quantity:hover {
  background: var(--primary-60);
  transform: translateY(-1px);
}

.quantity-input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-90);
  padding: 0 4px;
}

.btn-remove {
  border: none;
  background: var(--gray-10);
  color: var(--gray-60);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-remove:hover {
  background: #ffe5e5;
  color: #ff3b3b;
}

/* Özet Kartı */
.summary-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.summary-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-90);
  margin-bottom: 24px;
}

.summary-items {
  margin-bottom: 24px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--gray-70);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-90);
  padding-top: 16px;
  border-top: 1px solid var(--gray-20);
  margin-bottom: 24px;
}

.total-amount {
  color: var(--primary-50);
}

.btn-checkout {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
}

/* Altın Fiyat Kartı */
.gold-price-card {
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffd700 0%, #fdb931 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.gold-price-title {
  color: white;
  font-weight: 600;
  margin-bottom: 16px;
}

.gold-prices {
  margin-bottom: 16px;
}

.gold-price-item {
  display: flex;
  justify-content: space-between;
  color: white;
  margin-bottom: 12px;
}

.gold-price-item .price {
  font-weight: 600;
}

.last-update {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
  .cart-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cart-item-image {
    margin-right: 0;
  }

  .product-specs {
    justify-content: center;
  }

  .product-price {
    justify-content: center;
  }
}

/* Kart logoları için stil */
.card-brand-icon {
  width: 48px;
  height: 30px;
  object-fit: contain;
}

.saved-card-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--gray-20);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.saved-card-item:hover {
  border-color: var(--primary-50);
  background-color: var(--gray-10);
}

.saved-card-item.active {
  border-color: var(--primary-50);
  background-color: var(--primary-10);
}

.card-number {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-90);
}

.card-info {
  font-size: 14px;
  color: var(--gray-60);
  margin-top: 4px;
}

.section-products {
  padding: 80px 0 54px;
}

.section-products .header {
  margin-bottom: 50px;
}

.section-products .header h3 {
  font-size: 1rem;
  color: #fe302f;
  font-weight: 500;
}

.section-products .header h2 {
  font-size: 2.2rem;
  font-weight: 400;
  color: #444444;
}

.section-products .single-product {
  margin-bottom: 26px;
}

.section-products .single-product .part-1 {
  position: relative;
  height: 290px;
  max-height: 290px;
  margin-bottom: 20px;
  overflow: hidden;
}

.section-products .single-product .part-1::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.3s;
}

.section-products .single-product:hover .part-1::before {
  transform: scale(1.2, 1.2) rotate(5deg);
}

.section-products #product-1 .part-1::before {
  background: url("../../assets/images/img-2427.webp") no-repeat center;
  background-size: cover;
  transition: all 0.3s;
}

.section-products #product-2 .part-1::before {
  background: url("../../assets/images/img-2409.webp") no-repeat center;
  background-size: cover;
}

.section-products #product-3 .part-1::before {
  background: url("../../assets/images/nazar-boncuklu-kelepce-bileklik.webp")
    no-repeat center;
  background-size: cover;
}

.section-products #product-4 .part-1::before {
  background: url("../../assets/images/arpas-renkli-kelepce-bilezik-2.webp")
    no-repeat center;
  background-size: cover;
}

.section-products .single-product .part-1 .discount,
.section-products .single-product .part-1 .new {
  position: absolute;
  top: 15px;
  left: 20px;
  color: #ffffff;
  background-color: #fe302f;
  padding: 2px 8px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.section-products .single-product .part-1 .new {
  left: 0;
  background-color: #444444;
}

.section-products .single-product .part-1 ul {
  position: absolute;
  bottom: -41px;
  left: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  transition: bottom 0.5s, opacity 0.5s;
}

.section-products .single-product:hover .part-1 ul {
  bottom: 30px;
  opacity: 1;
}

.section-products .single-product .part-1 ul li {
  display: inline-block;
  margin-right: 4px;
}

.section-products .single-product .part-1 ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  color: #444444;
  text-align: center;
  box-shadow: 0 2px 20px rgb(50 50 50 / 10%);
  transition: color 0.2s;
}

.section-products .single-product .part-1 ul li a:hover {
  color: #fe302f;
}

.section-products .single-product .part-2 .product-title {
  font-size: 1rem;
}

.section-products .single-product .part-2 h4 {
  display: inline-block;
  font-size: 1rem;
}

.section-products .single-product .part-2 .product-old-price {
  position: relative;
  padding: 0 7px;
  margin-right: 2px;
  opacity: 0.6;
}

.section-products .single-product .part-2 .product-old-price::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #444444;
  transform: translateY(-50%);
}

.gallery-wrap .img-big-wrap img {
  height: 450px;
  width: auto;
  display: inline-block;
  cursor: zoom-in;
}

/*BANNER START*/
.haf_layout .container-fluid {
  position: relative;
  z-index: 1;
}

.banner_section {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  padding: 60px 50px;
  top: 100px;
  left: 40px;
}

.banner_section p {
  margin-bottom: 0;
}

/*BANNER END*/

/* Partner/Referans Stilleri */
.our-partners {
  background: #fff;
  padding: 20px 0;
}

.partner {
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
}

.partner img {
  max-width: 150px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.slick-slider-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
  .partner img {
    max-width: 120px;
  }

  .slick-slider-partners {
    gap: 20px;
  }
}

/* Slider navigasyon stilleri */
.swiper-button-next,
.swiper-button-prev {
  color: #daa520;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.swiper-pagination-bullet {
  background: #daa520;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #daa520;
  transform: scale(1.2);
}

/*HOME SHOPPING */

.home-shopping {
  background-color: var(--color-black);
  color: var(--color-white);
}
.home-shopping-card {
  border-radius: 27px;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.home-shopping-card img {
  width: 297px;
  height: 303px;
}
.home-shopping h3 {
  font-weight: 600;
  font-size: 24px;
  color: var(--color-white);
}
.home-shopping .home-shopping-card p {
  font-weight: 400;
  font-size: 14px;
  color: var(--color-white);
  font-family: var(--font-secondary);
}
.home-shopping .home-shopping-card span {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  color: var(--color-white);
}

/* Ürün kartı butonları */
.product-actions {
  position: absolute;
  bottom: 20px;
  right: 120px;
  left: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  width: 100%;
}

.single-product:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-actions a {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #daa520;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-actions a:hover {
  background: #daa520;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(218, 165, 32, 0.3);
}

/* Kategori kartı butonu */
.btn-gold {
  background: linear-gradient(45deg, #daa520, #b8860b);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(218, 165, 32, 0.4);
  color: #fff;
}

/* Hover efektleri */
.home-shopping-card {
  overflow: hidden;
}

.home-shopping-card img {
  transition: all 0.5s ease;
}

.home-shopping-card:hover img {
  transform: scale(1.1);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
  .product-actions {
    opacity: 1;
    transform: none;
  }

  .btn-gold {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.map-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.search-card {
  border-radius: var(--border-radius);
  background: var(--card-background);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 16px;
  color: var(--text-secondary);
}

.modern-search {
  padding: 16px 16px 16px 48px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-size: 1rem;
  transition: var(--transition);
}

.modern-search:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.modern-filter-group {
  display: flex;
  gap: 8px;
  padding: 4px;
  background: #f1f5f9;
  border-radius: 12px;
}

.filter-btn {
  flex: 1;
  padding: 12px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: var(--transition);
}

.filter-btn.active {
  background: var(--card-background);
  color: var(--primary-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modern-card {
  background: var(--card-background);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  height: 240px;
}

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

.card-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
}

.sector-badge {
  padding: 8px 16px;
  border-radius: 20px;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

.sector-badge.gold {
  background: linear-gradient(135deg, #fbbf24, #d97706);
}

.sector-badge.producer {
  background: linear-gradient(135deg, #10b981, #059669);
}

.sector-badge.wholesale {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.card-content {
  padding: 24px;
}

.company-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.owner-name {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.tags {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  background: #f1f5f9;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
}

.action-buttons {
  display: flex;
  gap: 12px;
}

.btn-details,
.btn-products {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-details {
  background: var(--primary-50);
  color: white;
}

.btn-products {
  background: #f1f5f9;
  color: var(--text-primary);
}

.btn-details:hover,
.btn-products:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-content {
  border-radius: var(--border-radius);
  border: none;
}

.modal-header {
  padding: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.modal-body {
  padding: 24px;
}

.product-card {
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.product-image {
  height: 240px;
  object-fit: cover;
}

.product-price {
  color: var(--primary-color);
  font-weight: 600;
}
.btn-filter-apply {
  background-color: var(--primary-50);
  color: var(--color-white);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0 !important;
}

.product-badge {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000;
  font-weight: 600;
}

.price-tag {
  color: #b8860b;
  font-weight: bold;
}

.karat-badge {
  background-color: #daa520;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.9rem;
}

.product-features li {
  margin-bottom: 0.5rem;
}

.product-features i {
  color: #daa520;
}

.btn-gold {
  background: linear-gradient(45deg, #ffd700, #daa520);
  border: none;
  color: #000;
  font-weight: 600;
}

.btn-gold:hover {
  background: linear-gradient(45deg, #daa520, #b8860b);
  color: #fff;
}

/*MARQUEE START*/

.marquee-content {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  font: 18px bold Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  padding: 10px 0px;
  height: 70px;
}

.marquee-title {
  color: #f7f7f7;
  font-size: 15px;
  background: transparent;
  margin-bottom: 5px;
}
.marquee-text {
  color: gray;
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
}

/*MARQUEE END*/
