:root {
  --font-hand: "Just Another Hand", cursive;
  --font-jost: "Jost", sans-serif;
  --font-roboto: "Roboto", sans-serif;
  --primar-clr: linear-gradient(90deg, #9DB837 0%, #406B37 100%);
  --black: #000;
  --white: #fff;
  --secondary-clr: #406B37;

}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  background: #F6F6F6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.2;
}

p {
  line-height: 1.6;
  margin-bottom: 0;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

a:hover {
  text-decoration: none;
  transition: all 0.6s ease-in-out;
}

img {
  width: 100%;
}

.container {
  max-width: 1440px !important;
}

.loader-wrap {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  z-index: 9;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  top: 0;
  left: 0;
}

/* Common */
.btn-main {
  padding: 20px 32px;
  border-radius: 4px;
  font: 700 12px/1 var(--font-jost);
  text-transform: uppercase;
  color: var(--white);
  background: var(--primar-clr);
  display: inline-block;
  border: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-main:hover {
  background: linear-gradient(90deg, #8aa130 0%, #355c2f 100%);
  color: var(--white);
}


.btn-main i {
  font-size: 12px;
  margin-right: 6px;
}

.fliter-card .btn-main {
  padding: 16px 30px;
}

/*  */
.site-header .navbar {
  padding: 10px 0 !important;
  background-color: var(--white);
}

.site-header .navbar-brand img {
  max-width: 324px;
  height: 60px;
  object-fit: contain;
}

.site-header .navbar-nav {
  display: flex;
  align-items: center;
  gap: 60px;
}

.site-header .navbar-nav li {
  padding: 0;
  margin: 0;
}

.site-header .navbar-nav li a {
  margin: 0;
  padding: 0 !important;
  font: 400 21px/1 var(--font-jost);
  letter-spacing: 0;
  color: #000;
}

.site-header .navbar-nav .dropdown a::after {
  display: none;
}

.site-header .navbar-nav li a:hover {
  background: linear-gradient(90deg, #9DB837 0%, #406B37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-header .dropdown-menu {
  padding: 0 !important;
}

.site-header .dropdown-menu li {
  padding: 10px;
}

.site-header .dropdown-menu li a {
  margin: 0;
  padding: 0 !important;
  font: 400 18px/1 var(--font-jost);
  letter-spacing: 0;
  color: #000;
}

.site-header .dropdown-menu li a:hover {
  color: var(--secondary-clr);
}

/*  */
.hero-section {
  padding: 100px 0;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 816px;
  height: 100vh;
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 95%);


}

.hero-section .text-wrap {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
}

.hero-section .text-wrap span {
  font: 400 30px/1.2 var(--font-hand);
  text-align: center;
  color: var(--white);
  margin: 0 0 16px;
}

.hero-section .text-wrap h1 {
  font: 700 70px/1.2 var(--font-jost);
  text-align: center;
  color: var(--white);
  margin: 0 0 16px;
}

.hero-section .text-wrap p {
  font: 500 30px/1.6 var(--font-roboto);
  letter-spacing: 0;
  text-align: center;
  color: var(--white);
  margin: 0 0 16px;
}

/*  */
.sc-whatis {
  padding: 150px 0 50px;
  position: relative;
}

.sc-whatis::before {
  content: '';
  width: 100%;
  height: 100px;
  background-image: url('../images/shape-divider.png');
  position: absolute;
  top: -100px;
  z-index: 9;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.sc-whatis .row {
  align-items: center;
}

.sc-whatis .sc-whatis-img img {
  aspect-ratio: 690/489;
  object-fit: cover;
}

.sc-whatis-txt span {
  font: 400 33px/1 var(--font-hand);
  letter-spacing: 5%;
  text-transform: uppercase;
  color: var(--secondary-clr);
  margin: 0 0 10px;
}

.sc-whatis-txt h2 {
  font: 700 50px/1.2 var(--font-jost);
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 10px;
}

.sc-whatis-txt p {
  font: 400 18px/27px var(--font-roboto);
  letter-spacing: 0;
  color: var(--black);
  margin: 0 0 10px;
}

.whatis-sc-clip {
  position: absolute;
  object-fit: contain;
  max-width: 139px;
  height: 165px;
  top: -27px;
  left: 12%;
  z-index: 99;
}

/*  */
.sc-forums {
  padding: 50px 0;
}

.sc-forums h2 {
  font: 700 50px/1.2 var(--font-jost);
  text-align: center;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 10px;
}

.sc-forums p {
  font: 400 18px/1.6 var(--font-roboto);
  letter-spacing: 0;
  text-align: center;
  color: var(--black);
  margin: 0 0 30px;
}

.forums-card {
  height: 100%;
  background: var(--white);
}

.forums-card-img img {
  aspect-ratio: 690/337;
  object-fit: cover;
}

.forums-card-text {
  padding: 24px;
}

.forums-card-text h4 {
  font: 700 30px/1.2 var(--font-jost);
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.forums-card-text p {
  font: 400 18px/1.6 var(--font-roboto);
  text-align: start;
  margin: 0;
  color: var(--black);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.sc-forums .row .col-lg-6 {
  margin-bottom: 30px;
}

/*  */
.sc-sponser {
  padding: 50px 0 150px;
}

.sc-sponser h2 {
  font: 700 18px/1.2 var(--font-jost);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 50px;
}


.sc-sponser-ad {
  border: 1px solid #797979;
  background: #F4F4F4;
}

.sc-sponser img {
  aspect-ratio: 1400/250;
  object-fit: cover;
}

/*  */
.sc-joinius {
  background-color: var(--white);
  padding: 150px 0;
}

.sc-joinius span {
  font: 400 33px/1.2 var(--font-hand);
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--secondary-clr);
  text-align: center;
  display: block;
}

.sc-joinius h2 {
  font: 700 50px/1.2 var(--font-jost);
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--black);
  text-align: center;
}

.sc-joinius p {
  font: 400 18px/1.6 var(--font-roboto);
  color: var(--black);
  margin-bottom: 20px;
  text-align: center;
}

.sc-joinius p span {
  font-weight: 600;
}

.joinius-img img {
  aspect-ratio: 700/438;
  object-fit: cover;
}

.sc-joinius .row {
  margin-bottom: 40px;
  align-items: center;
}

.join-card-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.join-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.join-card-img {
  margin-bottom: 10px;
}

.join-card-img img {
  object-fit: contain;
  width: 60px;
  height: 60px;
}

.join-card-text h4 {
  font: 700 22px/1.2 var(--font-jost);
  text-align: center;
  color: var(--secondary-clr);
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.join-card-text p {
  font: 400 18px/1.6 var(--font-roboto);
  text-align: center;
  color: #1A1A1A;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/*  */
.sc-ourmenbers {
  padding: 150px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sc-ourmenbers span {
  font: 400 33px/1.2 var(--font-hand);
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--secondary-clr);
  text-align: center;
  display: block;
}

.sc-ourmenbers h2 {
  font: 700 50px/1.2 var(--font-jost);
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--black);
  text-align: center;
}

.sc-ourmenbers p {
  font: 400 18px/1.6 var(--font-roboto);
  color: var(--black);
  margin-bottom: 10px;
  text-align: center;
}

.sc-ourmenbers .col-lg-6 {
  margin-bottom: 20px;
}

.member-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
}

.member-card-img {
  margin-bottom: 10px;
}

.member-card-img img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.member-card-text h4 {
  font: 700 22px/1.2 var(--font-jost);
  text-align: center;
  color: var(--secondary-clr);
  margin-bottom: 10px;
}

.member-card-text p {
  font: 400 18px/1.6 var(--font-roboto);
  text-align: center;
  margin-bottom: 10px;
}

.menberform .btn-main {
  width: 100%;
  min-height: 90px;
}

.menberform select {
  width: 100%;
  padding: 30px 20px;
  font: 400 21px/1 var(--font-jost);
  border: 1px solid var(--secondary-clr);
  border-radius: 4px;
  min-height: 90px;
  letter-spacing: 0;
}

.sc-corevalue {
  background: var(--primar-clr);
  padding: 100px 0;
}

.sc-corevalue h2 {
  font: 700 50px/1.2 var(--font-jost);
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin-bottom: 10px;
}

.sc-corevalue p {
  font: 400 18px/1.2 var(--font-roboto);
  color: var(--white);
  text-align: center;
  margin-bottom: 20px;
}

.corevalue-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px;
}

.corevalue-img {
  margin-bottom: 10px;
}

.corevalue-img img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.corevalue-text h4 {
  font: 700 22px/1.2 var(--font-jost);
  text-align: center;
  color: var(--white);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.corevalue-text p {
  font: 400 18px/1.6 var(--font-roboto);
  text-align: center;
  color: var(--white);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/*  */
.sc-events {
  padding: 150px 0;
}

.sc-events span {
  font: 400 33px/1.2 var(--font-hand);
  text-transform: uppercase;
  color: var(--secondary-clr);
  margin-bottom: 0px;
  text-align: center;
  display: block;
}

.sc-events h2 {
  font: 700 50px/1.2 var(--font-jost);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 48px;
  text-align: center;
}

.sc-events .nav-tabs {
  border: 0;
  padding: 0;
  margin-bottom: 30px;
}

.sc-events .nav-tabs button {
  padding: 7px 30px;
  border: 0;
  background: none;
  border-radius: 40px;
  font: 700 14px/1 var(--font-roboto);
  text-transform: uppercase;
  color: var(--black);
  transition: all 0.4s ease;
}

.sc-events .nav-tabs button.active,
.sc-events .nav-tabs button:hover {
  background: var(--primar-clr);
  color: var(--white);
}

.sc-sponser-3 h4 {
  font: 700 18px/1.2 var(--font-jost);
  text-align: center;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 32px;
}

.sc-sponser-3 .sc-sponser-ad {
  border: 0;
}

.sc-sponser-3 .sc-sponser-ad img {
  aspect-ratio: 335/391;
  object-fit: cover;
}

.event-card {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 391px;
  aspect-ratio: 335/391;
  position: relative;
  display: flex;
  align-items: end;
  width: 100%;
}

.event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
}

.event-card .badge {
  padding: 4px 15px;
  border-radius: 30px;
  font: 500 12px/1 var(--font-roboto);
  color: var(--white);
  background: var(--secondary-clr);
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}

.eventcard-cn {
  width: 100%;
  background: #FFFFFFE5;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.eventcard-cn {
  display: flex;
  align-items: center;
  gap: 40px;
}

.eventcard-cn p,
.eventcard-cn h4,
.eventcard-cn span {
  font-family: var(--font-jost);
  font-weight: 600;
  color: inherit;
  line-height: 1;
  margin: 0;
}

.eventcard-cn p {
  font: 600 20px/1 var(--font-jost);
  text-transform: uppercase;
  color: var(--secondary-clr);
}

.eventcard-cn h4 {
  font: 700 26px/1.2 var(--font-jost);
  margin-bottom: 6px;
  color: var(--black);
  text-align: start;
}

.eventcard-cn span {
  font: 700 18px/1 var(--font-jost);
  color: #797979;
  text-align: start;
}

.eventcard-cn span i {
  color: var(--secondary-clr);
}


/*  */

.sc-testimonial {
  padding: 120px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.sc-testimonial span {
  font: 400 33px/1.2 var(--font-hand);
  text-transform: uppercase;
  color: var(--secondary-clr);
  margin-bottom: 0px;
  text-align: center;
  display: block;
}

.sc-testimonial h2 {
  font: 700 50px/1.2 var(--font-jost);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 48px;
  text-align: center;
}

.custom-swiper-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.custom-swiper-wrapper .swiper {
  width: 100%;
}

.testimonial-slider .swiper-wrapper {
  display: flex;
  align-items: start;
}

.testimonial-slider .swiper-slide {
  transition: transform 0.6s ease;
  will-change: transform;
  overflow: hidden;
  backface-visibility: hidden;
}

.testimonial-slider .swiper-slide-active {
  transform: scale(1);
  z-index: 2;
}

.testimonial-slider .swiper-slide .video-wrap {
  width: 100%;
  aspect-ratio: 480/700;
}

.testimonial-slider .swiper-slide video,
.testimonial-slider .swiper-slide iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  transform: scale(0.8);
  transition: transform 0.6s ease-in-out;
  backface-visibility: hidden;
}

.testimonial-slider .swiper-slide.swiper-slide-active video,
.testimonial-slider .swiper-slide.swiper-slide-active iframe {
  transform: scale(1);
}

.testimonial-slider .swiper-button-prev,
.testimonial-slider .swiper-button-next {
  font-size: 20px;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #A5A5A587;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slider .swiper-button-prev::after,
.testimonial-slider .swiper-button-next::after {
  display: none;
}

.testimonial-slider .swiper-button-prev {
  left: 10%;
}

.testimonial-slider .swiper-button-next {
  right: 10%;
}

.testimonial-slider .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: unset !important;
  gap: 5px;
  margin-top: 20px;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  color: var(--white) !important;
  margin: 0 !important;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 24px !important;
  background-color: var(--secondary-clr) !important;
  border-radius: 7px !important;
}

/*  */
.sc-faq {
  padding: 150px 0;
  background: var(--white);
}

.sc-faq .faq-wrap span {
  font: 400 33px/1.2 var(--font-hand);
  text-transform: uppercase;
  color: var(--secondary-clr);
  margin-bottom: 48px;
  text-align: center;
  display: block;
}

.sc-faq .faq-wrap h2 {
  font: 700 50px/1.2 var(--font-jost);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 48px;
  text-align: center;
}

.sc-sponser-2 h4 {
  font: 700 18px/1.2 var(--font-jost);
  text-align: center;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 32px;
}


.sc-sponser-2 .sc-sponser-ad {
  border: 0;
}

.sc-sponser-2 .sc-sponser-ad img {
  aspect-ratio: 335/510;
  object-fit: cover;
}

.cstm-acc {
  border: 0;
  background: none;
}

.cstm-acc .accordion-item {
  border: 1px solid #9DB837;
  /* border-image: linear-gradient(90deg, #9DB837 0%, #406B37 100%);
  border-image-slice: 1; */
  margin-bottom: 12px;
  border-radius: 4px;
}


.cstm-acc .accordion-item h2 {
  margin: 0 !important;
}

.cstm-acc .accordion-item button {
  background: var(--primar-clr);
  font: 700 18px/1 var(--font-jost);
  text-transform: uppercase;
  color: var(--white);
  border-radius: 4px !important;
}

.cstm-acc .accordion-item button:focus {
  outline: none;
  box-shadow: none;
}

.cstm-acc .accordion-body {
  padding: 12px;
}

.cstm-acc .accordion-body p {
  font: 400 18px/1.6 var(--font-roboto);
  color: var(--black);
}

.cstm-acc .accordion-button::after {
  display: none !important;
}

.cstm-acc .accordion-button::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f078";
  margin-right: 10px;
  transition: transform 0.3s;
}

.cstm-acc .accordion-button:not(.collapsed)::before {
  content: "\f077";
}

/*  */
.site-footer {
  background: #171717;
  padding: 32px 0;
}

.upper-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  /* flex-wrap: wrap; */
  gap: 20px;
}

.upper-wrap-cn {
  width: 80%;
}

.upper-wrap-cn h2 {
  font: 700 20px/1.2 var(--font-jost);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.upper-wrap-cn p {
  font: 400 18px/1.6 var(--font-roboto);
  color: var(--white);
}

.upper-wrap-btn {
  text-align: end;
  width: 20%;
}

.bottom-wrap {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #ffffff36;
  padding: 35px 0;
  margin-bottom: 35px;
}

.first-col {
  text-align: center;
}

.bottom-wrap .first-col img {
  max-width: 324px;
  max-height: 60px;
  margin-bottom: 10px;
}

.bottom-wrap p {
  font: 400 18px/1.6 var(--font-roboto);
  color: #666666;
  margin-bottom: 10px;
}

.btm-wrap p {
  font: 400 18px/1.6 var(--font-roboto);
  color: #666666;
  margin-bottom: 0;
}

.socail-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.socail-icon li a {
  font-size: 20px;
  color: #666666;
}

.socail-icon li a:hover {
  color: var(--secondary-clr);
}

.bottom-wrap h5 {
  font: 700 20px/1.6 var(--font-jost);
  letter-spacing: 0;
  color: #FFFFFF;
  margin-bottom: 10px;
  text-align: center;
}

.ft-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.ft-list li {
  margin-bottom: 0;
}

.ft-list li a {
  font: 400 18px/27px Roboto;
  letter-spacing: 0;
  color: #666666;
}

.ft-list li a:hover {
  color: var(--secondary-clr);
}

.btn-mobi {
  display: none;
}

.btn-mobi .btn-main {
  padding: 10px 15px;
}

git .btn-mobi .btn-main i {
  margin: 0;
  font-size: 18px;
}

/* section .row>div {
  margin-bottom: 20px;
} */

/*  */
.sc-dash-banner {
  padding: 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sc-dash-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #406B37CC;
}

.sc-dash-banner .text-wrap {
  position: relative;
  z-index: 1;
}

.sc-dash-banner h1 {
  font: 700 50px/1.2 var(--font-jost);
  color: var(--white);
  text-align: center;
}

/*  */
.sc-form {
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
}

.sc-form .form-wrap {
  max-width: 621px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sc-form .form-wrap h4 {
  font: 400 24px/1.2 var(--font-jost);
  color: var(--black);
  margin: 0 0 10px;
}

.sc-form .form-wrap input,
.sc-form .form-wrap select,
.sc-form .form-wrap textarea {
  border: 1px solid var(--secondary-clr);
  padding: 15px;
  border-radius: 10px;
  margin: 0 0 0px;
}

.sc-form .input-group-text {
  border-color: #406b37;
}

.cstm-select-wrap .select2-container .select2-selection {
  height: 55px;
  display: flex;
  align-items: center;
  border: 1px solid #406b37;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.cstm-select-wrap .select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}

.cstm-select-wrap {
  position: relative;
}

.form-floating>.form-select {
  padding: 15px;
}

.sc-form .form-wrap input:focus {
  outline: none;
  box-shadow: none;
}

.sc-form .form-wrap select,
.sc-form .form-wrap textarea {
  margin: 0;
}


.sc-form .form-wrap .btn-main {
  width: 100%;
  padding: 20px;
  margin: 0 0 10px;
  text-decoration: none !important;
  color: var(--white) !important;
  text-align: center;
}

.sc-form .form-wrap p,
.sc-form .form-wrap a {
  font: 400 18px/normal var(--font-jost);
  letter-spacing: 0;
}

.sc-form .form-wrap p {
  color: var(--black);
  margin-bottom: 10px;
}

.sc-form .form-wrap a {
  color: var(--secondary-clr);
  text-decoration: underline;
}

.sc-form .create-ac h4 {
  border-top: 1px solid #999999;
  padding-top: 20px;
  margin: 20px 0 10px;
}

/*  */
.sc-form {
  display: none;
}

.sc-form.active {
  display: flex;
}

/* dashboard-wrap */
.dashboard-wrap {
  display: flex;
  height: 100%;
  min-height: 100vh;
}

.sidebar {
  width: 300px;
  background: var(--white);
}

.dashboard-wrap .content {
  width: calc(100% - 300px);
  background: #F6F6F6;
  padding: 50px;

}

.user-profile {
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.user-img {
  position: relative;
  margin-bottom: 25px;
}

.user-img img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.user-edir-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  background: var(--primar-clr);
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  right: 0;
  color: #fff;
}

.user-edir-pic img {
  width: 16px;
  height: 16px;
  object-fit: contain;

}

.user-profile h5 {
  font: 500 22px/1.2 var(--font-jost);
  color: var(--black);
  margin: 0 0 10px;
}

.user-profile p {
  font: 400 16px/1.6 var(--font-roboto);
  color: var(--black);
}

/* .sidebar-ul li {
} */

.sidebar-ul li a {
  font-family: var(--font-jost);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.2;
  color: var(--black);
  padding: 30px 20px;
}

.sidebar-ul li a.active {
  color: var(--secondary-clr);
  border-bottom: 5px solid var(--secondary-clr);
}

.sidebar-ul li a i {
  margin-right: 6px;
}

/* .sidebar-toggle {
  display: none;
  width: auto;
} */
/*  */
.inner-banner {
  padding: 100px 0;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
}

.inner-banner .text-wrap {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
}

.inner-banner h1 {
  font: 700 50px/1.2 var(--font-jost);
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 10px;
}

.event-sc {
  padding: 120px 0;
  position: relative;
}

.event-sc h4 {
  font: 700 30px/1.2 var(--font-jost);
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 20px;

}

.filter-wrap {
  position: sticky;
  top: 20px;
  width: 100%;
}

.filter-wrap .accordion .accordion-item {
  margin-bottom: 15px;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff;
  padding: 16px !important;
}

.filter-wrap .accordion .accordion-item:last-child {
  margin: 0;
}

.filter-wrap .accordion .accordion-item button {
  background: none !important;
  padding: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  font: 400 14px/1 var(--font-roboto);
  text-transform: capitalize;
  color: var(--black);
  width: 100%;

}

.filter-wrap .accordion .accordion-item button>div {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.filter-wrap .accordion .accordion-item button a {
  font: 400 12px/1 var(--font-jost);
  text-transform: capitalize;
  color: var(--black) !important;
  display: inline-block;
}

.filter-wrap .accordion .accordion-item button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.filter-wrap .accordion .accordion-item .accordion-body {
  background: none !important;
  padding: 0 !important;
  margin-top: 15px;
}

/*  */
.filter-wrap .check-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-wrap .form-check {
  margin: 0 !important;
  padding: 0 !important;
}

.filter-wrap .form-check label {
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid var(--secondary-clr);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  color: var(--secondary-clr);
  transition: all 0.2s;
  user-select: none;
  font: 500 12px/1 var(--font-roboto);
}

.filter-wrap .form-check input:checked+label {
  color: var(--white);
  background: var(--secondary-clr);
}

.filter-wrap .accordion-button::after {
  display: none !important;
}

.filter-wrap .accordion-button::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f078";
  margin-right: 10px;
  transition: transform 0.3s;
}

.filter-wrap .accordion-button:not(.collapsed)::before {
  content: "\f077";
}

#dateRange {
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.date-picker {
  position: relative;
}

.date-picker .flatpickr-calendar {
  top: 35px !important;
  left: 0 !important;
  right: auto !important;
}

.date-input {
  opacity: 0;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.fliter-card {
  /* padding: 10px; */
  background-color: var(--white);
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  min-height: 270px;
  display: flex;
}

.filter-card-img {
  position: relative;
}

.filter-card-img img {
  /* aspect-ratio: 345/250; */
  aspect-ratio: 99 / 100;
  object-fit: cover;
  object-position: center;
  height: 100%;
}

.filter-badge {
  padding: 4px 15px;
  border-radius: 30px;
  font: 500 12px/1 var(--font-roboto);
  color: var(--white);
  background: var(--secondary-clr);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.filter-card-cn {
  /* margin-top: 10px; */
  padding: 20px;
}

.filter-card-cn span {
  font: 500 14px / 1 var(--font-roboto);
  color: var(--black);
  margin-bottom: 5px;
  text-transform: capitalize;
}

.filter-card-cn h4 {
  font: 700 20px/1.2 var(--font-jost);
  margin-bottom: 6px;
  color: var(--black);
  text-align: start;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.filter-card-cn p {
  font: 400 18px/1.6 var(--font-roboto);
  text-align: start;
  color: #1A1A1A;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 6px;
}

.filter-card-cn h6 {
  font: 700 18px/1 var(--font-jost);
  color: #797979;
  text-align: start;
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    line-height: 1.2;
}

.filter-card-cn h6 i {
  color: var(--secondary-clr);
}

.directory-sc {
  padding: 120px 0;
  position: relative;
}

.directory-sc h4 {
  font: 700 30px/1.2 var(--font-jost);
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 10px;

}

.directory-sc .fliter-card h4 {
  font: 700 20px/1.2 var(--font-jost);
}

.directory-sc .filter-card-cn {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.directory-sc .row>div {
  margin-bottom: 0px;
  display: flex;
}

.directory-sc .row .row {
  /* align-items: center; */
  flex-grow: 1;
}

.directory-sc .filter-card-cn h6 {
  margin-bottom: 10px;
}

.btn-border {
  border: 1px solid var(--secondary-clr);
  color: var(--secondary-clr);
  background: var(--white);
}

/*  */
.select2 {
  width: 100% !important;
}

.select2-selection {
  padding: 5px !important;
}

.filter-wrap .select2-selection__rendered {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.filter-wrap .select2-selection__choice button {
  width: auto !important;
  display: inline-block !important;
  font-size: 14px !important;
  line-height: 1 !important;
  position: unset !important;
  border: 0 !important;
  color: var(--white) !important;
}

.filter-wrap .select2-selection__choice button span {
  font-size: 14px !important;
  margin: 0 !important;
}

.filter-wrap .select2-selection__choice span {
  font-size: 14px !important;
  margin: 0 !important;
  padding: 0;
}

.filter-wrap .select2-container--default .select2-selection--multiple .select2-selection__choice {
  padding: 0;
  margin: 0;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-direction: row-reverse;
  padding: 5px;
  border-radius: 5px;
  background: var(--secondary-clr);
  width: auto;
  color: var(--white);
}

.filter-wrap .nav-tabs {
  flex-direction: column;
  width: 35%;
}

.filter-wrap .nav-tabs li button {
  padding: 10px 12px;
  border: 0;
  background: var(--secondary-clr);
  width: 100%;
  border-radius: 0;
  font: 500 14px / 1 var(--font-roboto);
  color: var(--white);
}

.filter-wrap .nav-tabs li button.active {
  color: var(--secondary-clr);
  background: var(--white);
}

.filter-wrap .tab-content {
  padding: 10px;
  width: calc(100% - 35% - 20px);
}

.filter-wrap .tab-content .form-check-input {
  display: block !important;
  margin: 0 !important;
}

.filter-wrap .tab-content .form-check {
  display: flex;
  align-items: start;
  gap: 5px;
  width: 100%;
  min-height: auto;
}

.filter-wrap .tab-content .form-check label {
  display: block;
  padding: 0;
  border: unset;
  border-radius: 0;
  cursor: pointer;
  font-weight: 500;
  color: var(--secondary-clr);
  transition: all 0.2s;
  user-select: none;
  font: 500 12px/1 var(--font-roboto);
  margin: 0;
}

button.filter-badge {
  border: 0;
  font-size: 14px;
  padding: 10px 15px;
}

/* .form-floating {
  margin-bottom: 25px;
} */

label.error {
  position: absolute;
  top: 100%;
  left: 0;
  font-size: 12px;
  color: #ce0707 !important;
  opacity: 1;
  padding: 0;
  transform: none !important;
  height: auto !important;
}

.event-in-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.event-sc .event-in-head h4 {
  margin-bottom: 0px;
}

.event-in-head .form-floating {
  margin-bottom: 0px;
}

.event-in-head .event-in-right {
  width: 40%;
}

span.input-icon.right {
  color: #6d7172;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}


.profile-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.profile-img-container {
  width: 60px;
  height: 60px;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  border: 2px solid #9cb737;
  margin: 10px auto;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

span.filter-badge.Open-badge {
  background: #ffab00;
  color: #000;
}

span.filter-badge.Closed-badge {
  background: #bf0404;
  color: #fff;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  padding: 15px;
  flex-grow: 1;
  text-align: center;
}

.profile-name {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.profile-city {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.member-type {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
}

.member-closed {
  background-color: #f0f7ff;
  color: #0066cc;
}

.member-open {
  background-color: #f0fff4;
  color: #00a854;
}

.profile-actions {
  padding: 0 15px 15px;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.ad-btn-wrap {
  text-align: end;
  padding: 15px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0px 2px 6px 2px #00000026;
  margin-bottom: 20px;
}

.business-card {
  padding: 15px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0px 2px 6px 2px #00000026;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}


.business-card .ellipsis {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--black);
  font-size: 24px;
}

.b-card-img {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #9DB837;
  font: 500 26px/1.2 var(--font-jost);
  color: var(--white);
  border-radius: 50%;
  overflow: hidden;
}

.b-card-img {
  object-fit: cover;
  border-radius: 50%;
  object-position: center;
}

.b-card-text h4 {
  font: 400 22px/1.2 var(--font-jost);
  margin-bottom: 5px;
  color: var(--black);
}

.b-card-text span {
  font: 400 16px/1.6 var(--font-roboto);
  letter-spacing: 0;
  color: #666666;
  display: block;
}

.badge-card {
  font: 500 12px/1 Jost;
  letter-spacing: 0;
  text-transform: capitalize;
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  background: #9DB837;
  display: inline-block;
}

.business-card.premium .badge-card {
  background: #B28706;

}

.business-card.listed .badge-card {
  background: #9DB837;

}

.business-card.unlisted .badge-card {
  background: #E10101;

}

/*  */
.sc-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
}


.sc-404 .error-code h1 {
  font: 700 70px/1.2 var(--font-jost);
  text-align: center;
  color: var(--secondary-clr);
  margin: 0 0 16px;
}

.sc-404 .error-code {
  color: var(--secondary-clr);
  font-size: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sc-404 .error-message {
  font: 400 18px/27px var(--font-roboto);
  letter-spacing: 0;
  color: var(--black);
  margin: 0 0 10px;
}

.sc-404 .error-desc {
  font: 400 18px/27px var(--font-roboto);
  letter-spacing: 0;
  color: var(--black);
  margin: 0 0 15px;
}

.sc-404 .btn-home {
  margin-top: 25px;
  padding: 10px 30px;
}

/*  */
.detail-croulse .swiper-slide {
  max-height: 80vh;
  height: 80vh;
  position: relative;
}

.detail-croulse .swiper-slide img {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.detail-croulse .swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 95%);
}

.thumb-slider {
  max-width: 25rem;
  margin: -73px 0 0 auto;
}

.thumb-slider .swiper-slide img {
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
}

.thumb-slider .swiper-button-prev,
.thumb-slider .swiper-button-next {
  top: 50%;
  width: 20px;
  height: 20px;
  margin: 0;
  font-size: 10px;
  border-radius: 50%;
  background: var(--secondary-clr);
  color: var(--white);
  position: absolute;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  z-index: 999;
}

.thumb-slider .swiper-button-prev::after,
.thumb-slider .swiper-button-next::after {
  display: none;
}

.thumb-slider .swiper-button-prev {
  left: 10px;
  right: auto;

}

.thumb-slider .swiper-button-next {
  right: 10px;
  left: auto;
}

.thumb-slider .swiper-slide.active-thumb {
  border: 3px solid var(--white);

}

.event-detail {
  padding: 120px 0;
  position: relative;
  z-index: 9;
}

.event-dt-wrap {
  margin-top: -350px;

  background-color: var(--white);
}

.event-dt-wrap h2 {
  font: 700 28px/1.2 var(--font-jost);
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 10px;
}

.event-dt-wrap h3 {
  font: 700 30px/1.2 var(--font-jost);
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 20px;
}

.event-detail-info {
  padding: 50px;
  border-bottom: 1px solid #79797987;
}

.span-date {
  font: 500 14px / 1 var(--font-roboto);
  color: var(--secondary-clr);
  margin-bottom: 5px;
  text-transform: capitalize;
}

.span-location {
  font: 500 18px / 1 var(--font-jost);
  color: #797979;
  text-align: start;
}

.event-detail-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font: 600 18px/1.2 var(--font-jost);
  text-transform: capitalize;
  padding: 10px 0;
  border-top: 1px solid #79797987;
}

.event-detail-list li:first-child {
  border: 0;
}

.event-detail-list li span {
  font: 400 14px/1.2 var(--font-jost);
  color: #666;
}

span.rate i {
  color: #ffa737;
}

.event-detail-content {
  padding: 50px;
  border-bottom: 1px solid #79797987;
}

.event-detail-content p {
  font: 400 16px/1.2 var(--font-jost);
  color: #666;
}

.event-detail-content p span {
  font: 500 16px/1.2 var(--font-jost);
  color: var(--black);
}

.location-add-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}

.location-add-list li {
  padding: 10px 20px;
  border: 3px dotted var(--secondary-clr);
  display: inline-block;
  position: relative;
  height: 100%;
}

.location-add-list li i {
  color: var(--secondary-clr);
  margin-right: 10px;
}

.location-add-list li span {
  font: 500 18px / 1 var(--font-jost);
  color: #797979;
  text-align: start;
}

.spr-box {
  border: 3px dotted var(--secondary-clr);
  text-align: center;
  height: 100%;
}

.sidebar-cn {
  background-color: var(--white);
  margin-bottom: 20px;
}

.sidebar-cn h3 {
  font: 700 30px/1.2 var(--font-jost);
  letter-spacing: 0;
  text-transform: uppercase;
  background-color: var(--secondary-clr);
  color: var(--white);
  margin: 0 0 20px;
  padding: 20px;
}

.pagination-wrap>nav {
  width: 100%;
}

.pagination-wrap .page-link {
  color: #406b37;
}

.pagination-wrap .active>.page-link,
.pagination-wrap .page-link.active {
  background-color: #406b37;
  border-color: #406b37;
  color: #fff;
}

#attendance .form-check {
  position: relative;
}

.fliter-card.cstm-att-card span.filter-badge.Open-badge,
.fliter-card.cstm-att-card span.filter-badge.Close-badge {
  position: static;
}

.fliter-card.cstm-att-card .filter-card-cn {
  border: 1px dashed #9bb836;
  border-radius: 6px;
}

.event-sc {
  min-height: calc(100vh - 185px);
}

span.cropped-preview.cstm-review {
  position: relative;
  display: inline-block;
}

button.remove-image-btn {
  background: transparent;
  border: none;
  position: absolute;
  top: 3px;
  z-index: 1;
  right: 2px;
  color: #d30202;
  cursor: pointer;
}

table#financeTable td>img {
  max-width: 80px;
  max-height: 60px;
  object-fit: contain;
  object-position: left;
}

textarea.form-control {
  min-height: 120px !important;
}

.card {
  max-width: 600px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.card-header {
  padding: 20px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.card-header img.logo {
  max-height: 50px;
  width: auto;
}

.card-body {
  padding: 30px;
}

.product-section {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
}

.product-section img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 15px;
  border: 1px solid #e0e0e0;
}

.product-section h5 {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

/* Updated star rating styles */
.rating-group {
  display: inline-flex;
}

.rating__icon {
  pointer-events: none;
}

.rating__input {
  position: absolute !important;
  left: -9999px !important;
}

.rating__label {
  cursor: pointer;
  padding: 0 0.1em;
  font-size: 28px;
}

.rating__label--half {
  padding-right: 0;
  margin-right: -20px;
  z-index: 2;
  width: 20px;
}

.rating__icon--star {
  color: #ffc107;
}

.rating__icon--none {
  color: #eee;
}

.rating__input--none:checked+.rating__label .rating__icon--none {
  color: red;
}

.rating__input:checked~.rating__label .rating__icon--star {
  color: #ddd;
}

.rating-group:hover .rating__label .rating__icon--star,
.rating-group:hover .rating__label--half .rating__icon--star {
  color: #ffc107;
}

.rating__input:hover~.rating__label .rating__icon--star,
.rating__input:hover~.rating__label--half .rating__icon--star {
  color: #ddd;
}

.rating-group:hover .rating__input--none:not(:hover)+.rating__label .rating__icon--none {
  color: #eee;
}

.rating__input--none:hover+.rating__label .rating__icon--none {
  color: red;
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext,
.form-floating>.form-select {
  border-radius: 8px;
}

.form-floating label {
  color: #6c757d;
}

.upload-area {
  border: 2px dashed #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  background-color: #fcfcfc;
  margin-top: 25px;
  margin-bottom: 30px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.upload-area:hover {
  border-color: #0d6efd;
  background-color: #f5faff;
}

.upload-area input[type="file"] {
  display: none;
}

.upload-area i {
  font-size: 40px;
  color: #6c757d;
  margin-bottom: 10px;
}

.upload-area p {
  margin: 0;
  font-size: 1.1rem;
  color: #343a40;
}

.upload-area small {
  color: #6c757d;
  display: block;
  margin-top: 5px;
}

.social-login .btn {
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.social-login .btn i {
  font-size: 1.2rem;
}

.social-login .btn-facebook {
  background-color: #4267B2;
  color: white;
}

.social-login .btn-facebook:hover {
  background-color: #365899;
  color: white;
}

.social-login .btn-google {
  background-color: #DB4437;
  color: white;
}

.social-login .btn-google:hover {
  background-color: #c23321;
  color: white;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 30px 0;
  color: #adb5bd;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}

.divider:not(:empty)::before {
  margin-right: .5em;
}

.divider:not(:empty)::after {
  margin-left: .5em;
}

.btn-submit {
  border-radius: 8px;
  padding: 12px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 20px;
}

.image-preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
  max-width: 100%;
}

.image-preview-container img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.upload-initial-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.btn-main {
  padding: 20px 32px;
  border-radius: 4px;
  font: 700 12px/1 var(--font-jost);
  text-transform: uppercase;
  color: var(--white);
  background: var(--primar-clr);
  display: inline-block;
  border: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-main:hover {
  background: linear-gradient(90deg, #8aa130 0%, #355c2f 100%);
  color: var(--white);
}

.btn-main i {
  font-size: 12px;
  margin-right: 6px;
}

.review-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  overflow: visible;
  border: none;
  transition: transform 0.2s ease-in-out;
  display: flex;
  /* Make the card content horizontal */
  align-items: stretch;
  /* Stretch content to fill height */
  min-height: 200px;
  /* Ensure a minimum height for horizontal layout */
  flex-direction: row;
  max-width: 100%;
}

/* .review-card:hover {
  transform: translateY(-5px);
} */

/* Left Sidebar: Product Info & Customer Info */
.review-sidebar-left {
  flex-shrink: 0;
  /* Don't allow shrinking */
  width: 250px;
  /* Fixed width for the left sidebar */
  padding: 20px;
  background-color: #f0f2f5;
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  /* Pushes tags to bottom */
}

.review-sidebar-left .product-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  /* Space between product and customer info */
}

.review-sidebar-left .product-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #d1e7dd;
  color: #28a745;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.review-sidebar-left .product-name {
  font-weight: 600;
  color: #343a40;
}

.review-sidebar-left .product-trial {
  font-size: 0.85rem;
  color: #6c757d;
  margin-left: 5px;
  padding: 2px 8px;
  background-color: #e9ecef;
  border-radius: 5px;
}

.review-sidebar-left .customer-info-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: auto;
  /* Pushes add tag button to the bottom */
}

.review-sidebar-left .customer-profile {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.review-sidebar-left .customer-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #e9ecef;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-right: 12px;
}

.review-sidebar-left .customer-details span {
  display: flex;
}

.review-sidebar-left .customer-name {
  font-weight: 600;
  color: #343a40;
  font-size: 1rem;
}

.review-sidebar-left .customer-email {
  font-size: 0.85rem;
  color: #6c757d;
}

.review-sidebar-left .customer-type {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0d6efd;
  background-color: #cfe2ff;
  padding: 3px 8px;
  border-radius: 5px;
  margin-left: 8px;
  text-transform: uppercase;
}

.review-sidebar-left .recommendation {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #28a745;
  font-weight: 500;
  margin-top: 5px;
}

.review-sidebar-left .recommendation i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.review-sidebar-left .add-tag-btn {
  background-color: #f0f2f5;
  color: #6c757d;
  border: 1px dashed #ced4da;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  width: 100%;
  /* Make button full width of sidebar */
  text-align: center;
  margin-top: 20px;
  /* Space from content above */
}

.review-sidebar-left .add-tag-btn:hover {
  background-color: #e2e6ea;
  color: #495057;
  border-color: #a8b1bb;
}

/* Main Content Area */
.review-content {
  flex-grow: 1;
  /* Allows content to take up remaining space */
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-content .review-meta {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 10px;
  /* Space between meta and title */
  justify-content: space-between;
  /* Align to right within content area */
}

.review-content .star-rating {
  color: #ffc107;
  margin-right: 10px;
  font-size: 1.1rem;
}

.review-content .review-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 10px;
}

.review-content .review-text {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
}

.comment-window {
  position: absolute;
  max-width: 300px;
  right: 0;
  top: 100%;
  width: 100%;
  min-width: 300px;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.comment-wrap {
  position: relative;
}

.review-filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.filter-actions label {
  white-space: nowrap;
}

.review-filter-row .filter-actions {
  display: flex;
  align-items: center;
}

/* Right Sidebar: Action Buttons */
.review-actions-sidebar-right {
  flex-shrink: 0;
  width: 60px;
  /* Fixed width for action buttons */
  background-color: #fafafa;
  border-left: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
  justify-content: space-around;
  /* Distribute buttons evenly */
}

.review-actions-sidebar-right .action-btn {
  background: none;
  border: none;
  color: #6c757d;
  font-size: 1.2rem;
  margin-bottom: 15px;
  /* Spacing between buttons */
  transition: color 0.2s ease-in-out;
  padding: 8px;
  /* Touch target size */
  border-radius: 50%;
  /* Make them circular */
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-actions-sidebar-right .action-btn:last-child {
  margin-bottom: 0;
}

.review-actions-sidebar-right .action-btn:hover {
  color: #007bff;
  /* Highlight on hover */
  background-color: #e9ecef;
}

.review-actions-sidebar-right .action-btn.publish-check {
  color: #28a745;
  /* Green for publish check */
}

.review-actions-sidebar-right .action-btn.publish-cross {
  color: #dc3545;
  /* Red for publish cross */
}

.review-actions-bottom {
  display: flex;
  justify-content: space-between;
}


/*  */
ul#enquiryTabs {
  border: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

ul#enquiryTabs button {
  padding: 0;
  margin: 0;
  background: unset;
  color: var(--black);
  padding: 15px 25px;
  border-radius: 4px;
  font: 700 16px/1 var(--font-jost);
  text-transform: uppercase;
  background: unset;
  display: inline-block;
  border: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

ul#enquiryTabs button.active {
  background: var(--primar-clr);
  color: var(--white);
}

#enquiryTabsContent h5 {
  font: 600 20px/1.2 var(--font-jost);
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 20px;
}

.en-card {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: box-shadow 0.3s ease;
  height: 100%;
}

.en-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.en-info {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 20px;
}

.cstm-review-info h3 {
  font-size: 50px;
  margin-right: 17px;
}

.en-info.action {
  display: block;
}

.en-info h6 {
  font: 400 14px/1 var(--font-jost);
  color: var(--black);
  margin-bottom: 4px;
  min-width: 120px;
}

.en-info p {
  font: 400 14px/1 var(--font-jost);
  color: #555;
  margin: 0;
}

.en-card .btn {
  margin-right: 8px;
  margin-top: 5px;
}

/*  */
.comment-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.comment-avatar {
  width: 60px;
  height: 60px;
  background-color: var(--primar-clr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.cstm-review-card-wrap {
  margin-bottom: 20px;
}

.cstm-review-card .review-card-listing {
  max-height: 500px;
  overflow-y: scroll;
}

.comment-content {
  flex-grow: 1;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comment-name {
  font-weight: bold;
  font-size: 1rem;
}

.comment-date {
  font-size: 0.85rem;
  color: #888;
}

.comment-text {
  margin: 8px 0 12px;
  color: #333;
}

.comment-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.comment-actions .tag {
  background-color: #007bff;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
}

.comment-actions a {
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.comment-actions .edit {
  color: #007bff;
}

.comment-actions .delete {
  color: #dc3545;
}

.comment-actions i {
  font-size: 1rem;
}

.comt-wrap h4 {
  margin-bottom: 20px !important;
  display: none;
}

.review-actions-bottom .action-right {
  margin-left: auto;
}

.review-actions-bottom {
  margin-bottom: 20px;
}

/*  */
.dt-head {
  padding: 50px 0px;
}

.dir-banner-img img {
  max-height: 200px;
  object-fit: contain;
  object-position: right;
}

.restaurant-card .title {
  font: 700 24px/1.2 var(--font-jost);
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 10px;
}

.restaurant-card .cuisine,
.restaurant-card .address,
.restaurant-card .timing,
.restaurant-card .price {
  color: #6c757d;
  font: 400 18px/1.2 var(--font-jost);
}

.restaurant-card .status {
  color: var(--white);
  background-color: var(--secondary-clr);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 16px;
  line-height: 1 !important;
}

.restaurant-card .btn-custom {
  border: 1px solid var(--secondary-clr);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 14px;
}

.restaurant-card .btn-custom:hover {
  color: var(--white);
  background-color: var(--secondary-clr);
}

.restaurant-card .fa-phone {
  color: var(--secondary-clr);
}

.restaurant-card .highlight {
  color: var(--secondary-clr);
}

.side-gallery {
  margin-top: 50px;
  /* display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "a a b d"
    "a a c d"; */
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

/* .item-a {
  grid-area: a;
}

.item-b {
  grid-area: b;
}

.item-c {
  grid-area: c;
}
 */
.item-d {
  grid-area: d;
}

.side-gallery div {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: all ease 0.6s;
}

.side-gallery div:hover img {
  transform: scale(1.1);
}

.side-gallery div:hover a {
  visibility: visible;
  opacity: 1;
}

.side-gallery a {
  /* visibility: hidden;
  opacity: 0; */
  transition: all ease 0.6s;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font: 400 15px/1.2 var(--font-jost, sans-serif);
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
}

.side-gallery img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: auto;
  aspect-ratio: 350/250;
  transition: all ease 0.6s;
}

/*  */
.dt-cn {
  padding: 50px 0px 100px;
}

.dt-cn-wrap {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #eee;
  background-color: var(--white);
}

.dt-cn-list {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.dt-cn-list li a {
  font: 500 18px/1.2 var(--font-jost);
  text-transform: capitalize;
  color: var(--black);
  position: relative;
  padding-bottom: 6px;
  transition: all 0.3s ease;
}

/* Active and Hover underline */
.dt-cn-list li a.active::after,
.dt-cn-list li a:hover::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primar-clr);
}

/* Active and hover color */
.dt-cn-list li a.active,
.dt-cn-list li a:hover {
  color: var(--secondary-clr);
}

/*  */
.contact-card {
  color: var(--black);
  font-family: var(--font-jost);
}

.contact-card h3 {
  margin-bottom: 10px;
  font: 600 20px/1.2 var(--font-jost);
  color: var(--secondary-clr);
}

.contact-card p,
.contact-card .actions a,
.contact-card .links span,
.time-list li {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666666;
  text-decoration: none;
  font-weight: 400;
}

.contact-card .links {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.contact-card .links li {
  margin: 8px 0;
}

.contact-card .links li {
  padding: 10px 0;
  border-top: 1px solid #eee;
}

.contact-card .links li a:hover,
.contact-card .actions a:hover {
  color: var(--secondary-clr);
}

.contact-card .actions {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 0;
  position: unset;
}

.contact-card .open {
  color: var(--secondary-clr);
  font-weight: 600;
}

.contact-card .chevron {
  margin-left: auto;
  font-size: 12px;
  color: #666;
}

/* Accordion Styling */
.contact-card .accordion {
  padding: 10px 0;
  border-top: 1px solid #eee;
}

.contact-card .accordion .accordion-item {
  border: none;
  padding: 0;
}

.contact-card .accordion .accordion-item button {
  background: none;
  border: none;
  padding: 0;
  outline: none;
  box-shadow: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary-clr);
}

.contact-card .accordion .accordion-item button.collapsed {
  color: #666666;
}


.dt-sdress {
  padding: 10px 0;
  border-top: 1px solid #eee;
}

/*  */
.business-detail {
  margin-bottom: 15px;
}

.business-detail p {
  margin: 0;
  color: #555;
  font: 400 16px/1.2 var(--font-jost);
}

.dt-cn-section {
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.dt-cn-section h4 {
  font: 600 20px/1.2 var(--font-jost);
  margin-bottom: 20px;
  color: var(--secondary-clr);
}

.dt-cn-section h5 {
  font: 600 16px/1.2 var(--font-jost);
  margin-bottom: 5px;
  color: var(--black);
}


.photo-swiper {
  padding: 10px 0;
  position: relative;
}

/* Swiper images */
.photo-swiper .swiper-slide img {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.photo-swiper .swiper-slide img:hover {
  transform: scale(1.03);
}

/* Swiper buttons — hidden by default */
.photo-swiper .swiper-button-next,
.photo-swiper .swiper-button-prev {
  width: 36px;
  height: 36px;
  background-color: var(--secondary-clr);
  border-radius: 50%;
  color: #fff;
  z-index: 2;
  transition: background 0.2s ease;
  justify-content: center;
  align-items: center;
}

/* Show buttons only when swiper has active class or on hover */
.photo-swiper.active .swiper-button-next,
.photo-swiper.active .swiper-button-prev {
  display: flex;
}

.photo-swiper .swiper-button-next::after,
.photo-swiper .swiper-button-prev::after {
  display: none !important;
}

/* Font Awesome icon as arrow */
.photo-swiper .swiper-button-next::before {
  content: '\f105';
  /* Font Awesome: fa-chevron-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
}

.photo-swiper .swiper-button-prev::before {
  content: '\f104';
  /* Font Awesome: fa-chevron-left */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
}

.dt-cn-section .custom-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out;
}

.dt-cn-section .custom-card:hover {
  transform: translateY(-5px);
}

.dt-cn-section .product-image {
  object-fit: cover;
  /* Ensures the image covers the area without distortion */
  height: 100%;
  /* Make sure image takes full height of its container */
  width: 100%;
  /* Make sure image takes full width of its container */
  border-top-left-radius: calc(0.5rem - 1px);
  border-bottom-left-radius: calc(0.5rem - 1px);
  max-height: 200px;
}

.dt-cn-section .no-image-placeholder {
  min-height: 150px;
  /* Ensure placeholder has a decent height */
  border-top-left-radius: calc(0.5rem - 1px);
  border-bottom-left-radius: calc(0.5rem - 1px);
}

.dt-cn-section .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.dt-cn-section .card-subtitle {
  font-size: 0.95rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.dt-cn-section .card-text {
  font-size: 0.9rem;
  color: #555;
}

.dt-cn-section .card-body {
  padding: 15px;
}

.btn-primary {
  color: var(--white);
  background: var(--primar-clr);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #8aa130 0%, #355c2f 100%) !important;
  color: var(--white) !important;
}

.side-gallery-flex {
  display: flex;
  margin: -10px;
}

.side-gallery-flex .gallery-item {
  width: calc(100% / 5);
  padding: 10px;
}

.side-gallery-flex .gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.terms-list-group li {
  padding: 10px 0px 10px 30px;
  position: relative;
}

.terms-list-group li i.fas {
  position: absolute;
  left: 1px;
  top: 14px;
}


.single-pricing-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 0px auto;
  margin-bottom: 30px;
  /* Space below the card */
}

.single-pricing-card .card-header {
  background: var(--primar-clr);
  /* Primary blue for header */
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 20px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.pricing-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-items-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  /* Padding for each item row */
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
  /* Allow items to wrap on smaller screens */
}

.pricing-items-list li:last-child {
  border-bottom: none;
}

.pricing-items-list li:nth-child(odd) {
  background-color: #f8f9fa;
  /* Slight background for odd rows */
}

.pricing-items-list li:nth-child(even) {
  background-color: #e9ecef;
  /* Slightly darker background for even rows */
}

.pricing-items-list li .item-name {
  flex-grow: 1;
  text-align: left;
  font-size: 1.1rem;
  color: #343a40;
  line-height: 1.4;
  /* Improve readability for multi-line names */
}

.price-and-button-col {
  display: flex;
  align-items: center;
  gap: 15px;
  /* Space between price and button */
  min-width: 250px;
  /* Ensure enough width for price and button */
  justify-content: flex-end;
  /* Align contents to the right */
  padding-left: 20px;
  /* Space between item name and this column */
  border-left: 1px solid #eee;
  /* Separator line */
  /* Optional: Add a subtle gradient here if desired, similar to the image analysis */
  /* background: linear-gradient(to right, transparent 0%, #fef0ff 50%, #f0f0ff 100%); */
}

.pricing-items-list li .item-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--secondary-clr);
  /* Blue for price */
  white-space: nowrap;
  /* Prevent price from wrapping */
}

.pricing-items-list li .btn-buy-now {
  font-size: 0.9rem;
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: bold;
  background-color: #007bff;
  border-color: #007bff;
  white-space: nowrap;
  /* Prevent button text from wrapping */
}

.pricing-items-list li .btn-buy-now:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.cstm-content-layout .cstm-content-card {
  max-width: 1100px;
  margin: 0px auto;
  padding: 35px;
  box-shadow: 0px -64px 16px 0px rgba(0, 0, 0, 0.1);
  background: #f6f6f6;
  margin-top: -60px;
  z-index: 11;
  position: relative;
  border-radius: 13px;
}

.modal-header {
  background: var(--primar-clr);
  color: white;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-header .btn-close {
  filter: invert(1);
}

.social-link-list {
  display: flex;
  gap: 20px;
  margin-top: 21px;
  align-items: center;
}

.social-link-list a {
  max-width: 40px;
}



.modal.drawer {
  display: flex !important;
  pointer-events: none;
}

.modal.drawer * {
  pointer-events: none;
}

.modal.drawer .modal-dialog {
  margin: 0px;
  display: flex;
  flex: auto;
  transform: translate(25%, 0);
}

.modal.drawer .modal-dialog .modal-content {
  border: none;
  border-radius: 0px;
}

.modal.drawer .modal-dialog .modal-content .modal-body {
  overflow: auto;
}

.modal.drawer.show {
  pointer-events: auto;
}

.modal.drawer.show * {
  pointer-events: auto;
}

.modal.drawer.show .modal-dialog {
  transform: translate(0, 0);
}

.modal.drawer.right-align {
  flex-direction: row-reverse;
}

.modal.drawer.left-align:not(.show) .modal-dialog {
  transform: translate(-25%, 0);
}

.modal .modal-dialog-scrollable {
  height: 100vh;
}

/*  */
.gallery-dt-sc {
  padding: 100px 0;
}

.school-slider-wrapper {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 30px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.school-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1080/719;
  object-fit: cover;
  object-position: center;
}

.school-caption {
  text-align: center;
  padding: 20px;
  background: #fff;
}

.school-caption h4 {
  font: 700 22px/1.2 var(--font-jost);
  text-align: center;
  color: var(--secondary-clr);
  margin: 0 0 10px;
}

.school-caption p {
  font: 400 18px/27px var(--font-roboto);
  letter-spacing: 0;
  color: var(--black);
  margin: 0 0 0;
}

.welcome-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px;
  background: var(--white);
  text-align: center;
  margin-top: 20px;
  border-radius: 8px;
}

.welcome-section h2 {
  color: var(--secondary-clr);
  font: 700 30px/1.2 var(--font-jost);
  text-transform: uppercase;
  margin: 0 0 20px;
}

.welcome-section p {
  font: 400 18px/27px var(--font-roboto);
  letter-spacing: 0;
  color: var(--black);
  margin: 0 0 0;
}

/* Custom arrows */
.school-swiper .swiper-button-next,
.school-swiper .swiper-button-prev {
  color: var(--white);
}

.school-pagination {
  display: none;
}

.school-swiper .swiper-pagination-bullet-active {
  background: var(--secondary-clr);
}

.deal-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  /* background-color: #fff; */
  transition: transform 0.3s ease;
  /* border: 1px dashed #8caa37; */
  width: 100%;
}

.deal-card:hover {
  transform: scale(1.02);
}

.deal-img {
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  max-width: 240px;
}

.badge-deal {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  font-weight: bold;
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 1rem;
  font-size: 0.85rem;
}

.discount-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ee0979;
}

.deal-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.ads-box {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.ads-box img {
  max-width: 100%;
}

a.btn-link.with-icon {
  text-decoration: none;
  font-size: 18px;
  align-items: center;
  display: inline-flex;
}

a.btn-link.with-icon:hover {
  color: var(--primar-clr);
}

.btn-link.with-icon i {
  transition: all 0.3s ease-in-out;
  margin-left: 4px;
}

.btn-link.with-icon:hover i {
  transform: translateX(4px);
}

.flip-scene {
  width: 100%;
  height: 260px;
  /* border: 1px solid #CCC; */
  /* margin: 40px 0; */
  perspective: 600px;
}

.flip-card {
  width: 100%;
  height: 100%;
  transition: transform 1s;
  transform-style: preserve-3d;
  cursor: pointer;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px !important;
}

.flip-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: #0000009a;
  border-radius: 20px !important;
  z-index: 0;
}

.flip-card.is-flipped {
  transform: rotateY(180deg);
}

.card__face {
  position: absolute;
  width: 100%;
  height: 100%;
  /* line-height: 260px; */
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


.card__face--back {
  /* background: blue; */
  transform: rotateY(180deg);
}

.discount-area {
  display: flex;
  flex-direction: column;
  padding: 10px;
  width: 40%;
  align-items: center;
  background: #02512f;
  justify-content: center;
  min-width: 100px;
}

.discount-area .discount-offer {
  font-size: 65px;
}

.discount-area h4 {
  color: var(--white) !important;
}

button.flip-card-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.discount-front-info {
  display: flex;
  flex-direction: column;
  padding: 16px;
  width: 100%;
}

.card__face .deal-title {
  font: 700 22px/1.2 var(--font-jost);
}

.card__face.card__face--back .deal-title {
  height: auto !important;
  font: 600 14px/1.2 var(--font-jost);
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 0;
}

.card__face h4 {
  font: 600 24px/1.2 var(--font-jost);
  text-transform: capitalize;
  text-align: start;
  margin: 0 0 10px;
  color: var(--white);
}

.card__face h6 {
  font: 500 16px/1.2 var(--font-jost);
  text-transform: capitalize;
  text-align: start;
  margin: 0 0 10px;
  color: var(--white) !important;
}

.card__face p {
  font: 400 16px/1.6 var(--font-roboto);
  text-align: center;
  color: var(--white);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-align: start;
}

.discount-front-info img.deal-logo {
  max-width: 100px;
  max-height: 60px;
  object-fit: contain;
  object-position: left;
}

.card__face--front {
  width: 100%;
  background: rgba(2, 81, 47, 0.2);
}
figure.deal-logo-wrap {
  display: flex;
  min-height: 70px;
}


.deal-img-wrap .pro-name {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  left: 0;
  height: 60px;
  background: linear-gradient(0deg, black, transparent);
  width: 100%;
}
.deal-img-wrap {
  margin: 0;
  position: relative;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
  .discount-area .discount-offer {
    font-size: 40px;
}
.flip-scene img.deal-img {
  width: 100% !important;
}
  /* For tablets and smaller (Bootstrap md breakpoint) */
  .single-pricing-card .card-header h2 {
    font-size: 1.5rem;
    /* Adjust header size */
  }

  .pricing-items-list li {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    /* Adjust padding */
  }

  .pricing-items-list li .item-name {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1rem;
  }

  .price-and-button-col {
    width: 100%;
    justify-content: space-between;
    /* Distribute price and button */
    border-left: none;
    /* Remove left border */
    padding-left: 0;
    background: none;
    /* Remove gradient */
  }

  .pricing-items-list li .item-price {
    font-size: 1rem;
  }

  .pricing-items-list li .btn-buy-now {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .dir-banner-img img {
    object-position: center;
    margin-bottom: 20px;
  }

  .cstm-review-card-wrap {
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center !important;
  }

  .cstm-review-info {
    margin-bottom: 10px;
  }

  label.empty_text.s_hgt {
    text-align: center;
  }

  .no-image-placeholder {
    min-height: 140px;
  }

  .dt-cn-wrap {
    padding: 12px;
  }

  .dt-cn-section {
    padding: 10px;
  }
}


/* Responsive adjustments */
@media (max-width: 991.98px) {

  /* Medium and small screens */
  .review-card {
    flex-direction: column;
    /* Stack sections vertically */
  }

  .review-sidebar-left {
    width: 100%;
    /* Full width */
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
  }

  .review-sidebar-left .product-info,
  .review-sidebar-left .customer-info-section {
    width: 100%;
    margin-bottom: 15px;
    /* Adjust margin for stacking */
  }

  .review-sidebar-left .add-tag-btn {
    margin-top: 15px;
  }

  .review-content {
    padding: 15px;
  }

  .review-content .review-meta {
    justify-content: flex-start;
    /* Align meta to left on small screens */
  }

  .review-actions-sidebar-right {
    width: 100%;
    /* Full width */
    border-left: none;
    border-top: 1px solid #e0e0e0;
    flex-direction: row;
    /* Buttons in a row */
    justify-content: center;
    /* Center buttons horizontally */
    padding: 10px 0;
  }

  .review-actions-sidebar-right .action-btn {
    margin: 0 10px;
    /* Horizontal spacing */
  }
}

@media (max-width: 767px) {
  .dashboard-wrap .content {
    padding: 10px !important;
  }

  .review-filter-row h4 {
    font-size: 16px !important;
  }
}



.creative-pricing-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Stronger shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden; /* Ensures rounded corners are applied correctly */
  background-color: #ffffff;
  display: flex; /* Use flexbox for consistent height and bottom alignment */
  flex-direction: column;
}

.creative-pricing-card:hover {
  transform: translateY(-8px); /* More pronounced lift on hover */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

.creative-pricing-card .card-body {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column; /* Ensure content stacks vertically */
  flex-grow: 1; /* Allow card body to grow and fill available space */
}

.creative-pricing-card .card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 1.5rem;
}

.price-container {
  margin-bottom: 1.5rem;
}

.price-currency {
  font-size: 1.5rem;
  vertical-align: super;
  margin-right: 5px;
  font-weight: 600;
  color: #495057;
}

.price-value {
  font-size: 3.5rem;
  font-weight: 800;
  color: #456e38; /* Primary brand color for price */
  line-height: 1;
}

.price-info {
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 5px;
}

.creative-pricing-card ul {
  list-style: none; /* Remove default list bullets */
  padding: 0;
  margin-top: 1.5rem;
  flex-grow: 1; /* Allow ul to grow and push button to bottom */
}

.creative-pricing-card ul li {
  font-size: 1rem;
  color: #495057;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center; /* Center list items horizontally */
  text-align: left;
}

.creative-pricing-card ul li i {
  color: #28a745; /* Green checkmark */
  margin-right: 8px;
  font-size: 1.1rem;
}

.creative-pricing-card .btn {
  margin-top: auto; /* Push button to the bottom */
  padding: 0.8rem 1.5rem;
  border-radius: 50px; /* Pill-shaped button */
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  background-color: #456e38;
  border-color: #456e38;
}

.creative-pricing-card .btn:hover {
  background-color: #456e38;
  border-color: #456e38;
  transform: translateY(-2px);
}

/* Featured Card Styling */
.featured-card {
  border: 3px solid #92af37; /* Highlight with primary color border */
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2); /* Blue shadow for featured */
  transform: scale(1.03); /* Slightly larger */
}

.featured-card .card-header {
  background-color: #92af37;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  border-bottom: 0;
  border-top-left-radius: calc(15px - 1px); /* Match card border radius */
  border-top-right-radius: calc(15px - 1px);
  border-radius: 0;
}

.featured-card:hover {
  transform: translateY(-8px) scale(1.05); /* Enhanced hover for featured */
}
.user-edir-pic input{
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  left: 0;
  top: 0;
}

.dis-head h2{
  margin: 10px 0px;
}
.dis-head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  flex-wrap: nowrap;
  flex-direction: row;
}
.creative-card.cstm-card-listing {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px; 
  overflow: hidden; 
}

.cstm-card-listing .list-group-item .custom-icon-style {
  color: #b8b8b8; 
  font-size: 1.5rem; 
  margin-right: 15px; 
  transition: transform 0.3s ease-in-out; 
}
.cstm-card-listing .list-group-item.item-active .custom-icon-style{
  color: #28a745; 
}

.cstm-card-listing .list-group-item:hover .custom-icon-style {
  transform: scale(1.2) rotate(10deg); 
  color: #1e7e34; 
}

.creative-card.cstm-card-listing .card-title {
  background-color: #f8f9fa; 
  padding: 15px;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.creative-card.cstm-card-listing .list-group-item {
  border-left: none;
  border-right: none;
  padding: 15px 20px;
}

.creative-card.cstm-card-listing .list-group-item:last-child {
  border-bottom: none;
}
.cstm-card-listing ul > li > a{
  font-size: 18px;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.cstm-card-listing ul > li > a:after{
content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  top: calc(50% - 2px/2);
  background-color: black;
  transition: 300ms ease-in-out;
  pointer-events: none;
}
.cstm-card-listing ul > li.item-active > a:after{
  width: 100%;
}
table#financeTable{
  min-width: 688px;
}
.dt-head .restaurant-card {
  margin-bottom: 20px;
}
.btn.closed {
  margin: 0px !important;
  margin-top: 0px !important;
  display: inline-flex;
  align-items: center;
}
.row.business-hours-row .col-md-12:first-child .closed {
  margin-top: 28px !important;
}
.deal-footer{
  display: flex;
}
/* Responsive adjustments for smaller screens */
@media (max-width: 991px) {
  .business-form {
    max-width: 800px;
    margin: 30px auto;
    width: calc(100% - 67px) !important;
    padding: 10px;
}
.business-form h3 {
  text-align: left;
}
button.btn-main {
  white-space: nowrap;
}
  .sc-whatis-img {
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .creative-pricing-card {
      margin-bottom: 1.5rem; /* Add some space between stacked cards */
  }
  .price-value {
      font-size: 3rem;
  }
  .creative-pricing-card .card-title {
      font-size: 1.4rem;
  }
  .creative-pricing-card ul li {
      justify-content: flex-start; /* Align list items to start on small screens */
  }
  .row.business-hours-row .col-md-12 {
    flex-direction: column;
}
.business-hours-row .form-check {
  min-width: 150px;
  width: 100%;
}
.business-hours-row .set-time:before {
  content: "Start Time";
  align-content: center;
  font-size: 13px;
  margin-right: 5px;
}
.business-hours-row .set-time + .set-time:before{
  content: "End Time";
}
.business-hours-row .set-time label.form-label{
   display: none;
}
.business-hours-row .set-time {
  flex-direction: column;
  align-items: start !important;
}
.row.business-hours-row .col-md-12:first-child .closed, .btn.closed {
  margin-top: 7px !important;
}
.row.business-hours-row .col-md-12 {
  flex-direction: column;
  align-items: start !important;
}
}
