:root {
  --primary: #110F0F;
  --secondary: #a6172d;
  --bg-gray: #f4f9ff;
  --black: #000000;
  --white: #ffffff;
  --dark: #333333;
  --text-color: #000000;
  --font-heading: "Poppins", sans-serif;
  --font-accent: "Inter", sans-serif;
  --font-body: 'Poppins', sans-serif;
  --icon: "Font Awesome 6 Pro", sans-serif;
  --deg: -86deg;
  --trans: all 0.4s ease 0s;
}

@font-face {
  font-family: 'Otterco Bold';
  src: url('../fonts/Otterco-Bold.eot');
  src: url('../fonts/Otterco-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Otterco-Bold.woff2') format('woff2'),
    url('../fonts/Otterco-Bold.woff') format('woff'),
    url('../fonts/Otterco-Bold.ttf') format('truetype'),
    url('../fonts/Otterco-Bold.svg#Otterco-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Otterco Bold', sans-serif;
  /* color: var(--black); */
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 5px;
  background-color: var(--black);
}

::-webkit-scrollbar-thumb {
  background-color: var(--secondary);
  border-radius: 10px;
}

/* Body */
body {
  font-family: var(--font-body);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  background: #1D1D1D;
}

section {
  position: relative;
  padding: 5rem 4rem;
}

.headingCont {
  margin-bottom: 80px;
}

.secHeading {
  text-align: left;
  line-height: 1.2;
  font-size: 3.75rem;
  text-transform: capitalize;
  font-weight: 600;
}

.theme-color {
  color: var(--secondary);
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px #999;
  z-index: 100;
}
.whatsapp-icon {
  margin-top: 16px;
}

.logo {
  max-width: 100%;
  height: 120px;
}

/* a.navbar-brand {
    padding: 2px 15px;
    border-radius: 40px;
    transition: 0.3s ease-in-out;
    display: inline-block;
    text-decoration: none;
    font-size: 1.1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
} */
.navbar-nav {
  justify-content: space-between;
  margin: 0 50px;
  padding: 5px 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Navbar */
nav.navbar {
  position: absolute;
  width: 100%;
  box-shadow: none;
  padding: 10px 0px;
}

.navbar .nav-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  text-transform: capitalize;
  margin: 0 15px 0 0;
}

.navbar .nav-link.active {
  font-weight: 600;
  color: var(--white);
}

/* Dropdown Menu */
.navbar .dropdown-menu {
  background: linear-gradient(90deg, rgba(16, 35, 40, 1) 31%, rgba(0, 54, 72, 1) 99%);
  border: none;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  transform: translateY(10px);
  padding: 7px;
  border-radius: 15px;
}

.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar .dropdown-item {
  color: #fff;
  padding: 10px 20px;
}

.navbar .dropdown-menu li {
  border-bottom: 1px solid #898989;
}

.navbar .dropdown-menu li:last-child {
  border-bottom: none;
}

.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--secondary);
}

/* Dropdown Toggle */
.nav-item.dropdown .dropdown-toggle::after {
  display: none;
}

.nav-item.dropdown .dropdown-icon {
  transition: transform 0.3s ease;
  margin-left: 5px;
  font-size: 0.8em;
}

.nav-item.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}


.navbar-nav a:not(.theme-btn):before,
.navbar-nav a:not(.theme-btn):after {
  content: '';
  position: absolute;
  width: 5px;
  border-radius: 50%;
  background: var(--secondary);
  top: 17px;
  transition: height 0.3s 0.3s ease, border-radius 0.3s 0.3s ease, top 0.3s 0.3s ease, width 0.3s ease;
}

.navbar-nav a:not(.theme-btn):before {
  height: 5px;
  left: 0;
}

.navbar-nav a:not(.theme-btn):after {
  height: 0;
  right: 0;
}

.navbar-nav a:not(.theme-btn):hover:before,
.navbar-nav a:not(.theme-btn):hover:after {
  top: 10%;
  width: 55%;
  height: 80%;
  z-index: -1;
  border-radius: 5px;
  transition: height 0.3s ease, border-radius 0.3s ease, top 0.3s ease, width 0.3s 0.3s ease;
}

.navbar-nav a {
  z-index: 1;
  display: inline-block;
  padding: 10px 20px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav a:hover {
  transition: all 0.3s 0.3s ease;
  text-decoration: none;
  color: white;
}




/* Theme Button */
.theme-btn {
  color: var(--white);
  padding: 10px 30px !important;
  border-radius: 40px;
  transition: 0.3s ease-in-out;
  display: inline-block;
  text-decoration: none;
  font-size: 1.1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.theme-btn:hover {
  border: 1px solid var(--primary);
  background: var(--primary);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100svh;
  background: url('../images/banners/banner-bg.svg') top/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.hero-slider:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-backdrop-filter: blur(5.3px);
  background: rgb(255 255 255 / 3%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}


.slide-content {
  width: 100%;
  padding: 20px;
  position: relative;
  z-index: 3;
}

.slide-text {
  color: white;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  animation: fadeInLeft 1s ease-in-out;
}

/* .slide-text h2 {
    font-size: 3.5rem;
    text-transform: capitalize;
    line-height: 1.2;
    color: var(--white);
    margin: 0 0 1rem 0;
    letter-spacing: 0.125rem;
    font-weight: 700;
} */

.slide-text p {
  font-size: 1.5rem;
  margin: 15px 0;
  line-height: normal;
}

.slide-image {
  justify-self: center;
}

.slide-image img {
  animation: fadeInRight 1s ease-in-out;
  max-height: 500px;
  border-radius: 10px;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

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




.serviceSec .serviceRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 750px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.serviceSec .serviceRow .serviceBox {
  flex: 0 1 25%;
  width: 25%;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: end;
  padding: 3rem 1rem;
  position: relative;
  z-index: 2;
}

.serviceSec .serviceRow img {
  width: 100%;
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 0;
  opacity: 0;
  transition: all 0.5s ease;
  transform: scale(0.9);
}

.serviceSec .serviceRow .serviceBox .content h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0;
  transform: translateY(100px);
  transition: all 0.5s ease;
}

.serviceSec .serviceRow .serviceBox .content h3 span {
  color: var(--secondary);
  font-size: 4rem;
}

.serviceSec .serviceRow::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(224 72 72 / 6%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /* backdrop-filter: blur(2px); */
  -webkit-backdrop-filter: blur(5.3px);
  z-index: 1;
}

.serviceSec .serviceRow .serviceBox+.serviceBox {
  border-left: 1px solid var(--theme-color);
}

.serviceSec .serviceRow img.active {
  transform: scale(1);
  opacity: 1;
}

.serviceSec .serviceRow .serviceBox:before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 50%);
  opacity: 0;
  transition: all 0.5s ease;
}

.serviceSec .serviceRow .serviceBox.active::before {
  opacity: 1;
}

.serviceSec .serviceRow .serviceBox .content {
  position: relative;
  overflow: hidden;
}

.serviceSec .serviceRow .serviceBox .content p {
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 600;
  opacity: 1;
  transform: translateX(100%);
  min-height: 100px;
  transition: all 0.5s ease;
}

.serviceSec .serviceRow .serviceBox.active .content p {
  transform: translateX(0);
}

.serviceSec .serviceRow .serviceBox.active .content h3 {
  transform: translateY(0);
}

.work-process-item {
  text-align: center;
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px
}

.work-process-item .icon {
  z-index: 1;
  padding: 15px;
  position: relative;
  margin-bottom: 20px;
  display: inline-block
}

.work-process-item .icon .number {
  z-index: -1;
  opacity: .15;
  line-height: 1;
  font-size: 85px;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  font-weight: 700;
  position: absolute;
  color: transparent;
  -webkit-text-stroke: 1px;
  -webkit-text-stroke-color: #293043;
  -webkit-transform: translate(-70%, -60%) rotate(-50deg);
  -ms-transform: translate(-70%, -60%) rotate(-50deg);
  transform: translate(-70%, -60%) rotate(-50deg);
  -webkit-text-stroke-color: white;
}

.work-process-item .icon .icon_div,
.work-process-item .icon i {
  color: #fff;
  font-size: 65px;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  display: inline-block;
  width: 120px;
  height: 120px;
  background: var(--secondary);
  line-height: 120px;
  border-radius: 50%;
  text-align: center
}

.cta-inner::before,
.work-process-item .icon:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  content: ""
}

.work-process-item .icon:before {
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  border: 2px dashed var(--secondary);
}

.contact-info-item .title,
.work-process-item p {
  font-size: 18px
}

.work-process-item:hover .icon:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-animation: 5s linear .5s infinite rotated_circle;
  animation: 5s linear .5s infinite rotated_circle
}

.work-process-shape {
  position: absolute;
  width: 110%;
  top: -10%;
  left: -5%;
  z-index: -1
}

.service_icon {
  width: 55px;
}

.filter_invert,
.service_icon {
  filter: invert(1);
}

.client-slider {
  text-align: center;
}

.client-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
}

.client-slider .swiper-slide:hover {
  transform: scale(1.1);
}

.client-slider .swiper-slide img {
  max-width: 150px;
  height: auto;
  /*filter: grayscale(100%);*/
  transition: filter 0.3s ease-in-out;
}

.client-slider .swiper-slide:hover img {
  filter: grayscale(0%);
}

.testimonialSwiper {
  overflow: hidden;
  margin-bottom: 20px;
  padding: 30px 0px;
}

.testimonials .testimonial-card {
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/*.testimonials .swiper-slide:hover .testimonial-card {*/
/*  transform: translateY(-10px);*/
/*}*/

.testimonials .testimonial-text {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-style: italic;
  min-height: 100px;
}

.testimonials .testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials .testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
  object-position: top center;
}

.testimonials .testimonial-author h4 {
  margin: 5px 0 2px;
  font-size: 1.2rem;
  font-weight: bold;
}

.testimonials .testimonial-author span {
  color: var(--secondary);
  font-size: 0.9rem;
}

.testimonials .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  background: var(--white);
}

.swiper-pagination-bullet-active {
  background: var(--secondary);
}


.blog-card {
  border-radius: 15px;
  padding-bottom: 37px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-card .blog-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.blog-card .blog-title {
  font-size: 32px;
  line-height: 42px;
  margin: 10px;
  font-family: 'Poppins';
}

.blog-text {
  margin: 10px;
}



footer {
  background: var(--black);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.inputCont {
  border: 1px solid var(--white);
  position: relative;
}

.inputCont input,
.inputCont textarea {
  color: var(--white);
  width: 100%;
  min-height: 50px;
  border: none;
  background: transparent;
  padding: 1rem;
  outline: none;
}

.inputCont input::placeholder,
.inputCont textarea::placeholder {
  color: var(--white);
}

.contactForm .row {
  gap: 1rem 0;
}

.contentSec h4 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0;
  font-family: 'Otterco Regular', serif;
}

.contentSec h2 {
  font-size: 4.5rem;
  color: var(--white);
  margin: 0;
}


.divider {
  height: 1px;
  background-color: var(--white);
  width: 100%;
  margin: 2rem 0;
}

footer .bgImg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  user-select: none;
  touch-action: none;
  filter: blur(2px);
  user-select: none;
  width: 100%;
  pointer-events: none;
  opacity: 0.5;
}

footer .contentSec {
  position: relative;
}

.footerSec .footerLogo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footerSec .footerLogo img {
  width: 250px;
}

.footerSec .footerLogo p {
  color: #fff;
  padding-right: 5rem;
  margin: 0;
}

.footerSec h4 {
  color: var(--white);
  font-size: 2rem;
  margin: 0 0 1rem;
}

.footerSec ul li a {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
}

.footerSec ul.contact {
  height: auto;
  margin: 0 -1.5rem;
}

.footerSec ul.contact li {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem;
  width: 33.333333%;
  flex: 0 1 33.333333%;
  width: auto;
}

.footerSec ul.contact li img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  object-fit: cover;
  margin: auto;
}

/* .footerSec ul {
    display: flex;
    flex-wrap: wrap;
    height: 200px;
} */

.footerSec ul li {
  width: 50%;
}

.footerSec ul li a:hover {
  color: var(--theme-color);
}

/* .footer_left_pedding {
    padding-left: 50px;
} */
.powered_sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
}

.powered_sec p {
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}


.hero-section {
  position: relative;
  width: 100%;
  height: 500px;
  background: url('../images/choose/24-7.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.hero-section:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(0 0 0 / 27%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(5.3px);
}

.hero-section .container {
  position: relative;
}

.packages-bg-image {
  position: absolute;
  z-index: -1;
  opacity: 0.8;
  width: 100%;
  height: auto;
}

.packages-banner {
  height: 70svh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.packages-banner h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 5.625rem;
}

.banner-line {
  background: #A6172D;
  height: 16px;
  width: 250px;
  margin: 0 auto;
  border-radius: 50px;
}

.packege-box {
  background: #D4D4D41A;
  border: 3px solid;
  border-image-source: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 50%);
  backdrop-filter: blur(55px);
  padding: 20px;
  border-radius: 15px;
  border-width: 3px;
}

.packege-box .packages-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 3rem;
  line-height: 6rem;
  text-align: center;
}

.packege-box .packages-para {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.938rem;
  line-height: 1.375rem;
  text-align: center;
  margin-bottom: 30px;
}

ol.packages-list {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 33px;
  margin: 50px 0;
}

.package-price h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 5.625rem;
  line-height: 6rem;
  text-align: center;
  margin-top: 20px;
}

.toggle-password {
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: var(--white);
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);

}

.toggle-password i {
  transition: color 0.3s ease;
}

.toggle-password:hover i {
  color: var(--secondary);
}

.currently-located__img img {
  display: block;
  width: 70%;
  margin: 0 auto;
}


.packege-box {
  background: #D4D4D41A;
  border: 3px solid;
  border-image-source: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 50%);
  backdrop-filter: blur(55px);
  padding: 5px;
  border-radius: 15px;
  border-width: 3px;
  height: 100%;
}

.packege-box .image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.packege-box .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.packege-box .packages-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 2rem;
  text-align: center;
  margin: 20px 0;
}

.packege-box .packages-para {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.938rem;
  line-height: 1.375rem;
  text-align: center;
  margin-bottom: 30px;
}

.packege-box .packages-list {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 10px 0;
  min-height: 350px;
}

.packege-box .packages-list li {
  margin-bottom: 10px;
}

.packege-box .package-price h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 5rem;
  text-align: center;
}

.packege-box .package-action {
  margin: 10px auto;
  text-align: center;
}

.packege-box .package-action .theme-btn {
  display: block;
}

.amount-control {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: .75rem;
}

.amount-btn {
  background: var(--secondary);
  color: var(--white);
  border: none;
  padding: 10px 15px;
  font-size: 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--trans);
}

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

.amount-control .custom-field {
  text-align: center;
}

.package-price h4 {
  font-size: 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--secondary);
}

.custom-field {
  backdrop-filter: blur(35px);
  border: 1px solid;
  border-image-source: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 50%);
  background: #D4D4D41A;
  color: #FFFFFF47;
  width: 100%;
  border-width: 1px;
  border-radius: 10px;
  padding: 10px;
  font-family: Poppins;
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 40px;
  letter-spacing: 0;
}

.footer_links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.footer_links li a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none !important;
  transition: all 300ms ease-out;
}

.footer_links li a:hover {
  color: var(--secondary);
}

.privacy,
.terms {
  padding: 5rem 0;
}

.privacyContent :is(p,
  li),
.termsContent :is(p,
  li){
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 1rem;
}

.privacyContent p a,
.privacyContent li a,
.termsContent p a,
.termsContent li a {
  color: var(--secondary);
  font-weight: 600;
}

.privacyContent h3,
.termsContent h3 {
  font-size: 2.125rem;
  font-weight: 600;
  margin: 1.125rem 0;
}

.privacyContent .list,
.termsContent .list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacyContent .list li,
.termsContent .list li{
  position: relative;
  padding-left: 1.75rem;
}

.privacyContent .list li::before,
.termsContent .list li::before{
  content: "";
  width: 16px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--secondary);
  position: absolute;
  top: 0.25rem;
  left: 0;
}


.vendify-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #515050;
    color: #fff;
    border-left: 4px solid #ab1730;
    border-radius: 8px;
    padding: 16px 20px 16px 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    max-width: 320px;
    font-size: 15px;
    font-family: 'Segoe UI', sans-serif;
    transition: all 0.3s ease-in-out;
}

.vendify-popup .close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 18px;
  cursor: pointer;
  color: #999;
}

.vendify-popup .close-btn:hover {
  color: #000;
}
.active-users-box {
    position: fixed;
    top: 110px;
    right: 15px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 14px;
    font-family: 'Segoe UI', sans-serif;
    z-index: 9999;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.online-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #28a745; /* Bootstrap green */
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}