::-webkit-scrollbar {
  width: 8px;
  background: #000;
}

.owl-carousel {
  position: relative;
}
.owl-dots {
  position: absolute;
  bottom: 0;
  left: 7%;
  right: 0;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}

/* Base styles for all pagination bullets */
.owl-dots > .owl-dot {
  width: 18px;
  height: 18px;
  background: transparent;
  border: 2px solid #fff !important;
  border-radius: 50%;
  opacity: 1;
  margin-left: 20px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

/* Styles for the active pagination bullet */
.owl-dots > .owl-dot.active {
  opacity: 1 !important; /* Ensure the active bullet is fully opaque */
  background: #fbb30b;
  border: none !important; /* Remove the border for the active bullet */
  outline: 1px solid #fca311; /* Add an outline for the active bullet */
  outline-offset: 3px;
}

/* ** here is animation code  */
.circle-image > img {
  -webkit-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
}

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

/* ** here is animation code  */
/* marquee text  */

/* marquee text  */
.scale-in-tl {
  animation: scale-in-tl 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-animation: scale-in-tl 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes scale-in-tl {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    opacity: 1;
  }
}
@keyframes scale-in-tl {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    opacity: 1;
  }
}

.eyaana-chat {
  position: fixed;
  bottom: 400px;
  right: 10px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-chat {
  background: #fca311;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.btn-chat > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn-chat:hover {
  background: #fbb30b;
  border-color: #fbb30b;
}

.eyaana-chat .online-text {
  width: 181.37px;
  height: 55px;
}
.eyaana-chat .online-text.active {
  display: none;
}

/* Styling for the mini chat box */
.chat-box {
  width: 300px;
  height: auto;
  max-height: 400px;
  min-height: 250px;
  position: fixed;
  bottom: 400px;
  right: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header for the chat box */
.chat-header {
  background-color: #fca311;
  color: white;
  font-size: 16px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}
.chat-header > div > .avatar {
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 50%;
  position: relative;
  z-index: 30;
  margin-right: 10px;
}
.chat-header > div > .avatar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(11, 197, 11);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  z-index: 20;
}
.chat-header > div > .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 30;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.chat-header > div {
  display: flex;
  align-items: center;
  gap: 0px;
  row-gap: 0px;
  column-gap: 0px;
}

.chat-header > div > .designation .avatar-title {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 0px;
  padding: 0px;
}
.chat-header > div > .designation > span {
  display: block;
  font-size: 12px;
  margin-top: 0px;
}
.chat-header > button {
  background-color: transparent;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.chat-header > button:active,
.chat-header > button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
/* Chat messages area */
.chat-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background-color: #fff;
  height: 400px;
  overflow-y: auto;
  border-bottom: 1px solid #ccc;
}

/* Form area for input and send button */
.chat-input {
  padding: 10px;
  display: flex;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #f1f1f1;
}

/* Input field styling */
.chat-input input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

/* Send button styling */
.chat-input button {
  padding: 8px 15px;
  margin-left: 10px;
  background-color: #fca311;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.chat-input button:hover {
  background-color: #fca312;
}

@media (min-width: 600px) {
  .chat-box,
  .eyaana-chat {
    bottom: 350px;
    right: 30px;
  }
}
@media (min-width: 800px) and (max-width: 1000px) {
  .chat-box,
  .eyaana-chat {
    bottom: 70px;
    right: 30px;
  }
}
@media (min-width: 1200px) {
  .chat-box,
  .eyaana-chat {
    bottom: 115px;
    right: 100px;
  }
}

/*  new  add banner css  */
.circle-banner-right {
  position: relative;
  margin-top: 50px;
}
.circle-banner-right .banner-section {
  z-index: 50;
  background-color: #f6f6f6;
}
.circle-banner-right .banner-circle {
  position: absolute;
  top: -130px;
  right: 0;
  z-index: -50;
  width: 200px;
  height: 300px;
  overflow: hidden;
}
.circle-banner-right .banner-circle > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
}
