@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

:root {
  --first-font: "Poppins", sans-serif;
  --second-font: "Nunito Sans", sans-serif;
  --theme-color: #714b67;
  --second-color: #022332;
  --third-color: #e6d2e1;
  --dark-green: #714b67;
  --light-gray: #f6f6f6;
  --border-color: #dddddd;
  --black: #111111;
  --white: #ffffff;
  --h1: normal 700 34px / 1.2 var(--first-font);
  --h2: normal 700 32px / 1.2 var(--first-font);
  --h3: normal 700 26px / 1.2 var(--first-font);
  --h4: normal 700 22px / 1.2 var(--first-font);
  --h5: normal 700 18px / 1.2 var(--first-font);
}

body {
  font-family: var(--first-font);
  line-height: 1.6;
  color: #1e1e1e;
  background-color: var(--white);
  overflow-x: hidden !important;
}

/* ========== TYPOGRAPHY & BASE ELEMENTS ========== */
p,
li,
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
  font: var(--common-text);
}

a {
  text-decoration: none;
  color: var(--black);
  transition: all ease-in-out 0.5s;
}

.container-fluid {
  padding: 20px 40px;
}

/* ========== BUTTONS ========== */
.btn,
.button {
  background-color: var(--third-color);
  color: var(--dark-green);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 13px 25px;
  gap: 10px;
  text-transform: capitalize;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn svg,
.secondary-btn svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.btn.btn-outline {
  border: 1px solid var(--dark-green);
  background: transparent;
  color: var(--dark-green);
}

.btn.dark-green {
  background: var(--dark-green) !important;
  color: var(--white) !important;
  box-shadow: none;
}

.btn.dark-green:focus,
.btn.dark-green:hover {
  box-shadow: 0px 3px 7px 0px rgb(1 61 41 / 50%);
}

.btn:focus,
.btn:hover,
.button:focus,
.button:hover {
  background-color: var(--third-color);
  color: var(--theme-color);
}

.secondary-btn {
  background: var(--dark-green);
  border: none;
  color: var(--white);
}

.btn-primary {
  background: var(--theme-color);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
}

.btn-primary:hover {
  background: var(--third-color);
  transform: translateY(-2px);
  color: var(--dark-green);
}

.btn-wrapper {
  gap: 15px;
}

/* ========== HEADER & NAVIGATION ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.header-logo {
  width: 200px;
}

.logo-text,
.logo-text-accent {
  font-family: "Century Gothic", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 39.2px;
  letter-spacing: 0.96px;
}

.logo-text {
  color: var(--white);
  background: #a73a8a;
  padding: 2px 8px;
  border-radius: 5px;
}

.logo-text-accent {
  color: #1e1e1e;
}

.nav {
  display: flex;
  align-items: center;
  gap: 51px;
}

.nav-link {
  font-weight: 300;
  font-size: 16px;
  line-height: 23.98px;
  color: #1e1e1e;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #a73a8a;
}

.navbar {
  padding: 0;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  margin-top: 110px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--dark-green);
  z-index: -1;
}

.hero-title {
  font-weight: 500;
  font-size: 26px;
  line-height: 1.3;
  color: var(--white);
}

.hero-subtitle {
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
  margin-top: 15px;
  max-width: 520px;
}

.green-text {
  color: var(--third-color) !important;
}

.yellow-text {
  color: var(--third-color);
}

.subtitle {
  background-color: #ffefca;
  color: var(--second-color);
  border: 1px solid #ffb917;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 10px 20px;
  margin-bottom: 20px;
  display: inline-block;
  text-transform: capitalize;
  border-radius: 8px;
}

.hero-img {
  max-width: 100%;
  height: auto;
}

/* ========== SEARCH FORM ========== */
.banner-search-form .form-input {
  background-color: var(--white);
  padding: 8px;
  gap: 10px;
  border-radius: 8px;
}

.banner-search-form input {
  border: none;
  outline: none;
}

.banner-search-btn {
  font-size: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ========== FAQ SECTION ========== */
.faq-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
}

.accordion-container .set:not(:last-child) {
  border-bottom: 1px dashed var(--border-color);
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.accordion-container .set>a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--second-color);
  position: relative;
  padding-right: 30px;
}

.accordion-container .set>a::before,
.accordion-container .set>a::after {
  content: "";
  position: absolute;
  top: 50%;
  background-color: var(--second-color);
  transition: 0.3s ease;
}

.accordion-container .set>a::before {
  right: 8px;
  width: 2px;
  height: 14px;
  transform: translateY(-50%);
}

.accordion-container .set>a::after {
  right: 1px;
  width: 14px;
  height: 2px;
  transform: translateY(-50%);
}

.accordion-container .set>a.active::before {
  transform: translateY(-50%) rotate(90deg);
}

.accordion-container .content {
  display: none;
  padding-top: 8px;
  font-size: 14px;
}

/* ========== CLIENT REVIEWS ========== */
.client-review-section {
  background-color: #f8f8f8;
}

.home .client-review-section {
  background-color: var(--white);
}

.client-review-section .top-content .quote-icon svg {
  width: 50px;
  height: 50px;
}

.customer-help-wrp .arrow-wrapper,
.client-review-section .arrow-wrapper {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  max-width: fit-content;
  padding: 10px 15px;
  gap: 30px;
  margin: 20px auto 0;
  border-radius: 8px;
}

.customer-help-wrp .arrow-wrapper .customer-help-arrow,
.client-review-section .arrow-wrapper .client-arrow {
  position: relative;
  background: transparent;
  width: auto !important;
  height: auto !important;
  font-size: 14px;
  line-height: 1;
  gap: 10px;
  transform: unset;
}

.customer-help-wrp .arrow-wrapper .customer-help-arrow svg,
.client-review-section .arrow-wrapper .client-arrow svg {
  width: auto;
  height: auto;
}

.customer-help-wrp .arrow-wrapper .customer-help-arrow::before,
.client-review-section .arrow-wrapper .client-arrow::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  background-color: var(--theme-color);
  width: 15px;
  height: 15px;
  display: block;
  transform: translateY(-50%);
  border-radius: 50%;
}

.customer-help-wrp .arrow-wrapper .customer-help-arrow.client-prev::before,
.client-review-section .arrow-wrapper .client-arrow.client-prev::before {
  right: -10px;
}

.customer-help-wrp .arrow-wrapper .customer-help-arrow.client-next::before,
.client-review-section .arrow-wrapper .client-arrow.client-next::before {
  left: -10px;
}

/* Review Cards */
.review-card .review-user-info .img-wrapper {
  max-width: 50px;
  width: 100%;
  overflow: hidden;
  border-radius: 50%;
}

.review-card .review-user-info .img-wrapper img {
  width: 100%;
  object-fit: cover;
}

.review-card .review-user-info {
  gap: 10px;
}

.review-card .bottom-content .review-user-name p {
  line-height: 1;
  margin-top: 5px;
}

.review-card .review-user-name span a {
  font-weight: 700;
  text-transform: capitalize;
}

.review-card .bottom-content p {
  flex: 1;
  margin: 0 0 15px;
}

.review-inner {
  position: relative;
  z-index: 1;
  padding: 2px 2px 0;
}

.review-inner .review-content {
  position: relative;
  z-index: 1;
  padding: 20px 15px;
  background-color: var(--white);
  height: 100%;
  border-radius: 8px;
}

.review-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
      rgba(138, 101, 128, 1) 0%,
      rgba(253, 253, 253, 1) 100%);
  border-radius: 8px 8px 0 0;
}

.review-content::before {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0;
  border-bottom: 6px solid var(--theme-color);
}

.client-review-slider .bottom-content {
  height: 100%;
}

.client-review-slider .review-card .top-content {
  margin-bottom: 15px;
}

.client-review-slider:not(.slick-initialized) *:not(:first-child) {
  display: none;
}

/* ========== SLICK SLIDER ========== */
.flex-slider {
  margin: 0 -15px;
}

.flex-slider .slide {
  padding: 0 15px;
  display: flex !important;
}

.flex-slider .slide .slide-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 35px;
  height: 35px;
  padding: 0;
  background: var(--theme-color);
  transform: translateY(-50%);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out 0.5s;
}

.slick-arrow svg {
  width: 16px;
  height: 16px;
}

.slick-arrow:hover {
  background-color: var(--theme-color);
}

.slick-slider .client-next {
  right: 5px;
}

.slick-slider .client-prev {
  left: 5px;
  transform: translateY(-50%) scale(-1) !important;
}

.slick-slider .slick-arrow.slick-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.slick-arrow.client-prev svg {
  transform: scaleX(-1);
}

.slide-arrow svg {
  max-width: 20px;
  display: inline-block;
}

/* ========== BOOKINGGO SECTION ========== */
.bookinggo-sass-top-sec {
  position: relative;
  z-index: 1;
}

.arrival-section .bookinggo-sass-slider,
.bookinggo-sass-top-sec .bookinggo-sass-slider {
  margin: 0 -10px;
}

.dash-saas-slider:not(.slick-initialized) *:not(:first-child),
.bookinggo-sass-slider:not(.slick-initialized) *:not(:first-child) {
  display: none;
}

.arrival-section .bookinggo-sass-sliders,
.bookinggo-sass-top-sec .bookinggo-sass-sliders {
  margin: 0 -10px;
}

.dash-saas-slider:not(.slick-initialized) *:not(:first-child),
.bookinggo-sass-sliders:not(.slick-initialized) *:not(:first-child) {
  display: none;
}

.bookinggo-sass-top-sec .section-title {
  max-width: 90%;
  width: 100%;
  margin: 0 auto 30px;
}

.bookinggo-sass-top-sec .bookinggo-sass-icon {
  position: absolute;
  z-index: -1;
  width: 6vw;
  animation: mover 2s infinite alternate;
}

.bookinggo-sass-top-sec .bookinggo-sass-icon1 {
  top: 10%;
  left: 0;
}

.bookinggo-sass-top-sec .bookinggo-sass-icon2 {
  top: 0%;
  right: 0;
}

.bookinggo-sass-top-sec .section-title p {
  max-width: 80%;
  width: 100%;
  margin: 15px auto 0;
}

.bookinggo-sass-top-sec .bookinggo-left-col .bookinggo-left-img {
  margin-bottom: 25px;
}

.bookinggo-sass-top-sec .bookinggo-left-col .bookinggo-left-img img {
  width: 100%;
  height: 100%;
}

.bookinggo-sass-top-sec .bookinggo-left-col .bookinggo-btn-wrapper,
.dash-sass-top-selling .dash-sass-left-col .dash-btn-wrapper {
  gap: 12px;
}

.ticketgo-top-sec .btn-wrapper {
  gap: 10px;
}

.bookinggo-sass-top-sec .bookinggo-btn-wrapper .btn svg,
.dash-sass-top-selling .dash-btn-wrapper .btn svg {
  width: 16px;
  height: 16px;
}

#bookinggo-sass-slider .owl-nav {
  position: absolute;
  top: 40%;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

#bookinggo-sass-slider .owl-prev {
  position: absolute;
  left: -25px;
}

#bookinggo-sass-slider .owl-prev .owl-prev-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

#bookinggo-sass-slider .owl-next {
  width: fit-content;
  position: absolute;
  right: -25px;
}

#bookinggo-sass-slider .owl-next .owl-next-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

#bookinggo-sass-sliders .owl-nav {
  position: absolute;
  top: 40%;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

#bookinggo-sass-sliders .owl-prev {
  position: absolute;
  left: -25px;
}

#bookinggo-sass-sliders .owl-prev .owl-prev-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

#bookinggo-sass-sliders .owl-next {
  width: fit-content;
  position: absolute;
  right: -25px;
}

#bookinggo-sass-sliders .owl-next .owl-next-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent;
  text-decoration: none;
}

/* ========== PRODUCT CARDS ========== */
.product-card {
  width: 100%;
  height: 100%;
}

.product-card-inner {
  position: relative;
  padding: 10px;
  border: 1px solid var(--third-color);
  background: var(--white);
  border-radius: 8px;
}

.product-card-inner .product-card-image {
  position: relative;
  transition: all ease-in-out 0.5s;
}

.product-card-inner .product-card-image .pdp-img {
  position: relative;
  display: block;
  padding-top: 70%;
  overflow: hidden;
  border-radius: 8px;
}

.product-card-inner .product-card-image .pdp-img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.product-card .product-content-top {
  height: 100%;
  margin-bottom: 15px;
  flex: 1;
}

.product-card .product-content-top .title {
  gap: 15px;
}

.product-card .product-content {
  margin-top: 15px;
}

.product-content-top span.h4,
.product-content-top h4 {
  font-size: 20px;
  color: var(--dark-green);
}

.product-content-bottom .card-bottom {
  margin-top: 10px;
  row-gap: 10px;
}

.product-content .price {
  font-size: 20px;
  font-weight: 700;
  gap: 8px;
}

.product-rating-content .add-to-cart {
  padding: 10px 20px;
}

.product-card .price del {
  text-decoration: line-through;
  font-size: 16px;
  font-weight: 600;
  opacity: 1;
}

.product-content .price ins {
  font-weight: 700;
  margin-left: 3px;
}

.product-content .price .discount {
  color: #dc3545;
}

/* Rating System */
.genzerp-rating-custom {
  position: relative;
  overflow: hidden;
  width: 5.6em;
  height: 17px;
  line-height: 16px;
  font-family: "FontAwesome";
  color: var(--third-color);
  margin-right: 4px;
}

.product-rating {
  font-size: 14px;
  line-height: 1;
}

.genzerp-rating-custom span::before {
  content: "\f005\f005\f005\f005\f005";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--third-color);
  float: left;
}

.genzerp-rating-custom::before {
  content: "\f006\f006\f006\f006\f006";
  position: absolute;
  top: 0;
  left: 0;
  color: #ffbc00;
  float: left;
}

.genzerp-rating-custom span {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  float: left;
  padding-top: 1.3em;
}

/* Product Icons */
.product-card .selling-icon {
  margin: 0 0 10px 0;
  gap: 7px;
}

.product-card .selling-icon p {
  font-size: 14px;
}

.product-card .selling-icon ul {
  align-items: center;
}

.product-card .selling-icon ul li:not(:last-of-type) {
  border-right: 1px solid var(--black);
}

.product-card .selling-icon ul li {
  padding: 0px 12px;
}

.single-product .filter-right-column .product-card .selling-icon ul li {
  padding: 0px 9px !important;
}

.product-card .selling-icon ul li img {
  width: 22px;
  height: 22px;
}

.single-product .filter-right-column .product-card .selling-icon ul li img {
  max-width: 20px;
  height: 25px;
}

.product-card .selling-icon ul li a {
  display: block;
}

/* Hover Effects */
.product-card-image .hoverable-btn {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease 0s;
}

.product-card-image .hoverable-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(138, 101, 128, 0.87);
  border-radius: 8px;
}

.product-card-inner .product-card-image:hover .hoverable-btn {
  opacity: 1;
  visibility: visible;
}

.product-card-image .hoverable-btn a {
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 13px;
  padding: 10px;
  width: 70px;
  height: 70px;
  border-radius: 4px;
}

.product-card-image .hoverable-btn a svg {
  width: 25px;
  height: 25px;
  display: block;
  margin: 0 auto 5px;
}

.filter-right-column .hoverable-btn a:hover {
  background: rgba(111, 217, 67, 0.2);
}

.product-card-image .hoverable-btn a:not(:last-of-type) {
  margin-right: 15px;
}

/* Labels */
.theme-details-inner .theme-details-top .bought-label,
.woocommerce-loop-product__title span.bought-label {
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  margin-left: 5px;
  border-radius: 5px;
}

.theme-details-inner .theme-details-top .bought-label {
  margin-bottom: 10px;
  margin-left: 0;
  padding: 6px 10px;
}

span.onsale {
  display: none;
}

strong.product-quantity {
  display: none;
}

del,
.price del,
ins.wp-sale-price {
  text-decoration: line-through;
  color: #d82d2d;
}

/* ========== PRODUCT CATEGORIES SECTION ========== */
.product-category-sec .row {
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 30px;
}

.product-category-sec .row [class*="col-"] {
  padding: 0 10px;
}

.product-category-sec .product-category-card {
  height: 100%;
}

.product-category-sec .category-card-inner {
  position: relative;
  z-index: 1;
  background-color: var(--white);
  border: 2px solid var(--theme-color);
  overflow: hidden;
  padding: 15px 0 0;
  border-radius: 8px;
}

.product-category-sec .category-card-content {
  padding: 0 15px;
  margin-bottom: 20px;
  flex: 1;
}

.product-category-sec .category-card-inner h2 {
  margin-bottom: 10px;
  font-size: 18px;
}

.product-category-sec .category-card-inner h2 a {
  font-weight: 600;
  color: var(--second-color);
}

.product-category-sec .category-card-content p {
  color: var(--theme-color);
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1;
}

.product-category-sec .category-card-content .category-btn-wrapper .btn {
  padding: 10px 15px;
}

.product-category-sec .category-card-content .category-btn-wrapper .btn svg {
  width: 16px;
  height: 16px;
}

.category-pro-icon {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 auto -25px;
  background-color: var(--dark-green);
  border: 3px solid var(--white);
  box-shadow: 0px 2.21px 25.09px 0px #0000001a;
  animation: animate-pulse 3s linear infinite;
  border-radius: 50%;
}

@keyframes animate-pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(111, 217, 67, 1),
      0 0 0 0 rgba(111, 217, 67, 1);
  }

  40% {
    box-shadow:
      0 0 0 10px rgba(154, 191, 0, 0),
      0 0 0 0 rgba(111, 217, 67, 1);
  }

  80% {
    box-shadow:
      0 0 0 10px rgba(154, 191, 0, 0),
      0 0 0 10px rgba(154, 191, 0, 0);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(154, 191, 0, 0),
      0 0 0 10px rgba(154, 191, 0, 0);
  }
}

.product-category-sec .category-pro-img {
  border-top: 1px solid var(--theme-color);
  box-shadow: 0px 1.48px 39.85px 0px #00000008;
}

.category-pro-icon svg {
  width: 25px;
  height: 25px;
}

/* ========== BREADCRUMB ========== */
.storefront-breadcrumb {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  font-size: 16px;
  padding: 10px 15px;
  max-width: 1230px;
  width: 100%;
  margin: 20px auto;
  background-color: #f4f1f1;
}

.col-full {
  max-width: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

.woocommerce-breadcrumb a {
  color: var(--theme-color);
  font-weight: 600;
  text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
  text-decoration: underline;
  color: #78dd4e;
}

.woocommerce-breadcrumb .breadcrumb-separator {
  padding: 0 10px;
}

.woocommerce-breadcrumb a:first-of-type::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  content: "";
  margin-right: 0.5407911001em;
}

.woocommerce-breadcrumb .breadcrumb-separator::after {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: baseline;
  content: "";
  display: block;
  font-size: 0.875em;
  text-indent: 0px;
  line-height: initial;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1em;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  opacity: 0.25;
}

/* ========== PRODUCT BANNER SECTION ========== */
.product-banner-section {
  padding: 100px 0 70px;
}

.erpgo-wrapper .product-banner-section {
  padding: 70px 0;
}

.product-banner-section .section-title h1 {
  letter-spacing: 0.02em;
}

.dash-landing-wrapper .section-title span a {
  font-weight: 600;
}

.product-banner-section .section-title p {
  font-size: 20px;
  opacity: 0.8;
}

.page-template-dash-envato-landing-page .dash-landing-wrapper .section-title span a {
  display: inline;
}

.product-banner-section .btn-wrapper a {
  font-weight: 600;
}

.product-banner-section .right-side-wrapper img {
  height: 100%;
  width: 100%;
}

.single-laravel-product .storefront-breadcrumb,
.tax-laravel-product-cat .storefront-breadcrumb {
  display: none;
}

.product-banner-section .dash-addon-banner {
  position: relative;
  padding-top: 80%;
}

.product-banner-section .dash-addon-banner img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.product-banner-section .product-banner-bg {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  object-fit: cover;
}

.dash-banner-title .subtitle span {
  background: #275b49;
  color: var(--third-color);
  clip-path: polygon(0 0, 100% 12%, 100% 90%, 0 100%);
  font: var(--h4);
  font-weight: 600;
  padding: 10px;
  display: block;
}

.dash-banner-title .subtitle {
  position: relative;
  margin-bottom: 30px;
  display: inline-block;
  padding: 0;
  border: none;
  background-color: transparent;
}

.dash-banner-title .subtitle::before {
  content: "";
  position: absolute;
  left: 10%;
  bottom: -15px;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 50px solid #275b49;
}

/* ========== VIDEO BANNER SECTION ========== */
.advance-solution-section .subtitle,
.video-banner-sec .section-title .subtitle {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 15px;
  margin-bottom: 15px;
  border: none;
}

.video-banner-sec .section-title {
  max-width: 60%;
  width: 100%;
  margin: 0 auto 30px;
}

.video-banner-sec .video-wrapper .video-documentation {
  margin-bottom: 0;
  overflow: hidden;
  border-bottom: 3px solid var(--theme-color);
  border-radius: 20px;
}

.genzerp_doc_videoele {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-documentation {
  position: relative;
  padding-bottom: 58.25%;
  width: 100%;
  height: 0;
  margin-bottom: 15px;
}

/* ========== KEY FEATURE SECTION ========== */
.key-feature-sec .key-feature-img {
  background-color: #f6f6f6;
  border-radius: 15px;
}

.key-feature-sec img {
  width: 100%;
  height: 100%;
}

.key-feature-content .subtitle {
  background-color: transparent;
  color: var(--theme-color);
  border-radius: 0;
  border: none;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
}

.key-feature-content .key-feature-list li {
  position: relative;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 14px;
  padding-left: 25px;
}

.key-feature-content .key-feature-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(../image/checked-mark.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.key-feature-content .key-feature-list li:not(:last-of-type) {
  margin-bottom: 12px;
}

.key-feature-content .key-feature-list li svg {
  width: 23px;
  height: 23px;
}

/* ========== CUSTOM FIELD SECTION ========== */
.custom-field {
  background: linear-gradient(335deg, #f3eef1, #e6d2e1);
}

.row-reverse {
  flex-direction: row-reverse;
}

.custom-field .custom-field-content .subtitle {
  background: var(--theme-color);
  color: var(--white);
  border: none;
  margin-bottom: 15px;
  text-transform: uppercase;
  padding: 8px 10px;
  font-size: 12px;
}

.custom-field .label {
  gap: 10px;
}

.custom-field .custom-field-content {
  background-color: var(--white);
  border: 1px solid var(--theme-color);
  margin-right: -15px;
  padding: 20px 30px 20px 15px;
  border-radius: 15px 0 0 15px;
}

.custom-field .label li {
  font-size: 14px;
  background: rgba(111, 217, 67, 14%);
  border: 1px solid var(--theme-color);
  padding: 3px 15px;
  border-radius: 8px;
  transition: all ease-in-out 0.5s;
}

.custom-field .label li:hover:not(:has(a)) {
  background: var(--white);
}

.custom-field .label li:not(:has(a)) {
  background: var(--white);
}

.custom-field-img img {
  width: 100%;
}

.custom-field-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.custom-field .row-reverse .custom-field-content {
  margin-right: 0;
  margin-left: -15px;
  padding: 20px 15px 20px 30px;
  border-radius: 0 30px 30px 0;
}

/* ========== GET APP SECTION ========== */
.single-product .sales-app-wrapper .subtitle {
  margin-bottom: 15px;
  font-size: 12px;
  padding: 8px 10px;
  background: var(--theme-color);
  border: none;
}

.sales-app-wrapper {
  position: relative;
  padding: 40px 0;
}

.sales-app-wrapper:not(:last-of-type) {
  margin-bottom: 60px;
}

.get-app-section .sales-app-wrapper::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #f6f6f6;
  border-radius: 15px;
}

.get-app-section .sales-wrapper-reverse.sales-app-wrapper::after {
  right: auto;
  left: 0;
}

.get-app-section .sales-app-wrapper .get-app-inner-text {
  padding-right: 30px;
}

/* .get-app-section .sales-wrapper-reverse.sales-app-wrapper .get-app-inner-text {
  padding-left: 15px;
  padding-right: 0;
} */

.get-app-section .sales-app-wrapper .img-div {
  box-shadow: 0px 8px 34px 0px rgba(0, 0, 0, 0.09);
  overflow: hidden;
  border-radius: 15px;
}

.get-app-section .get-app-info {
  padding: 10px 20px !important;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

/* List Wrapper */
.list-wrapper .get-app-info ul li {
  padding: 12px 10px;
  border: none;
  border-bottom: 1px dashed var(--border-color);
  border-radius: 0;
  list-style-type: decimal;
  display: list-item;
  margin-top: 0;
}

.list-wrapper .get-app-info ul li:last-of-type {
  border-bottom: 0;
}

.list-wrapper .get-app-info ul {
  padding-left: 15px;
}

.list-wrapper .get-app-info ul li::before {
  display: none;
}

.list-wrapper .get-app-info ul li:focus,
.list-wrapper .get-app-info ul li:hover {
  background-color: transparent;
  color: var(--second-color);
}

.list-wrapper .get-app-info ul li::marker {
  font-size: 14px;
  background-color: var(--theme-color);
}

.list-wrapper .get-app-info .company-settings-list li:not(:has(a)),
.company-settings-list li:not(:has(a)) {
  background: var(--white);
  color: var(--black);
}

.list-wrapper .get-app-info .company-settings-list li:hover:not(:has(a)),
.company-settings-list li:hover:not(:has(a)) {
  background: var(--white);
}

.list-wrapper .get-app-info .company-settings-list li,
.company-settings-list li {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  background: rgba(111, 216, 67, 0.2);
  border: 1px solid #6fd943 !important;
  padding: 3px 15px;
  margin: 0;
  border-radius: 8px;
  list-style: none !important;
  transition: all ease-in-out 0.5s;
}

.list-wrapper .get-app-info .company-settings-list li:hover,
.company-settings-list li:hover {
  background: var(--theme-color);
  color: var(--black);
}

.list-wrapper .get-app-info .company-settings-list,
ul.company-settings-list {
  gap: 10px;
  padding-left: 0px !important;
  margin-bottom: 0px !important;
}

ul.company-settings-list li {
  margin-bottom: 0;
}

/* ========== MAIN BACKGROUND ========== */
.ecom-single-slider.flex-slider {
  margin: 0;
}

.main-background {
  padding: 40px 0 40px;
  background-color: #f4f1f1;
}

.theme-details-left .ecom-single-slider .slick-list {
  height: 100%;
}

.theme-details-left .ecom-single-slide {
  padding: 0;
  display: block;
}

.theme-details-left {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.theme-details-left .theme-details-imgs img {
  border-radius: 8px;

}

.theme-details-inner .theme-details-top .product_title {
  margin-bottom: 15px;
}

.theme-details-inner .theme-details-top .product_title:has(.category-discount-badge-title) .product-text {
  margin: 0 10px 0 0;
}

.theme-details-inner .seo-hidden-title {
  position: absolute;
  left: -9999px;
}

.theme-details-inner .theme-details-top .details-list .underline {
  text-underline-offset: 4px;
}

.theme-details-inner ins.wp-sale-price {
  font-size: 25px !important;
}

.theme-details-inner .theme-details-top .p-details {
  margin-bottom: 15px;
  gap: 5px;
}

.theme-details-top .details-list li {
  align-items: center;
}

.theme-details-inner li:not(:last-of-type) {
  margin-bottom: 13px;
}

.theme-details-inner li p {
  margin-left: 10px;
  margin-bottom: 0px;
}

.theme-details-inner li span {
  flex: 1;
  line-height: 1;
}

.theme-details-inner .details-list li::before {
  content: "\f00c";
  margin-right: 10px;
  background: var(--dark-green);
  color: var(--white);
  width: 16px;
  height: 16px;
  font-family: "Font Awesome 5 Free";
  font-size: 8px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single .price {
  margin: 15px 0;
  gap: 10px;
}

.single .theme-details-inner .woocommerce-Price-amount,
.theme-details-top .vp-sale-price {
  font-size: 34px;
  font-weight: 600;
}

.theme-details-inner .btn-wrapper {
  margin: 20px 0 0;
}

.theme-details-inner .btn {
  padding: 10px 25px;
}

p.price {
  font-size: 1.41575em;
  margin: 1.41575em 0;
}

/* ========== SALES INFO SECTION ========== */
.sels-info-sec {
  position: relative;
  padding: 40px 0;
}

.sels-info-row {
  flex-wrap: wrap;
  gap: 15px;
}

.sels-info-sec .sels-item-inner {
  padding: 10px 25px;
  background-color: var(--white);
  gap: 10px;
  border-radius: 8px;
  transition: all ease-in-out 0.5s;
}

.sels-info-sec .sels-item-inner svg {
  width: 32px;
  height: 32px;
}

.sels-info-sec .sels-item-inner svg path {
  transition: all ease-in-out 0.5s;
}

.sels-info-sec .sels-item-inner p {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-green);
  flex: 1;
  transition: all ease-in-out 0.5s;
}

.sels-info-sec .sels-info-item a:hover .sels-item-inner {
  background-color: var(--theme-color);
}

.sels-info-sec .sels-info-item a:hover .sels-item-inner p {
  color: var(--white);
}

.sels-info-sec .sels-info-item a:hover .sels-item-inner svg path {
  fill: var(--white);
}

/* ========== WOOCOMMERCE TABS ========== */
.woocommerce-tabs {
  overflow: hidden;
  padding: 1em 0;
}

.woocommerce-tabs::before,
.woocommerce-tabs::after {
  content: "";
  display: table;
}

.woocommerce-tabs::after {
  clear: both;
}

.woocommerce-tabs ul.tabs {
  list-style: none;
  margin-left: 0;
  text-align: left;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.woocommerce-tabs ul.tabs li {
  display: block;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.woocommerce-tabs ul.tabs li a {
  padding: 1em 0;
  display: block;
}

.woocommerce-tabs .panel h2:first-of-type {
  font-size: 1.618em;
  margin-bottom: 1em;
}

.single-product .woocommerce-tabs {
  padding-bottom: 0;
}

.woocommerce-tabs .tabs-wrapper-main {
  display: flex;
  margin: 0 0 40px;
}

.woocommerce-tabs .tabs.wc-tabs {
  gap: 10px;
}

.woocommerce-tabs ul.tabs {
  background: #ededed;
  padding: 8px 10px;
  width: auto !important;
  margin: auto;
  border: 0px;
  border-radius: 8px;
}

.woocommerce-tabs ul.tabs li {
  border: 0 !important;
}

#tab-title-dash a,
#tab-title-ticketgo a,
#tab-title-bookinggo a {
  padding: 10px 15px;
}

.woocommerce-tabs ul.tabs li a {
  position: relative;
  padding: 10px 15px 10px 35px;
  color: var(--dark-green);
  font-size: 16px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  border-radius: 8px;
}

.woocommerce-tabs ul.tabs li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 16px;
  height: 16px;
  display: block;
  margin-right: 5px;
  transform: translateY(-50%);
}

.woocommerce-tabs ul.tabs li#tab-title-item_details a::before {
  background: url("../image/details.svg") no-repeat;
  background-size: 100% 100%;
}

.woocommerce-tabs ul.tabs li#tab-title-reviews a::before {
  background: url("../image/like.svg") no-repeat;
  background-size: 100% 100%;
}

.woocommerce-tabs ul.tabs li#tab-title-comments a::before {
  background: url("../image/comments.svg") no-repeat;
  background-size: 100% 100%;
}

.woocommerce-tabs ul.tabs li#tab-title-supports a::before {
  background: url("../image/support.svg") no-repeat;
  background-size: 100% 100%;
}

.woocommerce-tabs ul.tabs li.active a {
  background: var(--theme-color);
  color: var(--white);
}

.storefront-full-width-content .woocommerce-tabs .panel {
  margin-bottom: 0px;
}

.woocommerce-tabs ul.tabs li.active::after,
.tabs.wc-tabs a:after {
  display: none !important;
}

.woocommerce-tabs ul.tabs li a::after {
  display: none !important;
}

.woocommerce-tabs ul.tabs li::after {
  display: none;
}

/* ========== SALES VIDEO WRAPPER ========== */
.sales-video-wrapper {
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 30px;
}

.sales-video-wrapper .video-documentation {
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
}

.sales-video-wrapper .apps-video img {
  margin-bottom: 30px;
  border-radius: 15px;
}

.sales-video-wrapper p {
  font-size: 16px;
}

.sales-video-wrapper p:not(:last-of-type) {
  margin-bottom: 10px;
}

.sales-video-wrapper .btn-wrapper {
  margin-top: 30px;
}

/* ========== PAYMENT GATEWAY ========== */
.single-product .payment-gateway-content table tr th {
  width: 50%;
  text-transform: capitalize;
  border: none;
}

.payment-gateway-content table {
  position: relative;
}

.payment-gateway-content table tr th:first-of-type {
  border-radius: 10px 0 0 0px;
  min-width: 280px;
}

.payment-gateway-content table tr th:last-of-type {
  border-radius: 0px 10px 0 0px;
  min-width: 280px;
}

.payment-gateway-content table tr td {
  letter-spacing: 0;
  color: var(--black);
  text-transform: capitalize;
  font-size: 14px;
  border: none;
}

.payment-gateway-content table tbody tr:not(:last-of-type) {
  border-bottom: 1px dashed var(--border-color);
}

.payment-gateway-content table tr td:first-of-type,
.payment-gateway-content table tbody tr:nth-child(2n) td:first-of-type {
  background-color: #f1f1f1 !important;
}

.payment-gateway-content table tr:last-of-type td:first-of-type {
  border-radius: 0 0 0 10px;
}

.payment-gateway-content {
  position: relative;
}

.payment-gateway-content table tr:last-of-type td:last-of-type {
  border-radius: 0 0 10px 0px;
}

.dash-payment-gateway .payment-gateway-content {
  overflow-x: auto;
}

.dash-payment-gateway .payment-gateway-content::-webkit-scrollbar-thumb {
  height: 5px;
  background-color: var(--dark-green);
  overflow: hidden;
  border-radius: 8px;
}

.dash-payment-gateway .payment-gateway-content::-webkit-scrollbar-track {
  background-color: var(--white);
  overflow: hidden;
  border-radius: 8px;
}

.dash-payment-gateway .payment-gateway-content::-webkit-scrollbar {
  height: 5px;
  overflow: hidden;
  border-radius: 8px;
}

.payment-gateway-content .payment-btn-wrapper {
  margin-top: 15px;
  text-align: center;
}

/* ========== SCREENSHOT SECTION ========== */
.screenshot-section {
  background: #f4f1f1;
}

.app-features-section .section-title .subtitle,
.screenshot-section .section-title .subtitle {
  background: var(--theme-color);
  color: var(--white);
  border: none;
  margin-bottom: 15px;
}

.screenshots-gallery-slider .slick-list {
  padding: 30px 25% 90px !important;
}

.screenshots-gallery-slider .screenshot-inner {
  position: relative;
  padding-top: 57.2%;
  display: block;
  opacity: 0.4;
  transform: scale(0.9);
  border: 2px solid var(--dark-green);
  border-radius: 20px;
}

.screenshots-gallery-slider .screenshot-inner img {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid var(--border-color);
  background-color: var(--white);
  overflow: hidden;
  border-radius: 20px;
  object-fit: scale-down;
}

.screenshots-gallery-slider .slick-center .screenshot-inner {
  transform: scale(1.1);
  opacity: 1;
}

.screenshots-gallery-slider .slick-arrow {
  width: 40px;
  height: 40px;
  top: auto;
  bottom: 0;
  background: transparent;
  transform: translate(0) !important;
  border: 1px solid var(--second-color);
  border-radius: 50%;
}

.screenshots-gallery-slider .slick-arrow svg path {
  transition: all ease-in-out 0.3s;
}

.screenshots-gallery-slider .slick-arrow:hover {
  border-color: var(--theme-color);
}

.screenshots-gallery-slider .slick-arrow:hover svg path {
  fill: var(--theme-color);
}

.screenshots-gallery-slider .slick-prev {
  left: calc(50% - 65px);
}

.screenshots-gallery-slider .slick-next {
  right: calc(50% - 65px);
}

.screenshots-gallery-slider .slick-arrow svg {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  max-width: none;
  width: 35px;
  height: 35px;
}

.screenshots-gallery-slider .slick-arrow.slick-next svg {
  left: -15px;
  right: auto;
}

.screenshots-gallery-slider .slick-arrow.slick-prev svg {
  right: -15px;
  transform: translate(0, -50%) scaleX(-1);
}

.screenshots-gallery-slider:not(.slick-initialized) {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .screenshots-gallery-slider .slick-list {
    padding: 20px 0 60px !important;
  }

  /* remove zoom effect */
  .screenshots-gallery-slider .screenshot-inner {
    transform: scale(1);
    opacity: 1;
  }

  .screenshots-gallery-slider .slick-center .screenshot-inner {
    transform: scale(1);
  }
}

/* ========== GLIGHTBOX ========== */
.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background-color: var(--white) !important;
}

.glightbox-clean .gclose path,
.glightbox-clean .gnext path,
.glightbox-clean .gprev path {
  fill: var(--dark-green) !important;
}

.gclose,
.gnext,
.gprev {
  width: 50px !important;
  height: 50px !important;
  padding: 5px !important;
}

.glightbox-clean .gclose {
  width: 35px !important;
  height: 35px !important;
}

.glightbox-clean .gnext,
.glightbox-clean .gprev {
  top: 45% !important;
  border: 1px solid var(--border-color) !important;
}

.glightbox-clean .gslide-description {
  background: none !important;
  margin: 20px auto 0 auto !important;
}

.glightbox-clean .gslide-title {
  margin: 0 !important;
  color: var(--white) !important;
}

.glightbox-clean .gdesc-inner {
  padding: 20px;
  text-align: center;
}

/* ========== APP FEATURES SECTION ========== */
.app-features-section .app-features-icon {
  width: 60px;
  height: 60px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 10px;
}

.app-features-section .app-features-icon img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.app-features-section .app-features-content {
  flex: 1;
  padding-left: 20px;
}

.app-features-section .app-features-content h4,
.app-features-section .app-features-content p {
  margin-bottom: 15px;
}

.app-features-section h4 a {
  font: var(--h5);
}

.app-features-row {
  row-gap: 30px;
}

.app-features-section .app-features-inner {
  position: relative;
  background: var(--light-gray);
  border: 1px solid var(--border-color);
  padding: 30px 20px;
  border-radius: 15px;
}

.app-features-section .app-features-inner .product-excerpt {
  overflow: hidden;
}

.app-features-section .app-features-inner .dash-view-more {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.app-features-section .app-features-inner .dash-view-more:hover {
  color: var(--theme-color);
}

/* ========== WOOCOMMERCE REVIEWS ========== */
#reviews .cr-summaryBox-wrap {
  background: var(--white);
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
}

.top-title {
  padding: 10px 10px;
  border-bottom: 1px solid #ddd;
  background: var(--dark-green);
  color: var(--white);
  gap: 10px;
  border-radius: 10px 10px 0 0;
}

.genzerp-comment-box {
  margin-left: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.genzerp-comment-box .review-header {
  gap: 15px;
}

.top-title time {
  color: var(--white) !important;
}

#reviews .commentlist li time {
  opacity: 1;
  font-weight: 600;
}

.woocommerce-tabs .panel h2:first-of-type {
  margin-bottom: 15px;
}

.genzerp-comment-box .description p {
  padding: 25px 10px;
  margin: 0 !important;
}

.genzerp-comment-box .crstar-rating {
  margin: 0 !important;
}

.ivole-histogramRow {
  position: relative;
  display: block;
}

.ivole-histogramRow::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -24px;
  width: 15px;
  height: 15px;
  color: var(--third-color);
  background-image: url(../../assets-v2/images/common-img/review-star.svg);
  background-size: 15px;
  background-repeat: no-repeat;
}

#reviews.cr-reviews-ajax-reviews #comments.cr-reviews-ajax-comments .cr-ajax-reviews-list,
#reviews.cr-reviews-ajax-reviews #comments.cr-reviews-ajax-comments .cr-ajax-reviews-list li:last-of-type {
  margin-bottom: 0 !important;
}

.woocommerce-review__author {
  color: var(--third-color);
  font-weight: 600;
  text-transform: capitalize;
}

#reviews .ivole-meter {
  height: 5px;
  border: 0px !important;
  box-shadow: unset;
  background: -webkit-linear-gradient(top, #eee, #eaeaea);
  border-radius: 8px;
}

#reviews .ivole-meter .ivole-meter-bar {
  box-shadow: unset;
}

.cr-ajax-search {
  display: none !important;
}

.wc-tab-content #reviews {
  max-width: 900px;
  width: 100%;
  margin: auto;
  padding: 0 15px 0;
}

#reviews .commentlist li {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.19);
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

#reviews #comments .comment-text {
  border-bottom: unset !important;
  padding-bottom: 0 !important;
}

.cr-overall-rating-wrap {
  width: 100px !important;
  height: 180px;
  border: 5px solid var(--third-color) !important;
  flex-basis: 180px !important;
  margin: 20px auto !important;
  border-radius: 50% !important;
}

.genzerp-rating-category {
  text-transform: capitalize;
}

.feature-tab-sec .section-title h2,
.app-features-section .section-title h2,
.screenshot-section .section-title h2,
.mobile-app-core-sec .section-title h2,
.bookinggo-theme-wrapper .section-title h2 {
  font: var(--h2) !important;
}

/* ========== PRODUCT COMMENT FORM ========== */
#custom-form-genzerp,
.genzerp-review-leave {
  padding: 15px;
  background: var(--white);
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
}

#custom-form-genzerp textarea,
#custom-form-genzerp input {
  background-color: var(--white);
  color: var(--black);
}

#custom-form-genzerp textarea:focus,
#custom-form-genzerp input:focus {
  background-color: var(--white);
  color: var(--black);
}

#custom-form-genzerp #form-result {
  padding: 10px 0 0 0;
}

#custom-form-genzerp .form-group label {
  font-weight: 600;
  color: var(--black);
}

.sub-btn .btn {
  width: auto;
}

/* Review Summary Box */
#reviews .cr-summaryBox-wrap {
  margin: 0 0 1em 0;
  background-color: var(--light-gray);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2px;
  align-items: center;
}

#reviews .cr-summaryBox-wrap .cr-overall-rating-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}

#reviews .cr-summaryBox-wrap .ivole-summaryBox,
#reviews .cr-summaryBox-wrap .cr-overall-rating-wrap {
  margin: 0px;
  width: 49%;
  flex: 0 0 49%;
  padding: 10px;
  border-radius: 4px;
  border: 0px solid #e4e1e3;
  box-sizing: border-box;
}

#reviews .cr-summaryBox-wrap .cr-average-rating {
  font-size: 36px;
  font-weight: bold;
  line-height: 50px;
  color: #0e252c;
}

.cr-average-rating-stars {
  line-height: 0;
}

.cr-average-rating-stars .crstar-rating-svg {
  margin: 5px 0 0 0;
}

.crstar-rating-svg {
  margin: 8px 0;
  position: relative;
  display: inline-block;
}

.crstar-rating-svg .cr-rating-icon-base {
  display: flex;
  height: 20px;
}

.crstar-rating-svg .cr-rating-icon-base .cr-rating-icon-bg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #ffbc00;
}

.crstar-rating-svg .cr-rating-icon-frnt {
  display: flex;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.crstar-rating-svg .cr-rating-icon-frnt .cr-rating-icon {
  width: 20px;
  height: 20px;
  fill: #ffbc00;
  flex-shrink: 0;
}

#reviews .cr-summaryBox-wrap .cr-total-rating-count {
  font-size: 14px;
  color: #0e252c;
  line-height: 25px;
}

.cr-histogramTable .ivole-histogramRow {
  border: 0px;
}

.cr-histogramTable tr.ivole-histogramRow td:first-child {
  padding-left: 0;
}

.cr-histogramTable tr.ivole-histogramRow:first-child td {
  padding-top: 0;
}

.cr-histogramTable tr.ivole-histogramRow .ivole-histogramCell1 {
  white-space: nowrap;
  width: auto;
}

.cr-histogramTable tr.ivole-histogramRow td {
  padding: 0.2rem 0.3rem;
  vertical-align: middle;
  border: 0px;
  background-color: transparent;
}

.cr-histogramTable tr.ivole-histogramRow .ivole-histogram-a,
.cr-histogramTable tr.ivole-histogramRow .cr-histogram-a {
  display: inline;
  cursor: pointer;
  color: #0e252c;
}

.cr-histogramTable tr.ivole-histogramRow .ivole-histogramCell2 {
  width: 70%;
}

.cr-histogramTable tr.ivole-histogramRow:first-child td {
  padding-top: 0;
}

.cr-histogramTable tr.ivole-histogramRow .ivole-histogramCell3 {
  text-align: right;
  white-space: nowrap;
  width: auto;
}

.cr-all-reviews-shortcode .cr-count-row,
#reviews.cr-reviews-ajax-reviews .cr-count-row {
  background-color: var(--light-gray);
  color: #0e252c;
  font-size: 14px;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px auto;
  border: 1px solid #d5d5d5;
  box-shadow: 0 0 5px 0px rgb(0 0 0 / 10%);
  border-radius: 8px;
}

.cr-ajax-reviews-sort-div {
  display: flex;
  justify-content: space-between;
  max-width: 160px;
  width: 100%;
}

.cr-reviews-ajax-reviews .cr-ajax-reviews-sort-div .cr-ajax-reviews-sort,
.cr-all-reviews-shortcode .cr-ajax-reviews-sort-div .cr-ajax-reviews-sort {
  display: block;
  margin: 0;
  background: transparent;
  border: 0px;
  padding: 4px;
  width: auto;
  height: auto;
  appearance: auto;
  color: #0e252c;
  font-size: 12px;
  font-weight: 500;
}

.cr-ajax-reviews-sort-div .nice-select {
  width: 100% !important;
  font-size: 14px !important;
}

.cr-ajax-reviews-sort-div .list {
  border-radius: 8px;
  overflow: hidden;
}

.genzerp-product-comment {
  max-width: 900px;
  width: 100%;
  margin: auto;
}

.woocommerce-tabs .panel h2:first-of-type {
  font-size: 1.618em;
  margin-bottom: 1em;
}

.single-product .woocommerce-noreviews:last-of-type {
  margin-bottom: 0;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
  background-color: var(--third-color);
  border-radius: 7px;
  margin-bottom: 15px;
  font-weight: 600;
  margin-left: 0;
  border-radius: 2px;
  color: var(--white);
  clear: both;
  border-left: 0.6180469716em solid rgba(0, 0, 0, 0.15);
  padding: 1em 2em 1em 3.5em;
  position: relative;
  list-style: none outside;
  border-radius: 7px;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before,
.woocommerce-noreviews::before,
p.no-comments::before {
  font-family: "Font Awesome 5 Free";
  content: "\f05a";
  display: inline-block;
  position: absolute;
  top: 1.05em;
  left: 1.5em;
  color: var(--white);
  font-weight: 900;
}

/* ========== COMMENTS SECTION ========== */
.woocommerce-tabs .user-comments {
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.05);
  background: var(--white);
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #e1e8ed;
  border-radius: 10px;
}

.woocommerce-tabs .media__author {
  margin-left: 15px;
}

.comment__body--response {
  margin-top: 15px;
}

.commnet-media {
  gap: 5px;
}

.comment__item-response {
  background: var(--white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
  margin-left: 50px;
  margin-top: 15px;
  padding: 15px;
  border: 1px solid #6fd943;
  border-radius: 10px;
}

.comment__item {
  background: var(--white);
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.04);
  padding: 20px;
  margin-top: 15px;
  border: 1px solid #e1e8ed;
  border-radius: 10px;
}

.commnet-found {
  margin-bottom: 10px;
}

div#custom-comments {
  margin-bottom: 20px;
}

.genzerp-product-comment .media__item img {
  border-radius: 100%;
}

#reviews #comments.cr-reviews-ajax-comments .cr-ajax-reviews-list ul.children {
  width: 100%;
  margin: 0px !important;
}

/* ========== SUPPORT SECTION ========== */
.sec-box-shadow {
  background: var(--white);
  padding: 15px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto 20px;
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}

.sec-box-shadow .pt-2 {
  padding: 0 0 10px;
}

.sec-box-shadow .border-1px {
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.color-blue {
  color: #0085ff;
  font-size: 16px;
  font-weight: 600;
  text-underline-offset: 2px;
  text-decoration-line: underline;
}

.sec-box-shadow .pt-2 ul li {
  gap: 10px;
  margin: 15px 10px 0;
  line-height: 1.2;
}

.sec-box-shadow .pt-2 ul li::before {
  content: "\f00c";
  background: var(--dark-green);
  color: var(--white);
  width: 18px;
  height: 18px;
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
}

.sec-box-shadow .div-3 ul li::before {
  content: "\f00d";
  background: red;
}

.sec-box-shadow svg {
  flex-shrink: 0;
}

.storefront-full-width-content .woocommerce-tabs .panel p .color-blue {
  font-size: 14px;
}

/* ========== RELATED DOCUMENT SECTION ========== */
.doc-box-innner {
  background: var(--white);
  color: var(--black);
  padding: 20px;
  border-radius: 8px;
}

.doc-box-innner h3 {
  margin-bottom: 10px;
}

.doc-box-innner .btn {
  padding: 10px 20px;
  margin-top: 10px;
}

.doc-box-innner .docs-bottom h3 a {
  color: var(--dark-green);
  font-weight: 600;
}

.doc-box-innner .docs-bottom p {
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}

.doc-box-innner .docs-bottom .btn-wrapper {
  flex: 1;
}

.related-document-section .category-name {
  margin-bottom: 10px;
  gap: 5px;
}

.document-details-wrapper .doc-box-innner .subtitle {
  border: none;
  padding: 5px 10px;
  margin-bottom: 0;
  font-size: 12px;
  text-transform: none;
  background-color: var(--theme-color);
}

/* ========== TAB CONTENT ========== */
.wc-tab-content {
  display: block;
}

.wc-tab-content.active {
  display: block;
}

/* ========== UTILITY CLASSES ========== */
.bg-dark-green {
  background: var(--dark-green) !important;
  color: var(--white) !important;
}

.text-theme {
  color: var(--theme-color) !important;
}

/* ========== CONTACT SECTIONS ========== */
.home-section {
  padding: 100px 0 80px;
}

.contact-page-wrapper .contact-section .icon-div {
  margin-left: 10px;
  font-size: 25px;
  color: var(--white);
}

.contact-page-wrapper .custom-req-form {
  padding: 30px 20px;
  margin-top: -400px;
  background: var(--white);
  box-shadow: 0px 0px 61px rgba(88, 88, 88, 0.2);
  border-radius: 8px;
}

.contact-page-wrapper .custom-req-form .form-group label {
  color: var(--second-color);
  font-weight: 600;
}

.contact-page-wrapper .custom-req-form .form-group .form-control::-webkit-input-placeholder {
  color: var(--second-color);
}

.contact-page-wrapper .custom-req-form .form-group .form-control::-moz-placeholder {
  color: var(--second-color);
}

.contact-page-wrapper .custom-req-form .form-group .form-control:-ms-input-placeholder {
  color: var(--second-color);
}

.contact-page-wrapper .custom-req-form .form-group .form-control::-ms-input-placeholder {
  color: var(--second-color);
}

.contact-page-wrapper .custom-req-form .form-group .form-control::placeholder,
.contact-page-wrapper .custom-req-form .form-group .form-control {
  color: var(--second-color);
}

.contact-page-wrapper .custom-req-form .form-group .form-control:focus {
  border-color: var(--black);
}

.contact-page-wrapper .custom-req-form input[type="submit"] {
  background-color: var(--theme-color);
  border: none;
}

.contact-page-wrapper .custom-req-form input[type="submit"]:hover {
  background-color: var(--black);
}

.contact-inner-col .wpcf7-response-output {
  border: 0 !important;
  text-align: center;
  margin: 15px 0 !important;
}

.contact-card {
  position: relative;
  border: 1px solid var(--third-color);
  padding: 40px 15px 40px 60px;
  color: var(--white);
  max-width: 325px;
  width: 100%;
  border-radius: 8px;
  margin: 0 0 20px auto;
}

.contact-card label {
  font-weight: 600;
  line-height: 1;
  color: var(--third-color);
  display: block;
}

.contact-card .icon-div {
  position: absolute;
  left: -30px;
  top: 50%;
  margin: 0;
  box-shadow: none;
  transform: translateY(-50%);
}

.contact-card .icon-div svg {
  width: 25px;
  height: 25px;

}

.cards-wrapper .contact-card:first-of-type {
  max-width: 450px;
  background: var(--third-color);
}

.cards-wrapper .contact-card:first-of-type a {
  display: block;
  font-size: 28px;
  font-weight: 600;
}

.cards-wrapper .contact-card:first-of-type label {
  color: var(--second-color);
  margin-bottom: 5px;
}

.cards-wrapper .contact-card .btn {
  margin-top: 12px;
}
.cards-wrapper .contact-card .btn:hover{
  color: #fff !important;
}
.custom-req-form button.submit-btn,
.custom-req-form input.submit-btn {
  padding: 14px 20px;
  font-weight: 600;
}

.support-wrapper .contact-card .btn svg {
  width: 18px;
  height: 18px;
}

.support-wrapper .contact-card label {
  font-size: 14px;
}

.support-wrapper .contact-card {
  padding: 30px 15px 30px 60px;
}

.support-wrapper .cards-wrapper .contact-card:first-of-type {
  max-width: 423px;
}

.support-wrapper .left-side.section-title p {
  margin-top: 30px;
}

.support-wrapper .contact-section .title-content-inner .secondary-btn {
  padding: 8px 32px;
}

.support-wrapper .contact-section .title-content-inner .icon-div {
  width: 50px;
  height: 50px;
}

.support-wrapper .secondary-btn:not(form .secondary-btn),
.support-wrapper .contact-card .btn:not(form .btn) {
  padding: 8px 20px;
}

.support-wrapper .btn.btn-white:hover {
  background: var(--theme-color);
}

.support-wrapper .cards-wrapper {
  padding: 30px 40px 30px 25px;
}

.support-wrapper .cards-wrapper .contact-card:last-child {
  margin-bottom: 0;
}

/* ========== FEATURES CARD SECTION ========== */
.support-wrapper .features-card .icon-div {
  margin-top: -85px;
}

.support-wrapper .features-card-section .features-card {
  padding: 56px 35px 30px;
  border: 1px solid #dedede;
  margin-top: 40px;
  border-radius: 10px;
}

.support-wrapper .features-card .icon-div {
  width: 56px;
  height: 56px;
}

.support-wrapper .features-card-section .features-card h4 {
  font-size: 18px;
  text-align: center;
}

.support-wrapper .features-card-section .features-card p {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
}

.support-wrapper .features-card-section .row {
  row-gap: 20px;
}

.development-wrapper .features-card {
  background: var(--white);
  border: 1px solid #00000040;
  text-align: center;
  margin-top: 35px;
  border-radius: 20px;
}

.features-card {
  position: relative;
  z-index: 1;
  padding: 20px 15px;
  color: var(--second-color);
}

.feature-card-row {
  gap: 30px 0;
}

.development-wrapper .features-card .icon-div {
  margin-top: -50px;
}

.development-wrapper .features-card p {
  margin-bottom: 0;
}

.features-card svg {
  width: 28px;
  height: 28px;
  color: inherit;
}

.features-card h4,
.features-card p {
  margin-bottom: 15px;
}

.features-card p {
  flex: 1;
}

.icon-div {
  position: relative;
  width: 65px;
  height: 65px;
  background: var(--third-color);
  color: var(--dark-green);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  box-shadow: 0px 0px 0px 6px rgba(152, 107, 156, 0.5);
}

.icon-div.bg-dark {
  background: var(--third-color) !important;
  box-shadow: 0px 0px 0px 6px rgba(152, 107, 156, 0.5);
}

.icon-div.bg-dark svg path {
  fill: var(--theme-color) !important;
}

.development-wrapper .features-card-section .row {
  row-gap: 20px;
}

.page-template-mobile-apps-solutions .features-card-section .features-card h4,
.page-template-saas_solutions .features-card-section .features-card h4 {
  color: #002332 !important;
}

.feature-card-row .features-card .icon-div,
.tech-card .icon-div,
.pro-feature-card .icon-div,
.four-card-section .icon-div {
  width: 60px;
  height: 60px;
  background: #013d2933;
  box-shadow: none;
  margin: 0 0 20px;
  border-radius: 4px;
}

.feature-card-row .features-card .icon-div svg,
.tech-card .icon-div svg,
.pro-feature-card .icon-div svg,
.four-card-section .icon-div svg {
  width: 38px;
  height: 38px;
}

.feature-card-row .card:nth-child(even) .features-card,
.technology-section .tech-card:nth-child(even) .tech-card-inner,
.four-card-section .four-card:nth-child(even) .four-card-inner {
  background: var(--theme-color);
}

.feature-card-row .card:nth-child(odd) .features-card,
.technology-section .tech-card:nth-child(odd) .tech-card-inner,
.four-card-section .four-card:nth-child(odd) .four-card-inner {
  background: var(--dark-green);
  color: var(--white);
}

.feature-card-row .card:nth-child(odd) .icon-div,
.technology-section .tech-card:nth-child(odd) .icon-div,
.pro-feature-section .pro-feature-row .pro-feature-card:nth-child(odd) .icon-div,
.four-card-section .four-card:nth-child(odd) .four-card-inner .icon-div {
  background: rgba(111, 217, 67, 0.2);
}

.feature-card-row .card:nth-child(odd) .features-card h4,
.feature-card-row .card:nth-child(odd) .features-card p,
.technology-section .tech-card:nth-child(odd) .tech-card-inner h3,
.four-card-section .four-card:nth-child(odd) .four-card-inner h3 {
  color: var(--white);
}

/* ========== CONTACT LANDING SECTION ========== */
.contact-section.contact-landing-section .contact-inner-col .form-control::-webkit-input-placeholder {
  color: var(--white);
}

.contact-section.contact-landing-section .contact-inner-col .form-control::-moz-placeholder {
  color: var(--white);
}

.contact-section.contact-landing-section .contact-inner-col .form-control:-ms-input-placeholder {
  color: var(--white);
}

.contact-section.contact-landing-section .contact-inner-col .form-control::-ms-input-placeholder {
  color: var(--white);
}

.contact-section.contact-landing-section .contact-inner-col .form-control::placeholder,
.contact-section.contact-landing-section .contact-inner-col .form-group label {
  color: var(--white);
}

.contact-section.contact-landing-section .contact-inner-col .form-control {
  background-color: transparent;
  color: var(--white);
}

.contact-section .left-col .section-title {
  max-width: 520px;
  width: 100%;
  padding-top: 0;
}

.contact-section {
  background-color: #fffbf0;
  padding-bottom: 40px;
}

.contact-section .section-title span {
  text-transform: capitalize;
}

.contact-section .contact-inner-col .form-group .btn {
  min-width: 150px;
  width: auto;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--theme-color) !important;
  color: var(--black);
  border: none;
  border-radius: 8px;
}

.contact-section .contact-inner-col .form-group .btn:hover {
  color: var(--white);
}

.contact-section .contact-inner-col .form-group label {
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
}

.contact-section .contact-inner-col .form-control {
  background-color: rgba(111, 217, 67, 0.1);
  color: var(--black);
  border: 1px solid #d9d9d9;
  border-radius: 8px;
}

.contact-section .section-title p {
  font-size: 16px;
}

.contact-section .contact-image {
  position: relative;
  padding-top: 60%;
}

.contact-section .contact-image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: left;
}

.contact-section .contact-inner-col .form-control::-webkit-input-placeholder {
  color: #555555;
  transition: all ease-in-out 0.5s;
}

.contact-section .contact-inner-col .form-control::-moz-placeholder {
  color: #555555;
  transition: all ease-in-out 0.5s;
}

.contact-section .contact-inner-col .form-control:-ms-input-placeholder {
  color: #555555;
  transition: all ease-in-out 0.5s;
}

.contact-section .contact-inner-col .form-control::-ms-input-placeholder {
  color: #555555;
  transition: all ease-in-out 0.5s;
}

.contact-section .contact-inner-col .form-control::placeholder {
  color: #555555;
  transition: all ease-in-out 0.5s;
}

.contact-section .contact-inner-col .form-control:focus {
  transition: all ease-in-out 0.5s;
}

.contact-section .container>.row {
  row-gap: 15px;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  padding-top: 5px;
  font-weight: 700;
  line-height: 1;
}

.wpcf7 form.invalid .wpcf7-response-output {
  font-size: 14px;
  font-weight: 700;
  color: #dc3232 !important;
  border: 0;
  margin: 0;
  margin-top: 10px;
  text-align: center;
}

.wpcf7 .row>div:last-child .form-group {
  margin-bottom: 0;
}

.wpcf7 .form-group.submit-btn {
  position: relative;
  margin-bottom: 0;
}

.wpcf7 .form-group.submit-btn svg {
  position: absolute;
  top: 15px;
  left: 55%;
  right: 0;
  width: 14px;
  height: 14px;
  display: none;
}

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: #8a9591;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(170%, -50%);
}

form.submitting .wpcf7-spinner {
  visibility: visible;
}

.submit-btn br {
  display: none;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (min-width: 992px) {
  .hero {
    margin-top: 100px;
    padding-bottom: 40px;
    padding-top: 40px;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    padding: 20px;
    margin-top: 15px;
    border-radius: 10px;
  }

  .nav {
    gap: 20px;
  }

  .nav-link {
    font-size: 18px;
    padding: 10px 0;
    text-align: center;
  }

  .logo-text,
  .logo-text-accent {
    font-size: 24px;
  }

  .btn-primary {
    text-align: center;
    padding: 15px 23px;
  }
  .hero-title{
    font-size: 20px;
  }

  .product-rating-content .add-to-cart {
    padding: 10px 15px;
  }
}

@media (max-width: 767px) {
  .faq-box {
    padding: 15px;
  }

  .accordion-container .set>a {
    font-size: 14px;
  }

  .bookinggo-sass-top-sec .bookinggo-left-col .bookinggo-btn-wrapper {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {

  .secondary-btn svg,
  .btn svg {
    width: 18px;
    height: 18px;
  }
}

@media screen and (max-width: 767px) {
  .bookinggo-sass-top-sec .bookinggo-left-col .bookinggo-btn-wrapper {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-page-wrapper .custom-req-form {
    padding: 30px 20px;
    margin-top: 0px;
    background: var(--white);
    box-shadow: 0px 0px 61px rgba(88, 88, 88, 0.2);
    border-radius: 8px;
  }
}

.form-group {
  margin-bottom: 20px;
}

#module-image-carousel .owl-dots {
  text-align: center;
  margin-top: 12px;
}

#module-image-carousel .owl-dot span {
  width: 8px;
  height: 8px;
  background: #cfcfcf;
  border-radius: 50%;
  transition: all 0.3s ease;
}

#module-image-carousel .owl-dot.active span {
  background: #11464d;
  width: 10px;
  height: 10px;
}

.slick-slider .slick-slide {
  padding: 2px 10px;
}

/******************** app-features-section start css ********************/

.app-features-section .app-features-icon {
  width: 60px;
  height: 60px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 10px;
}

.app-features-section .app-features-icon img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.app-features-section .app-features-content {
  flex: 1;
  padding-left: 20px;
}

.app-features-section .app-features-content h4,
.app-features-section .app-features-content p {
  margin-bottom: 15px;
}

.app-features-section h4 a {
  font: var(--h5);
}

.app-features-row {
  row-gap: 30px;
}

.app-features-section .app-features-inner {
  position: relative;
  background: #f6f6f6;
  border: 1px solid var(--border-color);
  padding: 30px 20px;
  border-radius: 15px;
}

.app-features-section .app-features-inner .product-excerpt {
  overflow: hidden;
}

© .app-features-section .app-features-inner .dash-view-more {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.app-features-section .app-features-inner .dash-view-more:hover {
  color: var(--theme-color);
}

.section-title {
  margin-bottom: 30px;
}

/* ================= Mobile Responsive Enhancements ================= */

@media (max-width: 767.98px) {

  /* Section padding */
  .app-features-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Card layout stacking */
  .app-features-section .app-features-inner {
    flex-direction: column;
    padding: 20px;
  }

  /* Center icon on mobile */
  .app-features-section .app-features-icon {
    margin: 0 auto 15px auto;
  }

  /* Content alignment */
  .app-features-section .app-features-content {
    padding-left: 0;
    text-align: center;
  }

  /* Typography scaling */
  .app-features-section .app-features-content h4 {
    font-size: 18px;
  }

  .app-features-section .app-features-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Improve tap target */
  .app-features-section .dash-view-more {
    display: inline-block;
    margin-top: 10px;
  }
}

/******************** app-features-section end css ********************/

#module-image-carousel .owl-dots {
  text-align: center;
  margin-top: 12px;
}

#module-image-carousel .owl-dot span {
  width: 8px;
  height: 8px;
  background: #cfcfcf;
  border-radius: 50%;
  transition: all 0.3s ease;
}

#module-image-carousel .owl-dot.active span {
  background: #11464d;
  width: 10px;
  height: 10px;
}

/* Grid wrapper */
.information-wrapper {
  margin-top: 30px;
}

/* Card box */
.information-content {
  height: 100%;
  border: 1px solid var(--theme-color);
  padding: 30px 25px;
  text-align: center;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.information-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.15);
}

/* Remove old flex layout */
.information-content .information-col {
  padding: 0;
}

/* Left column reset */
.information-col-left {
  max-width: 100%;
  flex-direction: column;
  gap: 15px;
  /* margin-bottom: 15px; */
}

/* Remove divider line */
.information-col-left::before {
  display: none;
}

/* Icon */
.information-icon {
  width: 50px !important;
  height: 50px !important;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  position: absolute;
  top: -24%;
}

.information-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.information-icon i {
  font-size: 1.4rem;
  object-fit: contain;
}

/* Title */
.information-col-left h3 {
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

/* Description */
.information-col-right p {
  padding: 0;
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* Heading underline */
.underline-border {
  border-bottom: 2px solid var(--theme-color);
  color: var(--theme-color);
}

.system-ticket-wrapper {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.system-ticket-wrp {
  animation: marquee 70s linear infinite;
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.system-ticket-wrapper:hover .system-ticket-wrp {
  animation-play-state: paused;
}

.system-ticket-box .system-ticket-card .system-ticket-inner {
  background-color: var(--white);
  border: 2px solid rgba(138, 101, 128, 0.2);
  box-shadow: 0px 4px 55px 0px rgba(0, 0, 0, 0.07);
  padding: 15px;
  text-align: center;
  border-radius: 15px;
}

.system-ticket-box .system-ticket-card .system-ticket-inner span {
  font-size: 20px;
  margin-bottom: 10px;
  white-space: normal;
  display: block;
  font-weight: 700;
}

.system-ticket-box .system-ticket-card .system-ticket-inner p {
  white-space: normal;
}

.system-ticket-box {
  position: relative;
  min-height: 478px;
  cursor: -webkit-grab;
  cursor: grab;
}

.system-ticket-box .system-ticket-card {
  position: relative;
  width: 400px;
  min-height: 240px;
  border-bottom: 2px dashed var(--theme-color);
}

.odd-ticket {
  align-items: flex-end;
  justify-content: flex-end;
}

.odd-ticket .system-ticket-card {
  justify-content: flex-end;
  border-bottom: 0;
  border-top: 2px dashed var(--theme-color);
}

.even-ticket {
  align-items: flex-start;
  justify-content: flex-start;
}

.even-ticket .system-ticket-card {
  justify-content: flex-start;
}

.system-ticket-box::before {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  bottom: calc(50% - 10px);
  height: 20px;
  width: 20px;
  background: var(--theme-color);
  border-radius: 50px;
}

.system-ticket-box:nth-child(odd) .system-ticket-inner::after {
  bottom: 100%;
}

.system-ticket-box .system-ticket-inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  height: 100%;
  border-right: 2px dashed var(--theme-color);
  transform: translateX(-50%);
}

.affiliate-section {
  position: relative;
  z-index: 1;
}

.af-bg-img img {
  position: absolute;
  z-index: -1;
  width: auto;
}

.af-bg-img1 {
  top: 0;
  left: 5%;
}

.af-bg-img2 {
  top: 6%;
  left: 4%;
}

.af-bg-img3 {
  top: 80%;
  left: 30%;
}

.bg-light-gray {
  background-color: var(--light-gray);
}

.offset-left {
  margin-left: calc((100% - 1280px) / 2);
  padding-left: 15px;
  overflow-x: hidden;
}

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

/* Tablet & Mobile */
@media (max-width: 1199px) {
  .offset-left {
    margin-left: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Mobile only */
@media (max-width: 767px) {
  .affiliate-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .af-bg-img {
    display: none;
  }

  .section-title h2 {
    font-size: 17px;
    line-height: 1.4;
  }

  .section-title p {
    font-size: 14px;
  }

  .affiliate-img img {
    margin-top: 30px;
    height: auto;
  }

  /* CTA buttons stack properly */
  /* .section-title .d-flex {
    flex-direction: column;
  } */

  .section-title .btn {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .get-app-section .sales-app-wrapper::after {
    width: 100%;
  }

  .sales-app-wrapper:not(:last-of-type) {
    margin-bottom: 30px;
  }
}

.system-sec {
  overflow-x: hidden;
}


#client-review-slider,
#client-review-slider .owl-stage-outer,
#client-review-slider .owl-stage {
  height: 100%;
}

.owl-carousel .owl-stage {
  display: flex;
}

#client-review-slider .item {
  display: flex;
  height: 100%;
}

@media (max-width: 992px) {
  .system-ticket-box .system-ticket-card {
    width: 230px;
  }

  .system-ticket-box .system-ticket-card .system-ticket-inner p {
    white-space: normal;
    font-size: 14px;
  }

  .system-ticket-box .system-ticket-card .system-ticket-inner span {
    font-size: 16px;
    margin-bottom: 3px;
  }

  .system-ticket-wrp {
    animation: marquee 25s linear infinite;
  }
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.92);


  justify-content: center;
  align-items: center;
}

.image-modal.active {
  display: flex;
}


.modal-content {
  max-width: 92%;
  max-height: 88vh;
  border-radius: 12px;
  animation: zoomIn 0.3s ease;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close-btn {
  position: absolute;
  top: 18px;
  right: 30px;
  color: var(--white);
  font-size: 42px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.close-btn:hover {
  transform: scale(1.2);
  color: var(--light-gray);
}


@media (max-width: 600px) {
  .screenshot-items img {
    height: 140px;
  }

  .close-btn {
    font-size: 34px;
    right: 20px;
  }
}

.btn-outline-light-custom {
  border: 2px solid var(--third-color) !;
  color: var(--dark-green);
  font-weight: 600;
  padding: 12px 22px;
}

.btn-outline-light-custom:hover {
  background: var(--third-color);
  color: var(--theme-color);
}

.about-section {
  background: var(--light-gray);
}

.about-highlight {
  background: var(--white);
  border-left: 5px solid #16a34a;
}

.section-title {
  font-weight: 600;
}

.section-subtext {
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .about-highlight {
    margin-top: 20px;
  }
}

.problem-section {
  background: linear-gradient(135deg, #fff1f2, #fef2f2);
}

.problem-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-top: 5px solid var(--third-color);
  text-align: center;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.problem-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.problem-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .problem-card {
    padding: 25px 20px;
  }
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.highlight {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.highlight strong {
  color: var(--dark-green);
}

.points {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.points li {
  margin-bottom: 14px;
  font-size: 1rem;
  font-weight: 500;
  padding-left: 28px;
  position: relative;
}

.points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

.why-right h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.badge-list span {
  background-color: #f3eef1;
  padding: 10px 18px;
  border: 1px solid var(--theme-color);
  border-radius: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
  font-weight: 500;
}

.goal {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.goal strong {
  color: var(--theme-color);
}

/* Responsive */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.why-different {
  padding: 10px 0;
  background: linear-gradient(335deg, #f3eef1, #e6d2e1);
}

.contact-section {
  /* min-height: 100vh; */
  display: flex;
  align-items: center;

  color: var(--white);
  background: var(--dark-green);
}

/* LEFT */
.left h1 {
  font-size: 2.4rem;
  line-height: 1.3;
}

.left h1 span {
  color: #5cff5c;
}

.left p {
  margin: 20px 0;
  opacity: 0.9;
}

.illustration img {
  width: 100%;
  max-width: 420px;
  margin-top: 20px;
}


.right {
  background: #044c36;
  padding: 30px;
  border-radius: 12px;
}

form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

label {
  font-size: 0.9rem;
  margin-bottom: 6px;
  font-weight: 600;
}

input,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--third-color);
  background: transparent;
  font-family: 'Courier New', Courier, monospace;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--third-color);
}

button {
  text-align: center;
  width: auto;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: var(--theme-color);
  color: var(--white);
  font-weight: bold;
  cursor: pointer;
  /* margin-top: 10px; */
}

button:hover {
  /* background: #45e845; */
}


@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
  }

  .left {
    text-align: center;
  }

  .illustration img {
    margin: 0 auto;
  }
}

@media (max-width: 500px) {
  form .row {
    grid-template-columns: 1fr;
  }

  .left h1 {
    font-size: 1.8rem;
  }

  .sales-app-wrapper {
    position: relative;
    padding: 5px 0;
  }

}

.footer {
  background: var(--white);
  border-top: 1px solid #e5e7eb;
}


.footer-logo {
  margin-bottom: 18px;
}

.footer-logo img {
  height: 42px;
}

.footer-desc {
  font-size: 14px;
  line-height: 22px;
  color: var(--text-muted);
  max-width: 320px;
  margin-bottom: 22px;
}

.footer-actions {
  display: flex;
  gap: 12px;
}

.footer-actions .btn {
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 6px;
}


.footer-title {
  display: inline-block;
  font-weight: 600;
  position: relative;
  padding-bottom: 6px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;
  height: 2px;
  background-color: var(--theme-color);
}

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

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
}

.footer ul li a:hover {
  color: var(--green);
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.social-icons a {
  font-size: 18px;
  color: #374151;
}

.social-icons a:hover {
  color: var(--green);
}

.envato-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}


.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge-box {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--light-gray);
}


.bottom-bar {
  background: var(--dark-green);

  padding: 8px 21px;
  text-align: center;
  font-size: 14px;
  color: var(--white);
}

.bottom-bar span {
  color: var(--green);
}


@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
.hero {
    padding-bottom: 25px;
}
  .footer-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-actions {
    justify-content: center;
  }

  .social-icons,
  .badges {
    justify-content: center;
  }
}

.hero-wrapper {
  position: relative;

  margin: auto;
}

.hero-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border-top: 2px dashed var(--theme-color);
  border-left: 2px dashed var(--theme-color);
  border-radius: 12px 0 0 0;
  z-index: -1;
}

.hero-card {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 20px;
}


.subtitle {
  display: inline-block;
  background: #fff4db;
  border: 2px solid #ffb400;
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}


.main-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  color: #0b1c2d;
  margin-bottom: 20px;
}

.text-yellow {
  color: var(--theme-color);
}

.text-green {
  color: var(--dark-green);
}

.description {
  font-size: 16px;
  color: #5b6b7a;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 750px;
  padding: 5px;
}


.cta-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cardleft {
  position: absolute;
  right: -34px;
  top: 200px;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 17px;
  }

  .hero-card {
    padding: 16px;
  }

  .container-fluid {
    padding: 24px;
  }

  .cardleft {
    position: relative;
    right: 0;
    top: 17px;
  }

  .hero-wrapper::before {
    top: 0;
    left: 0;
  }

  .product-card {
    width: 100%;
    height: 100%;
    padding: 11px 5px 10px 8px;
  }

  .navbar-toggler {
    width: auto;
  }

  .owl-theme .owl-nav [class*="owl-"] {
    margin: 16px;
  }

  .information-content {
    padding: 19px 8px;
  }

  .sels-info-item {
    width: 100%;
  }

  .btn,
  .button {
    font-size: 12px;
    padding: 9px 8px;
    display: block;
  }

  .theme-details-inner li span {
    line-height: 1.4;
  }

  .theme-details-inner li {
    align-items: center;
  }

}



/* HERO */
.ep-hero-section {
  min-height: 100vh;
  background: var(--dark-green);
  padding: 120px 0;
}

.ep-badge {
  display: inline-block;
  background: rgb(214 242 233 / 10%);
  color: var(--third-color);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
}

.ep-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
}

.ep-hero-title span {
  background: var(--third-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ep-hero-text {
  color: var(--third-color);
  max-width: 700px;
  margin: auto;
}

/* BUTTONS */
.ep-btn-primary {
  background: var(--third-color);
  color: var(--dark-green);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.ep-btn-outline {
  border: 2px solid var(--third-color);
  color: var(--third-color);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
}

.ep-btn-light {
  background: var(--white);
  color: #10b981;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
}

/* STATS */
.ep-stat-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  color: var(--white);
}

.ep-stat-card h2 {
  color: var(--third-color);
  font-weight: 800;
}

/* SECTIONS */
.ep-section {
  padding: 100px 0;
}

.ep-section-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.ep-section-subtitle {
  color: #94a3b8;
}

/* FEATURES */
.ep-feature-card {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  transition: 0.3s;
}

.ep-feature-card:hover {
  transform: translateY(-6px);
}

.ep-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--white);
}

.ep-icon-green {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.ep-icon-blue {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.ep-icon-purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

/* CTA */
.ep-cta-section {
  background: linear-gradient(90deg, #10b981, #06b6d4);
  padding: 80px 0;
}

.ep-cta-section h2 {
  font-weight: 800;
}

/* CONTACT */
.ep-contact-form input,
.ep-contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #334155;
  background: #0f172a;
  color: var(--white);
}

.features-section {
  background: var(--light-gray);
  color: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
}


.theme-badge {
  background: var(--third-color);
  color: var(--dark-green);
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  font-size: 1.2rem;
}

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

.theme-text {
  color: #b796af;
}


.feature-card {
  background: var(--third-color);
  color: var(--black) !important;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--third-color);
  box-shadow: 0 15px 35px rgba(113, 75, 103, 0.45);
}


.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 15px;
}


.gradient-1 {
  background: linear-gradient(135deg, #714b67, #9b6a8f);
}

.gradient-2 {
  background: linear-gradient(135deg, #5e3f56, #714b67);
}

.gradient-3 {
  background: var(--third-color)
}

.gradient-4 {
  background: linear-gradient(135deg, #8b5e83, #714b67);
}

.gradient-5 {
  background: linear-gradient(135deg, #6d4c65, #b07aa1);
}

.gradient-6 {
  background: linear-gradient(135deg, #714b67, #a87498);
}


/* .feature-card h5 {
  color: #ffffff;
} */

.feature-card p {
  color: var(--third-color);
  font-size: 15px;
  line-height: 1.6;
}


.feature-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.feature-list li {
  font-size: 14px;
  color: var(--black);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.feature-list i {
  color: var(--black);
  margin-right: 8px;
  font-size: 12px;
}


@media (max-width: 768px) {
  .features-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .feature-card {
    padding: 22px;
  }

  .ep-hero-title {
    font-size: 1.5rem;

  }

  .information-icon {

    top: -39%;
  }

  .banner-search-form input {
    font-size: 12px;
    margin: 0 !important;
  }
}

.modules-section {
  background: var(--light-gray);
  color: var(--dark-green);
}



.text-teal {
  color: #b796af;
}


.module-card {
  padding: 25px 15px;
  border-radius: 18px;
  text-align: center;
  color: var(--dark-green);
  transition: 0.3s ease;
  height: 100%;
}

.module-card:hover {
  transform: translateY(-6px);
}

.module-icon {
  font-size: 32px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.module-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

/* Gradient Colors */
/* .emerald { background: linear-gradient(135deg, #059669, #047857); }
.blue { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.purple { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.pink { background: linear-gradient(135deg, #db2777, #be185d); }
.orange { background: linear-gradient(135deg, #ea580c, #c2410c); }
.red { background: linear-gradient(135deg, #dc2626, #b91c1c); }
.cyan { background: linear-gradient(135deg, #0891b2, #0e7490); }
.teal { background: linear-gradient(135deg, #0d9488, #0f766e); }
.indigo { background: linear-gradient(135deg, #4f46e5, #4338ca); }
.yellow { background: linear-gradient(135deg, #ca8a04, #a16207); }
.lime { background: linear-gradient(135deg, #65a30d, #4d7c0f); }
.amber { background: linear-gradient(135deg, #d97706, #b45309); }
.rose { background: linear-gradient(135deg, #e11d48, #be123c); }
.violet { background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.slate { background: linear-gradient(135deg, #475569, #334155); } */

/* 5-column layout for large screens */
@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.role-card {
  background: var(--third-color);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 20px;
  padding: 40px 25px;
}

.role-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.role-card p {
  color: var(--black);
  font-size: 14px;
}

/* Role Icons */
.role-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--white);
}

/* .emerald-gradient { background: linear-gradient(135deg, #10b981, #14b8a6); }
.blue-gradient { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.purple-gradient { background: linear-gradient(135deg, #8b5cf6, #ec4899); } */
.emerald-gradient {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.blue-gradient {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.purple-gradient {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

/* Screenshots Section */

.screenshots-section {
  background-color: var(--light-gray);
  color: var(--dark-green);
}


.text-cyan {
  color: #b796af;
}

/* Screenshot Card */
.screenshot-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.2);
  cursor: pointer;
  transition: 0.3s ease;
  background: #dddddd3b;
}

.screenshot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.screenshot-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: top;
}

.screenshot-info {
  padding: 15px;
}

.screenshot-info h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

.screenshot-info p {
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
}

/* CTA Section */
.cta-section {
  background: var(--dark-green);
}

.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(100px);
}

.cta-section::before {
  width: 250px;
  height: 250px;
  top: 20px;
  left: 20px;
}

.cta-section::after {
  width: 350px;
  height: 350px;
  bottom: 20px;
  right: 20px;
}

.submit-btn {
  background-color: var(--third-color);
  color: var(--theme-color);
}

.foem-contect label {
  color: var(--theme-color);
}

.form-p {
  color: var(--black);
}




.genz-about-section {
  padding: 80px 15px;
}

.genz-title {
  font: var(--h2);
  color: var(--second-color);
}

.genz-subtitle {
  color: #6b7280;

  margin: auto;
}


.genz-badge {
  background: var(--third-color);
  color: var(--theme-color);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}

.genz-about-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: 0.3s ease;
}

.genz-about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.genz-icon-circle {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: var(--third-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.genz-icon-circle i {
  font-size: 22px;
  color: var(--theme-color);
}

.genz-card-title {
  font: var(--h5);
  color: var(--second-color);
  margin-bottom: 10px;
}

.genz-card-text {
  font-size: 0.95rem;
  color: #6b7280;
}

.genz-highlight-box {
  background: var(--white);
  border-radius: 20px;
  padding: 45px;
  border: 1px solid var(--border-color);
  margin-top: 50px;
}

.genz-highlight-title {
  font: var(--h4);
  color: var(--theme-color);
  margin-bottom: 10px;
}

.genz-values-card {
  border-left: 4px solid var(--theme-color);
}

.genz-why-box {
  background: var(--white);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid var(--border-color);
}

.genz-why-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--second-color);
}

.genz-why-item i {
  color: var(--theme-color);
  margin-right: 10px;
}

/* ===== Responsive Improvements ===== */

@media (max-width: 768px) {

  .genz-highlight-box {
    padding: 30px;
  }

  .genz-title {
    font-size: 26px;
  }

  .genz-about-card {
    padding: 24px;
  }
  .genz-why-box {
    padding: 13px;
    margin: 5px;
}
}

.genz-about-split {
  padding: 20px 0;
}
.genz-about-section {
    padding: 30px 2px;
}
.genz-subtitle {
    text-align: start;
}

.genz-about-image-wrapper {
  background: var(--white);
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.genz-about-image {
  border-radius: 14px;
}

.genz-about-content {
  padding-left: 10px;
}

.genz-about-highlight {
  font-weight: 600;
  color: var(--theme-color);
  font-size: 1.05rem;
}

/* Mobile Optimization */
@media (max-width: 768px) {

  .genz-about-content {
    padding-left: 0;
    text-align: center;
  }

  .genz-about-image-wrapper {
    margin-bottom: 20px;
  }
  .ep-btn-outline {
    padding: 11px 21px;
}
.ep-btn-primary {
    padding: 13px 19px;
}
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
    display: block;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}




/* loader */

/* Loader */
.btn-loader {
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid #fff;
  border-radius: 50%;
  display: none;
  animation: spin 0.6s linear infinite;
}

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

/* Active loading state */
.submit-btn.loading .btn-loader {
  display: inline-block;
}

.submit-btn.loading .btn-text {
  opacity: 0.7;
}


/* active */


.navbar .nav-link.active {

  position: relative;
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #013D29;
}
/* Video Container Styles */
.video-container {
  position: relative;
  /* padding: 15px; */
  border-radius: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  /* box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4); */
}
 
.video-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* border: 3px solid rgba(255, 255, 255, 0.3); */
  border-radius: 16px;
  pointer-events: none;
}
 
.video-container video {
  border-radius: 20px;
  display: block;
}
 
/* Alternative gradient border style */
.video-container::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(
    45deg,
    #667eea,
    #764ba2,
    #f093fb,
    #f5576c,
    #667eea
  );
  background-size: 400% 400%;
  border-radius: 22px;
  z-index: -1;
  animation: gradientBorder 3s ease infinite;
}
 
@keyframes gradientBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
 
/* Mobile responsiveness */
@media (max-width: 768px) {
  .video-container {
    border-radius: 8px;
  }
 
  .video-border {
    border-width: 2px;
  }
 
  .video-container video {
    border-radius: 8px;
  }
  .video-container::before {
  border-radius: 8px;
}
 
}
 /* What You Gain Section - Modern Redesign */
.what-you-gain-section {
  background: linear-gradient(135deg, #f8f4f7 0%, #e8e0e8 100%);
  position: relative;
  overflow: hidden;
  margin-top: 100px !important;
}
 
.what-you-gain-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(113, 75, 103, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
 
.what-you-gain-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(113, 75, 103, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
 
.what-you-gain-section .section-subtext {
  color: #6b7280;
  font-size: 16px;
  margin-top: 10px;
}
 
.gain-cards-wrapper {
  position: relative;
  z-index: 1;
}
 
.gain-card {
  background: var(--white);
  border-radius: 20px;
  padding: 35px 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(113, 75, 103, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
 
.gain-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(113, 75, 103, 0.2);
  border-color: rgba(113, 75, 103, 0.3);
}
 
.gain-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #714b67 0%, #9b6a8f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(113, 75, 103, 0.3);
}
 
.gain-card:hover .gain-card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(113, 75, 103, 0.4);
}
 
.gain-card-icon i {
  font-size: 32px;
  color: var(--white);
}
 
.gain-card-content {
  flex: 1;
}
 
.gain-card-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 12px;
  line-height: 1.3;
}
 
.gain-card-content p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}
 
.gain-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #714b67, #9b6a8f, #714b67);
  background-size: 200% 100%;
  transition: all 0.4s ease;
}
 
.gain-card:hover .gain-card-accent {
  background-position: 100% 0;
}
 
/* Staggered animation on load */
.gain-card {
  opacity: 0;
  transform: translateY(30px);
  animation: gainCardFadeIn 0.6s ease forwards;
}
 
.gain-card:nth-child(1) { animation-delay: 0.1s; }
.gain-card:nth-child(2) { animation-delay: 0.2s; }
.gain-card:nth-child(3) { animation-delay: 0.3s; }
.gain-card:nth-child(4) { animation-delay: 0.4s; }
.gain-card:nth-child(5) { animation-delay: 0.5s; }
 
@keyframes gainCardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 
/* Responsive adjustments */
@media (max-width: 991px) {
  .gain-card {
    padding: 30px 20px;
  }
  
  .gain-card-icon {
    width: 70px;
    height: 70px;
  }
  
  .gain-card-icon i {
    font-size: 28px;
  }
  
  .gain-card-content h4 {
    font-size: 18px;
  }
}
 
@media (max-width: 767px) {
  .what-you-gain-section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  
  .gain-card {
    padding: 25px 20px;
  }
  
  .gain-card-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 15px;
  }
  
  .gain-card-icon i {
    font-size: 26px;
  }
  
  .gain-card-content h4 {
    font-size: 17px;
    margin-bottom: 8px;
  }
  
  .gain-card-content p {
    font-size: 13px;
  }
  .what-you-gain-section {
  margin-top: 0px !important;
}
}
 
/* Mobile responsiveness */
@media (max-width: 768px) {
  .video-container {
    border-radius: 8px;
  }
 
  .video-border {
    border-width: 2px;
  }
 
  .video-container video {
    border-radius: 8px;
  }
  .video-container::before {
  border-radius: 8px;
}
 
}