﻿@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap");




:root {
    --main-font-family: "IBM Plex Sans", sans-serif;
    --body-font-family: "Roboto", sans-serif;
    /* Dark */
    --dark-50: #edebe7;
    --dark-100: #d9d9d9;
    --dark-200: #5b5b5b;
    --dark-300: #06131c;
    --dark-400: #0c1e2b;
    /* Light */
    --off-white: #f7f5f0;
    --white: #fff;
    /* lime */
    --lime-300: #22be0d;
    --green-300: rgba(164,154,135);
    /* Blue */
    --blue-300: #4b83fc;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--main-font-family);
  margin: 0;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a body {
  color: inherit;
  font-size: inherit;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
button {
  border: 0;
  background: none;
  font-family: var(--main-font-family);
}
p {
  margin: 0;
}
ul {
  list-style-type: none;
}
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}
body {
  overflow-x: hidden;
  font-family: var(--body-font-family);
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1440px;
    padding: 0 20px;
  }
}

/* Predefine Class */
.bg-white {
  background-color: var(--white);
}
.bg-offWhite {
  background-color: var(--off-white);
}
.bg-darkGreen {
  background-color: var(--green-300);
}
.bg-dark-300 {
    background-color: rgba(164,154,135);
}
.bg-blue-300 {
  background-color: var(--blue-300);
}
.bg-lime-300 {
  background-color: var(--lime-300);
}
.bg-darkLime {
  background-color: #14a800;
}
.text-dark-200 {
  color: var(--dark-200);
}
.text-dark-300 {
  color: var(--dark-300);
}
.text-lime-300 {
  color: var(--lime-300);
}
.text-14 {
  font-size: 14px;
}
.text-18 {
  font-size: 18px;
}
.text-24 {
  font-size: 24px;
}
.text-40 {
  font-size: 40px;
}
.w-shadow {
  box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.06);
}
.high-zindex {
  z-index: 2000;
}
.mt-n2 {
  margin-top: -2px;
}

/* Padding */
.pt-150 {
  padding-top: 150px;
}
.pb-150 {
  padding-bottom: 150px;
}
.pt-110 {
  padding-top: 10px;
}
.pb-85px {
  padding-bottom: 85px;
}
.pt-30 {
  padding-top: 30px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pb-110 {
  padding-bottom: 110px;
}
.pt-60 {
  padding-top: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pt-80 {
  padding-top: 80px;
}
.pb-80 {
  padding-bottom: 80px;
}
.py-60 {
  padding: 60px 0;
}
.py-80 {
  padding: 80px 0;
}
.py-110 {
  padding: 20px 0;
}
/* Margin */
.mt-60 {
  margin-top: 60px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-20 {
  margin-top: 20px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}

/* Button */
.header-btn {
  background-color: var(--lime-300);
  padding: 16px 32px;
  border-radius: 30px;
  color: var(--white);
  line-height: 1;
  font-size: 16px;
  color: var(--white);
}
.header-btn svg {
  margin-right: 5px;
  margin-right: 5px;
}
.header-btn:hover {
  background-color: var(--green-300);
}
.w-btn {
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: none;
  gap: 10px;
  font-family: var(--main-font-family);
}

.w-btn-md {
  padding: 16px 30px;
  color: var(--dark-200);
  font-size: 18px;
  border-radius: 30px;
  background-color: var(--white);
}
.w-btn-md:hover {
  background-color: var(--lime-300);
  color: var(--white);
}

.w-btn {
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: 1;
  font-size: 16px;
}

.w-btn-secondary-lg {
    color: var(--white) !important;
    background-color: #1a9a94 !important; /* solid teal theme */
    padding: 16px 32px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .w-btn-secondary-lg:hover {
        background-color: #14807a !important; /* darker teal on hover */
    }

.w-btn-black-lg {
  color: var(--white);
  background-color: var(--dark-300);
  padding: 16px 32px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}
.w-btn-blue-lg {
  color: var(--white);
  background-color: var(--blue-300);
  padding: 16px 32px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}
.w-btn-primary-sm {
  color: var(--white);
  background-color: var(--lime-300);
}
.w-btn-gray-sm {
  color: var(--dark-200);
  background-color: var(--dark-50);
  padding: 14px 24px;
  border-radius: 30px;
  text-align: center;
}
.w-btn-secondary-sm {
  color: var(--white);
  background-color: var(--lime-300);
  padding: 14px 24px;
  border-radius: 30px;
  text-align: center;
}
.w-btn-primary-icon {
  background-color: var(--lime-300);
  color: var(--white);
}
.w-btn-secondary-icon {
  background-color: var(--dark-50);
  color: var(--dark-300);
}
.w-btn-secondary-icon:hover {
  color: var(--white);
  background-color: var(--lime-300);
}

.w-btn-link {
  color: var(--dark-200);
  font-size: 16px;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.w-btn-link::before {
  position: absolute;
  content: "";
  width: 0;
  left: 0;
  bottom: -5px;
  background: var(--lime-300);
  height: 1px;
  transition: 0.3s ease-out;
}

.w-btn-link svg {
  color: var(--dark-200);
  transition: 0.2s;
  position: relative;
  width: 15px;
  transition-delay: 0.2s;
  margin-left: 5px;
}
.w-btn-link:hover {
  color: var(--lime-300);
}
.w-btn-link:hover::before {
  width: 100%;
}
.w-btn-link:hover svg {
  transform: translateX(4px);
  color: var(--lime-300);
}

.w-btn-primary-xl {
  background: var(--white);
  border-radius: 50px;
  text-align: center;
  padding: 16px 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--dark-300);
  gap: 10px;
  flex-shrink: none;
  line-height: 26px;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.w-btn-secondary-xl {
  background-color: var(--lime-300);
  color: var(--white);
  padding: 16px 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  flex-shrink: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.w-btn-black-lg::before,
.w-btn-blue-lg::before,
.cta-btn-link::before,
.w-btn-secondary-lg::before,
.w-btn-secondary-xl::before,
.w-btn-primary-lg::before,
.w-btn-primary-xl::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}
.w-btn-black-lg:hover::before,
.w-btn-blue-lg:hover::before,
.cta-btn-link:hover::before,
.w-btn-secondary-lg:hover::before,
.w-btn-secondary-xl:hover::before,
.w-btn-primary-lg:hover::before,
.w-btn-primary-xl:hover::before {
  animation: shine 1.5s ease-out infinite;
}
.w-btn-secondary-xl:hover,
.w-btn-primary-lg:hover,
.w-btn-primary-xl:hover {
  background-color: var(--lime-300);
  color: var(--white);
}

.w-btn-primary-lg {
    background: #1a9a94 !important;
    border-radius: 50px;
    text-align: center;
    padding: 17px 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-300);
    line-height: 1;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}
.not-found-img {
  max-height: 680px;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

/* Custom Dropdown */
.custom-dropdown.dropdown {
  width: 200px;
}
.custom-dropdown-toggle.dropdown-toggle {
  background-color: var(--white);
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  padding: 16px 25px;
  min-width: 200px;
  width: 100%;
}
.custom-dropdown-toggle.dropdown-toggle::after {
  display: none;
}
.custom-dropdown-menu.dropdown-menu {
  width: 100%;
}
.custom-dropdown-menu.dropdown-menu .dropdown-item {
  color: var(--dark-200);
  display: inline-flex;
  justify-content: space-between;
}
.custom-dropdown-menu.dropdown-menu .dropdown-item:hover {
  color: var(--lime-300);
  background-color: var(--dark-50);
}

.custom-dropdown-menu input[type="range"]::-webkit-slider-thumb {
  height: 18px;
  width: 18px;
  border-radius: 70%;
  background: var(--lime-300);
  pointer-events: auto;
  -webkit-appearance: none;
}
.custom-dropdown-menu.dropdown-menu .form-check-input:checked {
  background-color: var(--lime-300);
  border-color: var(--lime-300);
}

/* Custom Pagination */
.custom-pagination.pagination {
  gap: 16px;
  flex-wrap: wrap;
}
.custom-page-link.page-link {
  background-color: transparent;
  width: 48px;
  height: 48px;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 50%;
  color: var(--dark-200);
  border-color: var(--dark-100);
}
.custom-page-link.page-link:hover {
  background-color: var(--lime-300);
  color: var(--white);
  border: transparent;
}
.custom-page-item.page-item:last-child .page-link,
.custom-page-item.page-item:first-child .page-link {
  border: 0;
  width: 100%;
}
.custom-page-item.page-item:last-child .page-link:hover,
.custom-page-item.page-item:first-child .page-link:hover {
  color: var(--lime-300);
  background-color: transparent;
}
.custom-page-item.page-item.active > .page-link,
.page-link.active {
  background-color: var(--lime-300);
  color: var(--white);
  border: transparent;
}
/*Custom Pagination End */
/* Section */
.section-subtitle {
  font-size: 18px;
  color: var(--lime-300);
}
.section-title {
  font-size: 40px;
  color: var(--dark-300);
  line-height: 50px;
  margin-bottom: 10px;
}
.section-title-light {
  font-size: 40px;
  color: var(--white);
  line-height: 50px;
}
.section-desc {
  font-size: 18px;
  color: var(--dark-200);
}
.section-desc-light {
  font-size: 18px;
  color: var(--white);
}

/* Swiper Navigation */

.swiper-prev,
.swiper-next {
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border-radius: 50%;
  color: var(--lime-300);
  border: 1px solid var(--lime-300);
}

.swiper-prev:hover,
.swiper-next:hover {
  background-color: var(--lime-300);
  color: var(--white);
  border: 1px solid var(--lime-300);
}

.swiper-prev svg,
.swiper-next svg {
  width: 24px;
  height: 24px;
}

/* Swiper End */

/* Navbar Start */

.navbar .navbar-nav .nav-item:hover .nav-link {
  color: var(--lime-300);
}

.navbar .navbar-nav .nav-link {
  font-size: 18px;
  letter-spacing: -0.2px;
  line-height: initial;
  color: var(--dark-300);
  padding: 15px 0;
  margin: 0 26px;
  position: relative;
}

.navbar .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0 15px;
  letter-spacing: 0px;
  text-transform: capitalize;
  line-height: 32px;
  margin-bottom: 5px;
  color: var(--dark-300);
  background: transparent;
  display: inline-block;
  position: relative;
  transition: all 0.35s;
  white-space: inherit;
}

.navbar .dropdown-menu .dropdown:hover > .dropdown-item,
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:hover {
  color: var(--lime-300);
}

.navbar .dropdown-toggle::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  border: none !important;
  font-size: 12px;
  font-weight: 900;
  position: absolute;
  line-height: 30px;
  color: var(--dark-300);
  top: calc(50% - 15px);
  text-align: center;
  transition: all 0.3s ease;
}

.navbar .dropdown-submenu:hover > .dropdown-toggle::after {
  transform: rotate(90deg);
}
.header-primary.header-transparent.sticky,
.header-primary.sticky {
  position: fixed;
  left: 0;
  top: 0;
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  width: 100%;
  z-index: 200;
  transition: 0.3s ease-in;
  -webkit-animation: upsdown 1000ms;
  animation: upsdown 1000ms;
}
.header-primary.header-transparent .become-seller-link {
  color: var(--white);
}
.header-primary.header-transparent.sticky .become-seller-link {
  color: var(--dark-300);
}
.header-primary.header-transparent .logo-green {
  display: none;
}
.header-primary.header-transparent.sticky .logo-transparent {
  display: none;
}
.header-primary.header-transparent.sticky .logo-green {
  display: block;
}

/*----- For Desktop -------*/
@media screen and (min-width: 1199.5px) {
  .header-primary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--white);
  }
  .header-primary.header-transparent {
    background-color: #fff;
    border-bottom: 1px solid #586063;
  }
  .header-primary.header-transparent.sticky {
    border-bottom: none;
  }
  .header-primary.header-transparent.sticky .navbar .navbar-nav .nav-link,
  .header-primary .navbar .navbar-nav .nav-link {
    color: var(--dark-300);
  }
    .header-primary.header-transparent .navbar .navbar-nav .nav-link {
        color: #000000;
    }

  .header-primary.header-transparent.sticky
    .navbar
    .navbar-nav
    .nav-link::after,
  .header-primary .navbar .navbar-nav .nav-link::after {
    color: var(--dark-300);
  }
    .header-primary.header-transparent .navbar .navbar-nav .nav-link::after {
        color: #000000;
    }

  .navbar .navbar-nav .nav-link {
    font-size: 16px;
    letter-spacing: -0.2px;
    line-height: initial;
    color: var(--dark-300);
    font-weight: 400;
    padding: 30px 0;
    margin: 0 25px;
    position: relative;
  }
  .nav-item:hover .nav-link::after {
    transform: rotate(-180deg);
    color: var(--dark-300);
  }

  .navbar .dropdown-menu {
    z-index: 20;
    background-color: var(--white);
    display: block;
    right: 0;
    left: 0;
    padding: 10px;
    border: none;
    top: 110%;
    visibility: hidden;
    transform: scale(1, 0);
    opacity: 0;
    min-width: 200px;
    box-shadow: 0px 50px 100px rgba(0, 0, 0, 0.12);
    margin: 0;
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }

  .navbar .dropdown-menu .dropdown-menu {
    left: calc(100% + 10px);
    top: 100%;
    right: auto;
    min-width: 240px;
    box-shadow: 0 20px 30px -10px rgb(0, 0, 0, 0.15);
    transform: scale(0, 1);
  }
  .navbar .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  .navbar .navbar-nav .nav-item.dropdown:hover .nav-link.dropdown-toggle {
    transition: all 0.4s ease-in-out;
  }
  .navbar
    .navbar-nav
    .nav-item.dropdown:hover
    .nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
    color: var(--interface-4);
  }
  .header-primary.header-transparent.sticky .navar-right-transparent a,
  .header-primary.header-transparent.sticky .navar-right-transparent button {
    color: var(--dark-300);
  }
}

/*----- For Mobile ----*/
@media screen and (max-width: 1199px) {
  .header-primary {
    width: 100%;
    z-index: 10000;
    background-color: var(--white);
  }
  .header-primary.header-transparent {
    background-color: transparent;
    position: absolute;
  }
  .header-primary .nav-item .nav-link {
    color: var(--dark-300);
    font-size: 16px;
  }
  .header-primary .nav-item .nav-link::after {
    color: var(--dark-300);
  }
  .header-primary .nav-item:hover .nav-link ::after {
    transform: rotate(-180deg);
  }
  .navbar {
    padding: 12px 0;
  }
  .header-primary .navbar-toggler span {
    background: var(--dark-300);
  }
  .header-primary .navbar-toggler span::after,
  .header-primary .navbar-toggler span::before {
    background: var(--dark-300);
  }
  .navbar-collapse .logo {
    margin-bottom: 3vh;
  }
  .navbar-collapse {
    position: fixed;
    top: 0;
    background-color: var(--white);
    left: 0;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    clear: both;
    width: 320px;
    max-width: calc(100vw - 60px);
    z-index: 9999;
    transform: translateX(-100%);
    display: block !important;
    padding: 32px 15px 20px;
    transition: all 0.3s ease-in-out;
  }
  .navbar-collapse.show {
    transform: translateX(0);
    box-shadow: 15px 0 25px rgba(35, 35, 35, 0.1);
  }

  .navbar .navbar-nav .nav-link {
    margin: 0;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar .dropdown-menu .dropdown-item {
    padding: 0 10px;
    font-size: 16px;
  }
  .navbar .dropdown-menu {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    background-color: var(--white);
    border-radius: 0;
    margin: 0;
  }
  .navbar .dropdown-submenu .dropdown-menu {
    margin: 0;
    padding: 0 0 0 15px;
  }

  .navbar .show.dropdown-toggle::after {
    transform: rotate(180deg);
    color: var(--lime-300);
  }
}

@-webkit-keyframes upsdown {
  0% {
    transform: translateY(-100px);
    visibility: hidden;
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
}

@keyframes upsdown {
  0% {
    transform: translateY(-100px);
    visibility: hidden;
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
}

/* Navbar Toggler */
.header-primary.header-transparent .navbar-toggler span {
  background-color: var(--white);
}
.header-primary.header-transparent .navbar-toggler::after,
.header-primary.header-transparent .navbar-toggler::before {
  background-color: var(--white);
}
.header-primary.header-transparent.sticky .navbar-toggler span {
  background-color: var(--dark-300);
}
.header-primary.header-transparent.sticky .navbar-toggler::after,
.header-primary.header-transparent.sticky .navbar-toggler::before {
  background-color: var(--dark-300);
}

.navbar-toggler {
  width: 38px;
  height: 38px;
  padding: 0;
  box-shadow: none;
  position: relative;
  
  z-index: 99;
  border: none;
  margin-top:-50px;
  
}
.navbar-toggler span {
  position: absolute;
  left: 9px;
  overflow: hidden;
  width: 26px;
  height: 2px;
  margin-top: -1px;
  text-indent: 200%;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  background: var(--dark-300);
}
.navbar-toggler::after,
.navbar-toggler::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  width: 26px;
  height: 2px;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background: var(--dark-300);
}
.navbar-toggler::after {
  -webkit-transform: translate3d(0, 8px, 0) scale3d(1, 1, 1);
  transform: translate3d(0, 8px, 0) scale3d(1, 1, 1);
}
.navbar-toggler::before {
  -webkit-transform: translate3d(0, -9px, 0) scale3d(1, 1, 1);
  transform: translate3d(0, -9px, 0) scale3d(1, 1, 1);
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler[aria-expanded="true"] span {
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"]::before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.navbar-toggler[aria-expanded="true"]::after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}

.select-dropdown span {
  font-size: 16px;
}

.select-dropdown.nice-select::after {
  border: 0;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  border: none !important;
  font-size: 12px;
  font-weight: 900;
  position: absolute;
  line-height: 30px;
  color: var(--dark-300);
  top: calc(50% - 15px);
  text-align: center;
  transition: all 0.3s ease;
  display: block;
  height: auto;
  margin-top: 0;
  pointer-events: none;
  position: absolute;
  right: 12px;
  transform-origin: 0;
  transform: none;
  width: auto;
}
.header-primary.header-transparent .select-dropdown.nice-select {
  background-color: transparent;
}
.header-primary.header-transparent .select-dropdown.nice-select span {
  color: var(--white);
}
.header-primary.header-transparent .select-dropdown.nice-select::after {
  color: var(--white);
}
.header-primary.header-transparent.sticky .select-dropdown.nice-select {
  background-color: transparent;
}
.header-primary.header-transparent.sticky .select-dropdown.nice-select span {
  color: var(--dark-200);
}
.header-primary.header-transparent.sticky .select-dropdown.nice-select::after {
  color: var(--dark-200);
}
/* Mobile Top Bar Fix */
@media (max-width: 1199px) {
    .header-primary {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10000;
        background: #fff;
        border-bottom: 1px solid #eee;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 12px;
    }

    /* Hamburger */
    .navbar-toggler {
        margin: 0;
        padding: 0;
        width: 38px;
        height: 38px;
        border: none;
        background: transparent;
    }

        .navbar-toggler span,
        .navbar-toggler::before,
        .navbar-toggler::after {
            background: #1a9a94 !important; /* teal bars so visible on white */
        }

    /* Right side */
    .topbar-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .topbar-right .logo-green {
            height: 40px;
            margin-right:150px;
        }

        .topbar-right .icon-link {
            font-size: 20px;
            color: #1a9a94;
        }

    /* Prevent menu from covering logo/icons */
    .navbar-collapse {
        top: 0;
        left: 0;
        width: 280px;
        background: #fff;
        height: 100vh;
        position: fixed;
        z-index: 9999;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

        .navbar-collapse.show {
            transform: translateX(0);
        }
}
/* Always visible logo + icons */
/* Logo */
 

/* Navbar  End */

/*****************
 Secondary Nav 
 *****************/
.secondary-nav-wrapper {
  padding-top: 95px;
}
.secondary-nav-container {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top: 1px solid #edebe7;
}

.secondary-nav li a {
  padding: 16px 21px;
  display: block;
  font-size: 16px;
  color: var(--dark-200);
  white-space: nowrap;
}

.secondary-nav li a:hover {
  color: var(--lime-300);
}
.secondary-nav li:last-child button {
  padding: 16px 20px;
}
.modal-backdrop {
  z-index: 500;
  width: 100%;
  height: 100%;
}
/* Category Modal */
.category-nav ul li a {
  font-size: 16px;
  color: var(--dark-200);
  line-height: 30px;
  transition: all 0.3s ease-in;
}
.category-nav ul li a:hover {
  color: var(--lime-300);
  text-decoration: underline;
}
/* Category Modal End*/
/*****************
 Secondary Nav End 
 *****************/

/************
Breadcrumb 
************/
.w-breadcrumb-area {
  position: relative;
  padding: 150px 0 90px 0;
}
.w-breadcrumb-area::after {
  position: absolute;
  content: "";
  opacity: 0.9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #06131c 0%, rgba(6, 19, 28, 0) 100%);
}
.w-breadcrumb .breadcrumb-item a {
  color: var(--white);
}
.w-breadcrumb.breadcrumb .breadcrumb-item.active {
  color: var(--lime-300);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--white);
}
/**************
Breadcrumb End 
***************/

/**************
Hero Start 
***************/



.hero-one {
  /*padding: 170px 0 50px 0;*/


}


.hero-one-title {
  font-size: 72px;
  color: var(--white);
}
.highlighted-text {
  color: var(--lime-300);
}
@media (max-width: 768px) {
  .hero-form-wrapper {
    position: relative;
    top: -30px;   /* adjust this value */
    margin-top: 0; /* reset margin */
  }
}

.hero-form-wrapper .form-select {
  border: 0;
}
.hero-form-wrapper .form-control {
  border: 0;
  border-left: 1px solid var(--dark-100);
  border-radius: 0;
}
.hero-form-btn {
  background-color: var(--lime-300);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
 
  color: var(--white);
  top: 0;
  right: 0;
  margin: 6px;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}
.hero-form-btn:hover {
  background-color: var(--green-300);
}
.hero-group-img-wrapper .hero-group-img {
  margin-left: -20px;
}
.hero-group-img-wrapper .hero-group-img:first-of-type {
  margin-left: 0;
}
.hero-counter-title {
  font-size: 30px;
}
.hero-rating {
  padding-left: 20px;
  border-left: 1px solid var(--white);
}
/* Hero Two */
.hero-two {
  /* min-height: 100vh; */
  padding: 90px 0 40px 0;


}
    .hero-two::after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      
    }
.hero-two-title {
  font-size: 60px;
  line-height: 70px;
}
.hero-two-img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.tag-item {
    padding: 10px 14px;
    border-radius: 30px;
   
    border-radius: 500px;
    background: #1873B2;
    box-shadow: 20px 20px 45px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    text-align: center;
    display: inline-block;
    line-height: 1;
}
/**************
Hero End 
***************/

/******************
Feature Categories 
*******************/
.feature-category-card {
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  height: 230px;
}
.feature-category-link a {
  font-size: 18px;
  color: var(--dark-300);
  display: block;
  margin-bottom: 10px;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}
.feature-category-link a:hover {
  color: var(--lime-300);
}
.feature-category-desc {
  color: var(--dark-200);
}
.feature-category-card:hover {
  border-color: var(--lime-300);
}
/**********************
Feature Categories End 
**********************/

/**********************
Recent Job Post
**********************/

.job-post {
  padding: 20px;
  border-radius: 16px;
}
.job-type-badge {
  left: 20px;
}
.job-type-badge-primary,
.job-type-badge-secondary,
.job-type-badge-tertiary {
  display: inline;
  line-height: 1;
  border-radius: 30px;
  padding: 4px;
  font-size: 10px;
  text-align: center;
}
.job-type-badge-primary {
  background-color: var(--white);
  color: var(--dark-300);
}
.job-type-badge-secondary {
  background-color: var(--lime-300);
  color: var(--white);
}
.job-type-badge-tertiary {
  background-color: var(--dark-50);
  color: var(--dark-300);
}
.job-post-icon {
    width: 110px;
    height: 110px;
    border-radius: 100%;
    background-color: rgba(24, 115, 178, 0.8);
    margin-bottom: 30px;
    display: inline-block;
}
.job-post-subtitle {
  font-size: 18px;
  color: var(--dark-300);
  margin-bottom: 10px;
}
.job-post-title a {
  font-size: 18px;
  color: var(--dark-300);
  margin-bottom: 35px;
  display: block;
  text-align: center;
}

.job-post-horizontal {
  padding: 10px;
  border-radius: 10px;
}
.job-price-range {
  font-size: 14px;
}
.job-post-horizontal-img img {
  border-radius: 8px;
}
.job-post-horizontal-title {
  color: var(--dark-300);
  font-size: 18px;
  line-height: 26px;
}
.job-post-horizontal-title:hover {
  color: var(--lime-300);
}
/**********************
Recent Job Post End
**********************/

/*****************
 Business Widget 
 *****************/
.widget-wrapper {
  border-radius: 16px;
  /* padding: 50px 60px; */
}
.widget-title {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 20px;
}
.widget-desc {
  margin-bottom: 20px;
  font-size: 18px;
}
.widget-list {
  position: relative;
}
.widget-list-item {
  font-size: 18px;
  position: relative;
  padding-left: 12px;
}
.widget-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--white);
  top: 50%;
  transform: translateY(-50%);
}
.widget-video {
  position: relative;
}
.widget-video-btn {
  background-color: var(--white);
  color: var(--lime-300);
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/******************* 
Business Widget End 
********************/

/**************
 Cta Start 
 **************/
.cta-area-bg {
 
  border-radius: 16px;
}
.cta-subtitle {
  font-size: 18px;
  color: var(--white);
}
.cta-counter {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-counter-item {
  background-color: var(--white);
  padding: 10px 15px;
  border-radius: 10px;
  text-align: center;
}
.cta-counter-title {
  font-size: 40px;
  color: var(--dark-300);
}
.cta-counter-desc {
  font-size: 16px;
  line-height: 26px;
  color: var(--dark-200);
}
.cta-img img {
  border-radius: 10px;
}
.cta-wrapper {
  padding: 70px;
  border-radius: 16px;
}
.cta-people {
  top: -22%;
  right: 5%;
}
.cta-btn-link {
    padding: 20px 30px;
    border-radius: 50px;
    background-color: #1a9a94 !important;
    
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    line-height: 18px;
    color: var(--white);
    gap: 5px;
    position: relative;
    overflow: hidden;
}
/**************
 Cta End 
 **************/

/* Top Seller Card */

.top-seller-card {
  border-radius: 16px;
  padding: 30px 20px;
  transition: all 0.4s ease;
}
.top-seller-card.style-two:hover {
  background-color: var(--off-white);
}
    .top-seller-card.style-two:hover .w-btn-primary-lg {
        background-color: #1a9a94 !important;
       
        color: var(--white);
    }
.seller-type {
  display: flex;
  gap: 5px;
}
.seller-type-badge {
  background-color: var(--off-white);
  border-radius: 30px;
  padding: 4px 8px;
  font-size: 10px;
  color: var(--dark-300);
  display: inline-block;
}
.seller-type-badge.green {
  background-color: var(--lime-300);
  color: var(--white);
}
.seller-profile-img img {
  width: 110px;
  height: 110px;
  border-radius: 100%;
}

.top-seller-name {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--dark-300);
}
.top-seller-title {
  color: var(--dark-200);
  font-size: 14px;
  margin-bottom: 5px;
}
.top-seller-rating {
  color: var(--dark-300);
  gap: 5px;
}
.top-seller-review {
  color: var(--dark-200);
}
.freelancer-tab-link {
  background-color: var(--green-300);
  color: var(--white);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.freelancer-tab-link.active {
  background-color: var(--lime-300);
}

/* Top Seller Card End*/

/*******************
Testimonial   
********************/
.testimonial-card {
  border-radius: 12px;
  position: relative;
  border-bottom: 4px solid var(--lime-300);
}

.testimonial-content {
  padding: 24px 30px;
  border-bottom: 1px solid #edebe7;
}
.testimonial-title {
  color: var(--dark-200);
  font-size: 18px;
}
.testimonial-feedback {
  color: var(--dark-200);
  font-size: 16px;
  line-height: 26px;
  padding-top: 20px;
}
.testimonial-meta {
  padding: 20px 30px;
}
.testimonial-author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.testimonial-author-name {
  font-size: 18px;
  color: var(--dark-300);
}
.testimonial-author-title {
  color: var(--dark-200);
  font-size: 14px;
}
.testimonialsSlider .swiper-wrapper,
.testimonialsSliderBottom .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
/*******************
Testimonial End   
********************/

/*******************
Service Card   
********************/
/* Service Filter */
.service-filter-btn {
  padding: 14px 20px;
  border: 1px solid var(--lime-300);
  border-radius: 30px;
  height: 46px;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 18px;
  color: var(--dark-300);
  transition: all 0.3s ease;
}
.service-filter-btn:hover {
  background-color: var(--lime-300);
  color: var(--white);
}
.service-filter-btn.active {
  background-color: var(--lime-300);
  color: var(--white);
  border-color: transparent;
}

/* Service Card Two */
.service-card-two {
  border-radius: 8px;
  transition: all 0.4s ease;
  background-color: var(--white);
  transition: all 0.4 ease-in;
}
.service-card-two.style-three {
  background-color: transparent;
}
.service-card-two.style-three:hover {
  background-color: var(--off-white);
}

.service-card-two-img {
  border-radius: 8px;
}
.service-card-two-body {
  padding: 25px 20px;
}

/* Service Card One */

.service-card {
  border-radius: 16px;
  padding: 8px;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
  border-color: var(--lime-300);
}
.service-card-wishlist-btn {
  background-color: var(--white);
  color: var(--lime-300);
  width: 32px;
  height: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 16px;
  right: 16px;
}
.recently-view-card-img {
  border-radius: 12px;
}

.service-card-content {
  padding: 20px 12px 12px;
}
.service-card-price {
  color: var(--lime-300);
}
.service-card-rating {
  font-size: 16px;
  color: var(--dark-200);
  line-height: 1;
}
.service-card-title {
  line-height: 1.4;
  padding: 12px 0;
  color: var(--dark-200);
  font-size: 18px;
}
.service-card-title a {
  position: relative;
  background-image: linear-gradient(#000000, #000000),
    linear-gradient(#ffffff, #ffffff);
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: all 0.5s;
}

.service-card-title a:hover {
  background-size: 100% 1px;
}
.service-card-author {
  padding-top: 16px;
  border-top: 1px solid #edebe7;
  gap: 12px;
}
.service-card-author.style-two {
  padding: 16px 0;
  border-top: 1px solid #edebe7;
  border-bottom: 1px solid #edebe7;
}
.service-card-author.horizontal {
  border: 0;
  padding: 0;
}
.service-card-author-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.service-card-author-name {
  font-size: 18px;
  color: var(--dark-300);
  line-height: 1;
}
.service-card-author-name:hover {
  color: var(--lime-300);
}
.service-card-horizontal {
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}
.service-card-horizontal:hover {
  border: 1px solid var(--lime-300);
}
.wishlist-btn-horizontal {
  background-color: #f7f5f0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--lime-300);
}
/* Service Card Horizontal */

.service-payment-btn {
  border-radius: 4px;
  background-color: var(--white);
  padding: 14px 30px;
  border: 1px solid transparent;
  position: relative;
  min-width: 180px;
}
.service-payment-btn.active {
  border: 1px solid var(--lime-300);
}
.payment-checked-icon {
  position: absolute;
  left: 10px;
  /* padding-right: 10px; */
}
/*******************
Service Card End  
********************/

/*******************
About Pages  
********************/

/***********************
Service Details Start  
***********************/
.job-details-slider-img {
  border-radius: 16px;
}
.service-details-content {
  padding: 20px;
  border-radius: 16px;
}
.service-details-title {
  font-size: 40px;
  line-height: 50px;
}
.service-details-subtitle {
  font-size: 24px;
  line-height: 26px;
  color: var(--dark-300);
}
.service-title-secondary {
  font-size: 18px;
}

.swiper-nav-btn .swiper-button-next,
.swiper-nav-btn .swiper-button-prev {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.swiper-nav-btn .swiper-button-next::after,
.swiper-nav-btn .swiper-button-prev::after {
  font-size: 16px;
  color: var(--dark-200);
}

.service-review-count {
  width: 200px;
  height: 190px;
}
.review-progress-wrapper {
  background-color: #d2d2d2;
  height: 12px;
  border-radius: 30px;
  width: 100%;
}
.review-progress-bar {
  background-color: var(--lime-300);
  height: 12px;
  border-radius: 30px;
}
.review-card {
  padding: 40px;
  border-radius: 10px;
}
.reply-btn {
  background-color: var(--dark-50);
  color: var(--green-300);
  padding: 8px 16px;
  border-radius: 30px;
  text-align: center;
  transition: all 0.3s;
}
.reply-btn:hover {
  background-color: var(--green-300);
  color: var(--white);
}
.seller-reply {
  border-top: 1px solid var(--dark-50);
}
/*Package Tabs
 */
.package-tabs {
  background-color: var(--dark-50);
  padding: 16px 30px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.package-tab-content {
  padding: 30px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.package-tab-btn {
  color: var(--dark-300);
  font-size: 18px;
  font-family: var(--main-font-family);
}
.package-tab-btn.active {
  color: var(--lime-300);
  text-decoration: underline;
}
.package-name {
  font-size: 18px;
}
.package-price {
  font-size: 24px;
}
.package-title {
  font-size: 18px;
  color: var(--dark-200);
}

/***********************
Service Details End  
***********************/

/***********************
Freelancer Details Start  
***********************/
.freelancer-avatar {
  width: 110px;
  height: 110px;
}
.freelancer-name {
  font-size: 24px;
  line-height: 26px;
}
.freelancer-sidebar-title {
  font-size: 18px;
  margin-bottom: 20px;
}
.freelancer-single-info {
  border-color: var(--dark-50);
}
.single-skill {
  background-color: #f7f5f0;
  color: #333;
  padding: 10px 15px;
  border-radius: 30px;
  display: inline-block;
}
.freelancer-university-name {
  font-size: 18px;
}
.freelancer-tab {
  border-radius: 16px;
}
.freelancer-tab .tab-btn {
  border: 1px solid var(--lime-300);
  padding: 14px 28px;
  border-radius: 30px;
  color: var(--dark-300);
}
.freelancer-tab .tab-btn.active {
  background-color: var(--lime-300);
  color: var(--white);
}
.freelancer-tab-content {
  border-radius: 16px;
  padding: 30px;
}
.portfolio-card {
  border-radius: 16px;
  background-color: var(--white);
  box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.06);
  position: relative;
  width: 100%;
}
.portfolio-card img {
  border-radius: 12px;
}
.portfolio-card-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  border-radius: 16px;
  transform: scale(0.3);
  transition: all 0.5s ease-in-out;
  background-color: rgba(6, 19, 28, 0.5);
}
.portfolio-card:hover .portfolio-card-overlay {
  transform: scale(1);
  opacity: 1;
}
.portfolio-card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
/**********************
Freelancer Details End  
***********************/

/*******************
Job Details  
********************/
.job-posts-container {
  padding: 40px;
  border-radius: 10px;
}
.job-post-details {
  border-top: 1px solid #edebe7;
}
.company-icon {
  width: 128px;
  height: 128px;
  background-color: var(--green-300);
  border-radius: 5px;
}
.job-type {
  color: var(--dark-200);
  font-size: 14px;
}
.job-type span {
  color: var(--dark-300);
  font-size: 14px;
}
.job-post-title {
  font-size: 24px;
  color: var(--dark-300);
  line-height: 26px;
}
.job-company {
  font-size: 16px;
  color: var(--dark-300);
}
.job-post-date,
.job-location {
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.job-post-date {
  background-color: #e3ffdf;
  color: var(--lime-300);
}
.job-location {
  background-color: #edebe7;
  color: var(--green-300);
}
.job-wage {
  font-size: 24px;
  color: var(--dark-300);
}
.job-description-title {
  font-size: 18px;
  color: var(--dark-300);
  margin-bottom: 10px;
}
.job-desc {
  color: var(--dark-200);
  font-size: 16px;
  line-height: 26px;
}

/* Job Modal */

.company-profile-card {
  padding: 30px;
  border-radius: 10px;
}
.company-profile-card-header {
  padding-bottom: 30px;
  border-bottom: 1px solid #edebe7;
}
.company-profile-card-icon {
  width: 78px;
  height: 78px;
  background-color: var(--green-300);
  border-radius: 10px;
}
.company-profile-card-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.company-card-list li {
  border-bottom: 1px solid var(--dark-50);
}
.company-card-list li:last-child {
  border-bottom: none;
}
.proposal-container {
  padding: 0 0 30px 0;
  border-bottom: 1px solid var(--dark-50);
}
.proposal-header {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--dark-50);
}
.proposal-input-container .proposal-form-label {
  color: var(--dark-300);
  margin-bottom: 10px;
  display: block;
}

.proposal-input-container .form-select,
.proposal-input-container .form-control {
  border: 1px solid var(--dark-50);
  border-radius: 50px;
  padding: 16px 30px;
  height: 56px;
}

.proposal-input-container .form-textarea {
  border: 1px solid var(--dark-50);
  border-radius: 30px;
  padding: 16px 30px;
  height: 156px;
  width: 100%;
  resize: none;
}
.file-input__input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.file-input__label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  font-size: 14px;
  color: #fff;
  font-size: 14px;
  padding: 34px 40px;
  border-radius: 50px;
  border: 1px dashed #c9c9c9;
  background: #f7f5f0;
  justify-content: center;
  width: 100%;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
}

/* Job Modal End */
/* .content-details h3,
h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark-300);
  font-weight: 600;
} */

/* .content-details ul,
li,
p,
a,
span {
  font-size: 16px;
  line-height: 26px;
  color: var(--dark-200);
} */
.content-details p {
  margin-bottom: 20px;
}
.content-details p:last-of-type {
  margin-bottom: 0;
}
.content-details ul li {
  list-style-type: disc;
  list-style-position: inside;
}

/*******************
Job Details End  
********************/

/* Latest Features */

.feature-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  min-height: 250px;
}
.feature-card-title {
  margin-top: 30px;
  font-size: 24px;
  white-space: wrap;
}

/* About Company */
.about-desc {
  font-size: 16px;
  color: var(--dark-200);
}
.about-list {
  column-gap: 40px;
  border-bottom: 1px solid rgba(0, 35, 90, 0.15);
}
.about-list-item {
  color: var(--dark-200);
}
.ceo-avatar {
  width: 60px;
  height: 60px;
}
.about-img-group li img {
  border: 10px solid white;
  border-radius: 16px;
}
.about-img-group li:nth-child(1) {
  top: 0;
  left: 0;
}
.about-img-group li:nth-child(2) {
  bottom: 0;
  left: 10%;
  top: 65%;
}

/*******************
Feature Tab Start 
********************/

.feature-tab {
  padding: 30px;
  border-radius: 10px;
}

.feature-tab.active {
  background-color: var(--off-white);
}
.feature-tab.feature-tab-two.active {
  background-color: var(--white);
}
.feature-tab-img-one {
  top: 22%;
  right: 0;
}
.feature-tab-img-two {
  left: -6%;
  top: 50%;
}
/*******************
Feature Tab End 
********************/

/*******************
Accordion Start 
********************/
.faq-accordions .accordion .accordion-item {
  background-color: var(--white);
  border: 0;
  margin-bottom: 20px;
  border-radius: 5px;
}
.faq-accordions .accordion .accordion-item .accordion-button {
  font-size: 18px;
  font-weight: 600;
  border-radius: 5px;
  padding: 20px 30px;
}
.faq-accordions .accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--lime-300);
  background-color: white;
}
.accordion-body {
  border-top: 1px solid #ededed;
  padding: 20px 30px;
}
.accordion-body p {
  columns: var(--dark-100);
  line-height: 26px;
}
/*******************
Accordion End
********************/

/*******************
About Pages End  
********************/

/*******************
Blog Page Start 
********************/
.blog-card {
  border-radius: 10px;
  background-color: transparent;
  transition: all 0.4s ease;
}
.blog-card:hover {
  background-color: var(--white);
}

.blog-thumb {
  border-radius: 10px;
}
.blog-date {
  background-color: var(--lime-300);
  border-radius: 30px;
  line-height: 1;
  font-size: 16px;
  color: var(--white);
  padding: 6px 12px;
  bottom: 8px;
  right: 8px;
}
.blog-meta {
  padding: 30px 20px;
}
.blog-title a {
  font-size: 24px;
  line-height: 1.3;
  color: var(--dark-300);
  position: relative;
  background-image: linear-gradient(#000000, #000000),
    linear-gradient(#ffffff, #ffffff);
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: all 0.5s;
}
.blog-title a:hover {
  background-size: 100% 1px;
}
.blog-link:hover {
  color: var(--lime-300);
}

.pagination-link {
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--dark-50);
  color: var(--dark-200);
}
.pagination-link:hover {
  background-color: var(--lime-300);
  color: var(--white);
  border: transparent;
}
.pagination-link.active {
  background-color: var(--lime-300);
  border: transparent;
  color: var(--white);
}
.pagination-item:first-child span,
.pagination-item:last-child span {
  border: none;
}
/* Blog Details */
.blog-details-title {
  font-size: 40px;
}
.blog-highlight {
  background-color: var(--green-300);
  padding: 30px 40px;
  border-radius: 6px;
}
.blog-highlight svg {
  position: absolute;
  left: 20px;
  top: 20px;
}
.blog-highlight p {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: var(--white);
}
.blog-tags-wrapper {
  padding: 20px 0;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
.blog-tags-wrapper .blog-tag {
  color: var(--dark-200);
  font-size: 16px;
}
.blog-tags-wrapper .blog-tag:hover {
  color: var(--lime-300);
}

/* Social Links */
.social-links a {
  color: var(--dark-200);
}
.social-links a:hover {
  color: var(--lime-300);
}

.blog-single-comment {
  border-radius: 10px;
  padding: 40px;
}

.comment-reply-btn {
  color: var(--lime-300);
}
.comment-reply {
  border-top: 1px solid var(--dark-50);
}
/* Comment Form */
.comment-form {
  padding: 40px;
  border-radius: 10px;
}

.comment-form-input .form-control {
  border-radius: 30px;
  padding: 14px 28px;
  border: 1px solid #ededed;
  color: var(--dark-300);
}
.comment-form-input .form-control::placeholder {
  color: #b1b1b1;
}
.comment-form-input .form-control.form-textarea {
  border-radius: 20px;
  height: 110px;
  resize: none;
}
.comment-form-btn {
  background-color: var(--lime-300);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 30px;
  line-height: 1;
  text-align: center;
}

/*******************
Blog Page End 
********************/

/**********************
Subscription Plan Start
***********************/

.price-tabs .price-tab-link {
  background-color: var(--white);
  color: var(--dark-200);
  padding: 12px 24px;
}
.price-tabs .price-tab-link.active {
  background-color: var(--lime-300);
  color: var(--white);
}
.plan-table {
  border-radius: 10px;
  padding: 30px;
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  position: relative;
}
.plan-table:hover {
  border-color: var(--lime-300);
}
.plan-header {
  padding: 16px 24px;
  border-radius: 8px;
}
.plan-footer-btn {
  background-color: transparent;
  padding: 16px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #a1a1aa;
  font-family: var(--main-font-family);
  font-size: 18px;
  width: 100%;
}
.plan-footer-btn:hover {
  background-color: var(--lime-300);
  color: var(--white);
}
.popular-plan {
  background-color: var(--lime-300);
  position: absolute;
  display: inline-block;
  top: 11px;
  right: -38px;
  transform: rotate(45deg);
  padding: 10px 30px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--main-font-family);
}

/**********************
Subscription Plan End  
**********************/

/*******************
Job Post
********************/
.job-post-input {
  padding: 0 16px;
  border-right: 1px solid var(--dark-100);
}
.job-post-filter {
  gap: 10px;
  border-radius: 50px;
}
.job-post-input .form-control,
.job-post-input .form-select {
  border: none;
}
.job-filter-btn {
  padding: 16px 30px;
  border-radius: 30px;
  height: 48px;
  color: var(--white);
  background-color: var(--lime-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.tab-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--green-300);
  color: var(--white);
}
.tab-link.active {
  background-color: var(--lime-300);
  color: var(--white);
}

/*******************
Job Post End  
********************/

/*******************
Contact Page
********************/
.contact-widget-item .contact-widget-title {
  color: var(--dark-300);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-widget-item .contact-widget-info {
  color: var(--dark-200);
  font-size: 18px;
  line-height: 28px;
}
.contact-form-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-300);
}
.contact-form-desc {
  color: var(--dark-200);
  font-size: 16px;
  line-height: 26px;
}
.contact-form-input .form-control {
  background-color: var(--white);
  border-radius: 50px;
  border: 1px solid transparent;
  padding: 16px 30px;
  height: 56px;
}
.contact-form-input .form-textarea {
  background-color: var(--white);
  border-radius: 30px;
  border: 1px solid transparent;
  padding: 16px 30px;
  height: 156px;
  width: 100%;
  resize: none;
}
.w-form-btn-inline {
  display: inline-block;
  background-color: var(--lime-300);
  border-radius: 30px;
  color: var(--white);
  padding: 14px 28px;
}
.contact-map {
  border-radius: 30px;
  width: 100%;
}
.contact-map iframe {
  filter: grayscale(100%) invert(92%) contrast(83%);
}
.contact-social-links a {
  color: var(--dark-300);
}
.contact-social-links a:hover {
  color: var(--lime-300);
}
/*******************
Contact Page End  
********************/

/*******************
Login Pages Start  
********************/

.form-input .form-label {
  font-size: 18px;
  margin-bottom: 10px;
}
.form-input .form-control,
.form-input .form-select {
  border-radius: 50px;
  border: 1px solid #edebe7;
  padding: 16px 30px;
  height: 56px;
}
.form-input .form-control::placeholder {
  color: #b1b1b1;
}
.form-input .form-check-label {
  color: var(--dark-200);
}
.form-forget-pass {
  color: var(--lime-300);
}
.form-divider {
  border-bottom: 1px solid #edebe7;
}
.w-form-btn {
  width: 100%;
  border-radius: 30px;
  background-color: var(--lime-300);
  color: var(--white);
  padding: 14px 20px;
  display: block;
  text-align: center;
}
.w-form-btn-outline {
  width: 100%;
  border-radius: 30px;
  background-color: transparent;
  color: var(--dark-300);
  border: 1px solid var(--lime-300);
  padding: 14px 20px;
  display: block;
  text-align: center;
}
.form-divider-text {
  background: var(--white);
  position: absolute;
  color: #06131c;
  width: 30px;
  padding: 4px;
}
.social-login .social-login-item {
  background-color: #f7f5f0;
  width: 70px;
  height: 70px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  color: #06131c;
}
.social-login .social-login-item:hover {
  background-color: var(--green-300);
  color: var(--white);
}
.form-text a {
  color: var(--dark-200);
}
.form-text a {
  color: var(--dark-300);
}
/*******************
Login Pages End  
********************/

/*******************
Dashboard CSS Start
********************/
.dashboard-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  z-index: 20;
  top: 0;
  background-color: var(--white);
  overflow-y: scroll;
  height: calc(100vh - 80px);
  scrollbar-width: none;
}

.sidebar-nav-link {
  display: flex;
  padding: 15px 30px;
  border-radius: 5px;
  gap: 16px;
  font-size: 18px;
  align-items: center;
  color: var(--dark-200);
  font-size: 16px;
}
    .sidebar-nav-link.active {
        background-color: #1a9a94;
        color: var(--white);
    }
.sidebar-nav-link svg {
  color: #1a9a94;
}
.sidebar-nav-link.active svg {
  color: var(--white);
}
.dashboard-main {
  background-color: var(--off-white);
  padding: 30px;
  margin-left: 300px;
}
.dashboard-widget-title {
  font-size: 40px;
}
.dashboard-widget-icon {
  background-color: var(--green-300);
  border-radius: 8px;
  padding: 20px;
}
.dashboard-table {
  border-collapse: separate;
  border-spacing: 0 10px;
}
    .dashboard-table > thead > tr > th {
        background-color: #1a9a94;
        font-weight: 600;
        font-size: 16px;
        color: var(--dark-300);
        padding: 20px 10px;
        white-space: nowrap;
        font-family: var(--main-font-family);
    }
.dashboard-table.job-table > thead > tr > th {
  padding: 20px 25px;
}
.dashboard-table.applicant-table > thead > tr > th,
.dashboard-table.subscription-table > thead > tr > th,
.dashboard-table.withdraw-table > thead > tr > th {
  padding: 20px 35px;
}
.dashboard-table > thead > tr > th:first-of-type {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.dashboard-table > thead > tr > th:last-of-type {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.dashboard-table tbody {
  background-color: var(--white);
  border-radius: 10px;
}
.dashboard-table tbody tr {
  border-bottom: 1px solid var(--dark-50);
}
.dashboard-table tbody tr td {
  padding: 10px;
  white-space: normal;
}
.dashboard-table.applicant-table tbody tr td {
  padding: 10px 35px;
}
.dashboard-table.subscription-table tbody tr td,
.dashboard-table.withdraw-table tbody tr td {
  padding: 20px 35px;
}
.dashboard-table tbody tr td:first-of-type {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.dashboard-table tbody tr td:last-of-type {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.project-name img {
  background-color: var(--green-300);
  width: 60px;
  height: 60px;
  border-radius: 10px;
}
.order-category li {
  font-size: 14px;
}
.applicant-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e2ffde;
  border-radius: 30px;
  color: var(--dark-200);
}
.applicant-link:hover {
  background-color: #e0fddc;
  color: #22be0d;
}
.project-link {
  color: var(--dark-200);
}
.project-link:hover {
  text-decoration: underline;
  color: var(--dark-300);
}
/* Dashboard Header */
.dashboard-header {
  margin-left: 280px;
}
.dashboard-header-btns .dashboard-header-btn {
  position: relative;
  background-color: var(--off-white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  align-self: center;
}

.header-btn-badge {
    position: absolute;
    width: 22px;
    height: 22px;
    font-size: 14px;
    border-radius: 50%;
    color: var(--white);
    background-color: #1a9a94;
    top: 0;
}
.dashboard-profile .dashboard-profile-item.dropdown-item {
  color: var(--dark-200);
  padding: 10px;
}
.dashboard-profile .dashboard-profile-item.dropdown-item:hover {
  background-color: var(--off-white);
}

.dashboard-header-btn.dropdown-toggle::after {
  display: none;
}
.dashboard-notification {
  width: 300px;
}
.notification-bell {
  background-color: var(--off-white);
  width: 44px;
  height: 44px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s;
}
.notification-item.dropdown-item {
  padding: 10px;
  cursor: pointer;
}
.notification-item.dropdown-item:hover {
  background-color: var(--off-white);
}
.notification-item.dropdown-item:hover .notification-bell {
  background-color: var(--white);
}
.see-notification-btn {
  background-color: var(--lime-300);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 5px;
  width: 100%;
  transition: all 0.3s;
}
.see-notification-btn:hover {
  opacity: 0.8;
}
.offcanvas-backdrop {
  width: 100%;
  height: 100%;
}
.offcanvas-body {
  z-index: 20;
}
.offcanvas-body .btn-close {
  background-color: var(--dark-50);
  position: absolute;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
/* Create Gigs */

.gig-title-switch .form-check-input {
  background-color: transparent;
}
.gig-status .form-check-input:checked,
.gig-title-switch .form-check-input:checked {
  background-color: var(--lime-300);
  border-color: var(--lime-300);
}
.gig-info-header,
.profile-info-header {
    padding: 20px 30px;
    background-color: #1a9a94;
    border-radius: 8px 8px 0 0;
}
.profile-info-body,
.gig-info-body {
  padding: 20px 30px 30px;
  border-radius: 0 0 8px 8px;
}

/* Manage Gig */
.gig-edit-btn {
  background-color: var(--blue-300);
  border-radius: 30px;
  padding: 10px 18px;
  line-height: 1;
  color: var(--white);
  font-size: 14px;
}
/* Quill */
.w-editor-wrapper {
  border: 1px solid var(--dark-50);
  border-radius: 30px;
  padding: 20px;
  width: 100%;
}
.w-editor-wrapper .ql-toolbar.ql-snow {
  background-color: var(--dark-50);
  border: 0;
  border-radius: 30px;
}
.w-editor-wrapper .ql-container.ql-snow {
  border: 0;
}
.w-editor-wrapper .ql-editor {
  padding: 12px 0;
  height: 150px;
}

/* Price */
.price-pack-wrapper {
  border: 1px solid var(--dark-50);
  border-radius: 4px;
}

.pricing-pack-name {
  /* margin: 10px; */
  border-radius: 5px;
  padding: 10px;
  display: block;
  background-color: var(--dark-50);
}
.pack-description textarea {
  resize: none;
}
.pack-description textarea:focus {
  border: none;
}
.gig-file-upload {
  width: 130px;
  height: 130px;
  border-radius: 6px;
  padding: 8px;
  font-size: 14px;
}

.gig-media-thumb {
  border-radius: 6px;
  border: 1px solid var(--dark-50);
  width: 130px;
  height: 130px;
  object-fit: cover;
}

.gig-img-delete-btn {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ff3838;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  top: 12px;
  right: 12px;
}
/* Dashboard Action */
.dashboard-action-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--dark-50);
  border-radius: 50%;
}
.dashboard-action-btn.dropdown-toggle::before {
  display: none;
}
.dropdown-menu.table-dropdown {
  background-color: #dcdcdc;
  border-radius: 8px;
  border: 0;
  min-width: 80px;
}
.dropdown-menu.table-dropdown .dropdown-item {
  color: #5b5b5b;
  font-size: 14px;
}
.dropdown-menu.table-dropdown .dropdown-item:hover {
  color: var(--lime-300);
  background: none;
}
/* Dashboard Badge */
.status-badge {
  padding: 8px 16px;
  line-height: 1;
  border-radius: 30px;

  font-size: 16px;
  display: inline-block;
  white-space: nowrap;
}
.status-badge.pending {
  background-color: #fff0e2;
}
.status-badge.in-progress {
  background-color: #e2ffde;
  color: var(--dark-200);
}
.status-badge.canceled {
  background-color: #ffe2e2;
  color: var(--dark-200);
}
.status-badge.active {
  color: #22be0d;
  background-color: #ddffe6;
}
.status-badge.expired {
  color: #4b83fc;
  background-color: #eaf0ff;
}
.status-badge.in-active {
  color: #ff3838;
  background-color: #fde1e1;
}
/* Dashboard Tab */
.dashboard-tab-btn {
  background-color: var(--white);
  border-radius: 30px;
  padding: 16px 32px;
  color: var(--dark-200);
  font-size: 18px;
  line-height: 1;
}
    .dashboard-tab-btn.active {
        background-color: #1a9a94;
        color: var(--white);
    }
/* Profile Settings */
.form-container {
  position: relative;
}

.form-container .form-label {
  font-size: 18px;
  color: var(--dark-300);
  line-height: 18px;
  margin-bottom: 10px;
}
.form-container .form-control {
  border: 1px solid #edebe7;
  border-radius: 30px;
  padding: 16px;
  height: 52px;
}
.form-container .form-control::placeholder {
  color: #b1b1b1;
}
.form-container .form-select {
  border: 1px solid #edebe7;
  border-radius: 30px;
  font-size: 16px;
  height: 52px;
  padding: 0 16px;
}
.form-container .form-control.form-textarea {
  height: 120px;
  resize: none;
}
.skill-cloud {
  border-radius: 30px;
  padding: 20px;
  border: 1px solid var(--dark-50);
}
.skill-cloud-item {
  background-color: #f8f8f8;
  padding: 12px 16px;
  border-radius: 30px;
  border: 1px solid #ededed;
  line-height: 1;
  font-size: 14px;
}
/* Message */
.message-sidebar-header {
  padding: 20px;
}
.message-search .form-control {
  height: 44px;
  padding: 12px 12px 12px 40px;
  background-color: #f3f9ff;
  border: 0;
}
.message-search-icon {
  left: 16px;
}
.message-person {
  border-top: 1px solid var(--dark-50);
  transition: all 0.3s ease;
  cursor: pointer;
}
.message-person:hover {
  background-color: #f3f3f3;
}
.conversation-text li:nth-child(odd) {
  justify-content: end;
}
.conversation-text li:nth-child(even) {
  justify-content: start;
}
.conversation-text li:nth-child(even) p {
  background-color: #f9fafb;
}

.msg-write-input .form-control {
  height: 50px;
  padding-left: 30px;
}
.msg-send-btn {
    background-color: #1a9a94;
    padding: 16px 28px;
    border-radius: 30px;
    color: var(--white);
    height: 50px;
    line-height: 1;
}

.input-icon-end {
  right: 16px;
}
/*******************
Dashboard CSS End 
********************/

/*******************
Footer  
********************/
/* Newsletter */
.footer-newsletter {
  border-bottom: 1px solid #2c4253;
}
.footer-newsletter-desc {
  font-size: 14px;
  color: #fff3ed;
}
.footer-newsletter-form {
  border: 1px solid #2c4253;
  border-radius: 50px;
  padding: 10px;
  gap: 20px;
}
.footer-newsletter-form .form-control {
  background-color: #22323f;
  border-radius: 50px;
  border: 1px solid #22323f;
  padding: 18px 30px;
  color: var(--white);
}
.footer-newsletter-form .form-control:focus {
  border: 1px solid #22be0d;
}
.footer-newsletter-form .form-control::placeholder {
  color: #5e7080;
}
.footer-newsletter-btn {
  background-color: var(--lime-300);
  color: var(--white);
  padding: 18px 30px;
  font-size: 18px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease-in-out;
}
.footer-newsletter-btn:hover {
  background-color: var(--green-300);
}

/* Footer Widgets */
.footer-info-widget-item {
  color: var(--dark-100);
  font-size: 16px;
}
.footer-widget-title {
  color: var(--white);
  font-size: 24px;
}
.footer-nav-list .footer-nav-list-item .footer-nav-link {
  font-size: 18px;
  color: var(--dark-100);
  transition: all 0.3s ease-in-out;
}
.footer-nav-list .footer-nav-list-item .footer-nav-link:hover {
  color: var(--lime-300);
}
.footer-nav-list .footer-nav-list-item .footer-nav-link svg {
  transition: all 0.3s ease-in-out;
}
.footer-nav-list .footer-nav-list-item .footer-nav-link:hover svg {
  transform: rotate(-20deg);
}
/* Footer Copyright */
.footer-copyright {
    background-color: rgba(24, 115, 178, 0.8);
}
.footer-social-link {
  color: #5b7081;
}
.footer-social-link:hover {
  color: var(--white);
}
/*******************
Footer   End
********************/
/* Logo */
/* Logo */
/* Logo */
.logo-green {
    height: 40px;
}

/* Icons */
.icon-link {
    font-size: 20px;
    color: #1a9a94;
    margin-left: 12px;
}

    .icon-link:hover {
        color: #14807a;
    }

/* Cart Dropdown */
/* ======================
   UNIVERSAL DROPDOWN BOX
   ====================== */
.cart-dropdown {
    position: absolute;
    top: 50px; /* aligned below icons */
    right: 0; /* right-aligned to icon */
    min-width: 240px;
    max-width: 320px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    z-index: 9999;
    max-height: 400px;
    overflow-y: auto;
    padding: 12px;
    font-size: 14px;
}

/* Wrapper ensures dropdown attaches correctly */
.header-icons {
    position: relative;
}

/* ======================
   CART DROPDOWN SPECIFIC
   ====================== */
.cart-dropdown.cart {
    background: #fff8f0; /* soft peach for cart */
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #eee;
}

    .cart-item img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
        margin-right: 10px;
    }

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

    .cart-item-details h4 {
        margin: 0;
        font-size: 15px;
        color: #333;
    }

    .cart-item-details small {
        color: #777;
    }

.cart-item-price {
    font-weight: bold;
    color: #1a9a94;
}

.remove-btn {
    background: transparent;
    border: none;
    color: #e63946;
    font-size: 16px;
    cursor: pointer;
    margin-left: 8px;
}

    .remove-btn:hover {
        color: #c1121f;
    }

.cart-footer {
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.cart-total {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.btn-continue {
    width: 100%;
    background: #f7941d;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

    .btn-continue:hover {
        background: #e98310;
    }

/* ======================
   NOTIFICATION DROPDOWN
   ====================== */
.cart-dropdown.notif {
    background: #f0f8ff; /* light blue */
}

    .cart-dropdown.notif .cart-items {
        color: #333;
    }

        .cart-dropdown.notif .cart-items p {
            margin: 0;
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }

/* ======================
   PROFILE DROPDOWN
   ====================== */
.cart-dropdown.profile {
    background: #f9f9f9;
}

    .cart-dropdown.profile a {
        display: block;
        padding: 8px 10px;
        text-decoration: none;
        color: #333;
        border-radius: 6px;
    }

        .cart-dropdown.profile a:hover {
            background: #f0f0f0;
            color: #1a9a94;
        }
/* ======================
   COMMON DROPDOWN STYLE
   ====================== */
.cart-dropdown {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    width: 260px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    padding: 14px;
    z-index: 1000;
}

    .cart-dropdown .cart-items {
        max-height: 220px;
        overflow-y: auto;
    }

    /* ======================
 /* ======================
   WALLET DROPDOWN
   ====================== */
    .cart-dropdown.wallet {
        display: none;
        position: absolute;
        top: 45px;
        right: 0;
        width: 300px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        padding: 0;
        overflow: hidden;
        font-family: 'Poppins', sans-serif;
    }

/* Header section with teal + owl */
.wallet-header {
    position: relative;
    background: #1a9a94;
    padding: 20px;
    color: #fff;
}

.wallet-balance-card {
    background: #f97316; /* orange */
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    margin-bottom: 10px;
}

    .wallet-balance-card .balance-amount {
        display: block;
        font-size: 22px;
        font-weight: 700;
        color: #fff;
    }

    .wallet-balance-card .btn-add {
        margin-top: 6px;
        background: #fff;
        color: #1a9a94;
        border: none;
        padding: 6px 12px;
        border-radius: 20px;
        font-weight: 600;
        cursor: pointer;
    }

.wallet-owl {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 60px;
}

/* Transactions + Promo sections */
.wallet-section {
    padding: 20px;
}

    .wallet-section h5 {
        margin-bottom: 10px;
        font-size: 14px;
        font-weight: 600;
        color: #444;
    }

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

    .wallet-list li {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
        font-size: 14px;
    }

        .wallet-list li:last-child {
            border-bottom: none;
        }

    .wallet-list .positive {
        color: #16a34a;
        font-weight: 600;
    }

    .wallet-list .negative {
        color: #dc2626;
        font-weight: 600;
    }

/* Promo section */
.wallet-section.promo {
    background: #fff8e1;
    border-top: 1px solid #eee;
    text-align: center;
}

.promo-card {
    background: #ffebc8;
    border-radius: 12px;
    padding: 12px;
    color: #333;
}

    .promo-card strong {
        font-size: 16px;
        color: #f97316;
    }


    /* ======================
   NOTIFICATION DROPDOWN
   ====================== */
/* ======================
   NOTIFICATION DROPDOWN
   ====================== */
.cart-dropdown.notif {
    display: none;
    position: absolute;
    top: 45px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Header with owl + speech bubble */
.notif-header {
    position: relative;
    background: #1a9a94;
    padding: 30px 20px 40px;
    text-align: center;
}


.notif-headerw {
    background: #1a9a94;
    padding: 16px;
    text-align: center;
    position: relative; /* enable z-index */
    border-radius: 12px 12px 0 0;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    z-index: 1; /* behind wallet-box */
    height:70px;
}

.notif-owl {
    position: absolute;
    bottom: -25px;
    left: 20px;
    width: 60px;
}

.speech-bubble {
    display: inline-block;
    background: #fff;
    color: #333;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Notification List */
.notif-list {
    padding: 20px;
}

.notif-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    .notif-item:last-child {
        margin-bottom: 0;
    }

.notif-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #fff;
    font-size: 18px;
}

    .notif-icon.bg-green {
        background: #16a34a;
    }

    .notif-icon.bg-orange {
        background: #f97316;
    }

    .notif-icon.bg-yellow {
        background: #facc15;
        color: #333;
    }

    .notif-icon.bg-blue {
        background: #3b82f6;
    }

.notif-content p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.notif-content small {
    font-size: 12px;
    color: #777;
}


    /* ======================
   PROFILE DROPDOWN
   ====================== */
    .cart-dropdown.profile .profile-info {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }

        .cart-dropdown.profile .profile-info img.profile-photo {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

    .cart-dropdown.profile a {
        display: block;
        padding: 8px 0;
        color: #1a9a94;
        font-weight: 500;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
    }

        .cart-dropdown.profile a:last-child {
            border-bottom: none;
        }

        .cart-dropdown.profile a:hover {
            color: #f9a825;
        }

    /* ======================
   CART DROPDOWN
   ====================== */
    .cart-dropdown.cart .cart-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
    }

        .cart-dropdown.cart .cart-item img {
            width: 40px;
            height: 40px;
            border-radius: 6px;
            margin-right: 10px;
        }

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

        .cart-dropdown.cart .cart-item-details h4 {
            margin: 0;
            font-size: 15px;
            font-weight: 600;
        }

        .cart-dropdown.cart .cart-item-details small {
            color: #888;
        }

    .cart-dropdown.cart .cart-item-price {
        font-weight: 600;
        color: #1a9a94;
        margin-left: 10px;
    }

    .cart-dropdown.cart .remove-btn {
        background: transparent;
        border: none;
        font-size: 16px;
        color: #e63946;
        cursor: pointer;
        margin-left: 6px;
    }

    .cart-dropdown.cart .cart-footer {
        border-top: 1px solid #eee;
        padding-top: 10px;
        text-align: right;
    }

    .cart-dropdown.cart .btn-continue {
        background: #f9a825;
        color: #fff;
        padding: 8px 14px;
        border: none;
        border-radius: 8px;
        margin-top: 10px;
        cursor: pointer;
        font-weight: 600;
    }

        .cart-dropdown.cart .btn-continue:hover {
            background: #e38f10;
        }

/* ======================
   BADGE STYLE
   ====================== */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #e63946;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}
.profile-photo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name {
    font-size: 13px;
    margin-left: 6px;
    color: #333;
    font-weight: 500;
}
/* Notification Dropdown */
.cart-dropdown.notif {
    width: 340px;
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    background: #fff;
    padding: 0;
    font-family: "Poppins", sans-serif;
   
    max-height: 400px; /* set height limit */
    overflow-y: auto; /* enable vertical scroll */
    overflow-x: hidden; /* no horizontal scroll */
    z-index:10000;
}

/* ================================
   HEADER (Owl + Bubble)
================================ */
/* ================================
   HEADER (Owl + Bubble)
================================ */
.notif-header {
    background: #1a9a94;
    padding: 20px 16px;
    text-align: center;
    position: relative;
    border-radius: 12px 12px 0 0;
}

.notif-owl {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
}

/* Bubble */
.notif-bubble {
    top:30px;
    background: #fff;
    display: inline-block;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 13px;
    color: #333;
    left:   0px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    max-width: 150px;
    word-wrap: break-word;
    position: relative; /* for tail */
 
}

/* Rounded speech tail */
.notif-bubble::after {
    content: "";
    position: absolute;
    left: -10px;               /* sticks out from left edge */
    top: 50%;                  /* vertically centered */
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: -2px 2px 4px rgba(0,0,0,0.05);
}

/* Overlay to smooth connection */
.notif-bubble::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #fff;
}

/* ================================
   BODY SECTION
================================ */
.notif-body {
    padding: 16px;
}

.notif-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.notif-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.notif-offers {
    font-size: 14px;
    font-weight: 600;
    color: #ff6b35;
    cursor: pointer;
    transition: color 0.2s;
}

.notif-offers:hover {
    color: #e85c28;
}

/* ================================
   NOTIFICATION ITEMS
================================ */
.notif-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notif-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    border-radius: 14px;
    padding: 12px;
    transition: background 0.2s;
}

.notif-item:hover {
    background: #eefdfd;
}

.notif-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.notif-content {
    flex: 1;
}

.notif-content p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.notif-content small {
    font-size: 12px;
    color: #666;
}

.notif-item .status-dot {
    width: 10px;
    height: 10px;
    background: #ff6b35;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ================================
   NOTIFICATION BOX (Owl + Speech)
================================ */
.notification-box {
    position: relative;
    display: flex;
    align-items: flex-end;
    background: #1a9a94; /* teal background */
    border-radius: 12px;
    padding: 20px;
    width: 320px;
    height: 160px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

.owl-icon {
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 90px;
    height: auto;
}

/* Main bubble */
.speech-bubble {
    position: absolute;
    top: 20px; /* closer to header */
    left: 190px; /* shifted slightly right */
    background: #fff;
    color: #333;
    padding: 16px 28px;
    border-radius: 40px; /* more oval */
    font-size: 14px;
    min-width: 150px; /* wider for text */
    min-height: 65px; /* oval height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    line-height: 1.3;
    word-wrap: break-word;
}
    /* Tail */
    .speech-bubble::after {
        content: "";
        position: absolute;
        left: -14px; /* overlaps toward owl */
        top: 60%; /* lower, aligned with owl’s beak/wing */
        transform: translateY(-50%);
        width: 22px;
        height: 22px;
        background: #fff;
        border-radius: 50%;
        box-shadow: -2px 2px 4px rgba(0,0,0,0.05);
    }


    .speech-bubble::before {
        content: "";
        position: absolute;
        left: -6px;
        top: 60%;
        transform: translateY(-50%);
        width: 14px;
        height: 14px;
        background: #fff;
    }

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 400px) {
    .notification-box

{
    width: 100%;
    height: auto;
    min-height: 160px;
}

.speech-bubble {
    left: 90px;
    min-width: 120px;
    min-height: 55px;
    font-size: 12px;
    padding: 12px 18px;
    border-radius: 30px; /* keep oval on small screens */
}
}
/* Wallet Search Box */
.wallet-search {
   
    
  
}
/* Wallet Orange Box - floating overlap */
.wallet-box {
    background: #ff7f2a;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 280px;
    margin: -30px auto 16px; /* negative margin creates overlap */
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    position: relative; /* enable z-index */
    z-index: 2; /* in front of header */
    height:100px;
}
    /* Balance Text */
    .wallet-box .balance-label {
        font-size: 14px;
        font-weight: 500;
        margin-top:-20px;
        display: block;
    }

    /* Balance Amount */
    .wallet-box .balance-amount {
        font-size: 16px;
        font-weight: 700;
       
        display: block;
    }

    /* Add Funds Button */
    .wallet-box .btn-add-funds {
        background: #1a9a94; /* teal (brand color) */
        border: none;
        border-radius: 12px;
        padding: 10px 20px;
        color: #fff;
        margin-top:5px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s ease-in-out;
    
    }

        .wallet-box .btn-add-funds:hover {
            background: #157c77; /* darker teal */
        }

    .wallet-search input {
        width: 100%;
        padding: 10px 14px;
        border-radius: 30px;
        border: 1px solid #ddd;
        font-size: 14px;
        font-family: "Poppins", sans-serif;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        .wallet-search input:focus {
            border-color: #1a9a94; /* teal border on focus */
            box-shadow: 0 0 4px rgba(26, 154, 148, 0.3);
        }

