.logo-text {
    font-family: 'Arial', sans-serif;
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

[data-bs-theme="light"] .dark-mode-img {
    display: none;
}

[data-bs-theme="auto"] .dark-mode-img {
    display: none;
}

[data-bs-theme="dark"] .light-mode-img {
    display: none;
}

.w-xl-50 {
    max-width: 50%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.logo-img {
    max-width: 150px;
    max-height: 88px;
    width: auto;
    height: auto;
}

.text-justify {
    text-align: justify;
}

.bg-primary {
    background-color: #bb6f82 !important;
}

.text-primary {
    color: #bb6f82 !important;
}

.bg-section-2 {
    background-color: #b7847f17 !important;
}

.bg-section-3 {
    background-color: #b7847f17 !important;
}

#offCanvasNavBar .nav-link.show{
    color: #bb6f82 !important;
}

.dropdown-item.active, .dropdown-item:active {
    color: #bb6f82 !important;
    background-color: #b7847f17 !important;
}

body{
  background-color: white;
  background-image: linear-gradient(to right,#bb6f8265 , #ffaa0014);
}

.main-header {
    background-color: white;
    background-image: linear-gradient(to right,#bb6f8265,#ffaa0014);
}


.img-comp-container {
    position: relative;
    width: 100%; /* Set this based on your layout needs */
    aspect-ratio: 1 / 1; /* Maintain 1:1 ratio */
    overflow: hidden;
  }
  
  .img-comp-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .img-comp-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%; /* Default to fill height */
    transform: translate(-50%, -50%);
  }
  
  .img-comp-img img.landscape {
    width: 100%; /* Fallback if the image is landscape */
    height: auto;
  }
  
  .img-comp-slider {
    position: absolute;
    z-index: 9;
    cursor: ew-resize;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    opacity: 0.7;
    border-radius: 50%;
  }

  .img-comp-slider::before,
.img-comp-slider::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
}

.img-comp-slider::before {
  border-width: 8px 10px 8px 0; /* Triangle pointing left */
  border-color: transparent #bb6f82 transparent transparent;
  left: 8px;
  top: 12px;
}

.img-comp-slider::after {
  border-width: 8px 0 8px 10px; /* Triangle pointing right */
  border-color: transparent transparent transparent #bb6f82;
  right: 8px;
  top: 12px;
}

.ckeditor-content figure{
    margin: 0;
    padding: 0;
}
.nav-pills .nav-link.active {
    color: #bb6f82;
    background-color: #b7847f17;
}

.nav-pills .nav-link.active:hover {
    color: #bb6f82 !important;
    background-color: #b7847f17 !important;
}

/* --bs-nav-link-hover-color replace */
.nav {
    --bs-nav-link-hover-color: #bb6f82 !important;
}