@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
*,
::after,
::before {
  box-sizing: border-box;
}
 element.style {
    stroke: #8f37f0 !important;
    stroke: color(display-p3 0.0314 0.2627 0.5608);
    stroke-opacity: 1;
}

.path {
  stroke: #8f37f0 !important;
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

:root {
  --bg: #f4f2ee;
  --card-bg: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #3b3b3b;
  --accent: #2563eb;
  --accent-light: #dbeafe;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  --radius: 18px;
  --radius-sm: 12px;
  --gap: 16px;
  --muted: #6b7280;
  --green-border: #bbf7d0;
  --green-hover: #f0fdf4;
  --border: #e5e7eb;
  --bs-font-sans-serif:
    system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.container-xxl {
    padding: 0px 80px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100%;
  font-family: "Montserrat", serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
/* ========================================================================================================================= */
/* Header css */
.header-wrapper {
  padding: 12px 40px;
  position: relative;
  z-index: 200;
}
.header-inner {
  background: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 24px rgba(13, 34, 85, 0.1);
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  width: 200px;
}

.nav-desktop {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-desktop a {
  text-decoration: none;
  color: #1a1a2e;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8f37f0;
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-desktop a:hover {
  color: #1565c0;
}
.nav-desktop a:hover::after {
  width: 100%;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.search-results {
  position: absolute;
  background-color: #fff;
  border: 1px solid #ddd;
  width: 210px;
  max-height: 200px;
  right: 4%;
  top: 71%;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}
.search-results li {
  padding: 8px 10px;
  cursor: pointer;
  list-style: none;
}
.search-results li:hover {
  background-color: #f0f0f0;
}
.search-btn {
  width: 40px;
  height: 40px;
  background: #8f37f0;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.search-btn:hover {
  background: #0d2255;
  transform: scale(1.08);
}
.search-btn svg {
  width: 17px;
  height: 17px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}
.search-active .search-btn {
  display: none;
}

/* Search Panel */
.search-panel {
  display: none;
  align-items: center;
  background: #0d2255;
  border-radius: 50px;
  padding: 0 6px 0 18px;
  height: 42px;
  min-width: 230px;
  gap: 6px;
}
.search-active .search-panel {
  display: flex;
  animation: slideIn 0.25s ease;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: scaleX(0.9);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.search-panel input {
  flex: 1;
  border: none;
  outline: none;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: transparent;
  min-width: 0;
}
.search-panel input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.search-close:hover {
  background: rgba(255, 255, 255, 0.15);
}
.search-close svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 0.85);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover {
  background: #f0f4ff;
}
.hamburger span {
  display: block;
  height: 2.5px;
  background: #0d2255;
  border-radius: 4px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    width 0.3s ease;
  transform-origin: center;
}
.hamburger span:nth-child(1) {
  width: 100%;
}
.hamburger span:nth-child(2) {
  width: 70%;
}
.hamburger span:nth-child(3) {
  width: 100%;
}
/* Animate to X */
.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  width: 100%;
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  width: 100%;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  border-radius: 0 0 20px 20px;
  margin: 0 40px;
  box-shadow: 0 10px 32px rgba(13, 34, 85, 0.12);
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.38s ease,
    padding 0.38s ease;
  position: relative;
  z-index: 100;
}
.nav-mobile.open {
  max-height: 500px;
  padding-bottom: 16px;
}

.mobile-search {
  margin: 14px 20px 6px;
  display: flex;
  background: #f0f4f8;
  border-radius: 50px;
  padding: 0 8px 0 16px;
  align-items: center;
  gap: 6px;
}
.mobile-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  padding: 11px 0;
}
.mobile-search input::placeholder {
  color: #aaa;
}
.mobile-search button {
  width: 32px;
  height: 32px;
  background: #1565c0;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.mobile-search button:hover {
  background: #0d2255;
}
.mobile-search button svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

/* Mobile Nav Links */
.nav-mobile a {
  text-decoration: none;
  color: #1a1a2e;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  border-bottom: 1px solid #f0f2f5;
  transition:
    background 0.2s,
    color 0.2s,
    padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-mobile a:last-child {
  border-bottom: none;
}
.nav-mobile a:hover {
  background: #f0f6ff;
  color: #1565c0;
  padding-left: 30px;
}
.nav-mobile a .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1565c0;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.nav-mobile a:hover .dot {
  opacity: 1;
}
/* ===================================================================================================================================== */
/* footer css */
.site-footer {
  background: #f0f2f5;
}

/* DESKTOP: 4 columns */
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 40px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.8;
  font-weight: 500;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 800;
  color: #8f37f0;
  margin-bottom: 18px;
}
.footer-newsletter h4 {
  color: #f96015;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col ul li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #373737;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #1565c0;
}

.footer-newsletter label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  padding: 10px 14px;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  outline: none;
}
.newsletter-form input::placeholder {
  color: #aaa;
}
.newsletter-form button {
  background: #8f37f0;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
}
.social-icon svg {
  width: 18px;
  height: 18px;
}
.si-instagram {
  background: #e1306c !important;
}
.si-x {
  background: #000 !important;
}
.si-pinterest {
  background: #e60023 !important;
}
.si-facebook {
  background: #1877f2 !important;
}

.footer-bottom {
  border-top: 1px solid #d0d5dd;
  padding: 16px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-bottom p {
  font-size: 13.5px;
  font-weight: 600;
  color: #666;
}

.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: #8f37f0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.4);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.2s;
  z-index: 999;
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: all;
}
.scroll-top-btn:hover {
  transform: translateY(-3px);
}
.scroll-top-btn svg {
  width: 20px;
  height: 20px;
}

/* Index.php */

.hero-section {
  width: 100%;
  background-color: #d1c9fd;
  /* height: 400px; */
  margin-top: -102px;
  position: relative;
  /* z-index: -1; */
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  padding-bottom: 200px;
  padding-top: 100px;
}

.hero-section-left-circle {
  margin-left: -200px;
  margin-top: 160px;
}

.hero-section-left-circle,
.hero-section-right-circle {
  height: 400px;
  width: 400px;
  background-color: #8f37f0;
  border-radius: 50%;
}

.hero-section-left-circle,
.hero-section-right-circle {
  height: 400px;
  width: 400px;
  background-color: #8f37f0;
  border-radius: 50%;
}

.hero-section-midle {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  width: 100%;
  justify-self: center !important;
}

.hero-section-midle .btn-style {
  background-color: #8f37f0;
  padding: 5px 15px;
  color: white;
  font-style: italic;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  border-radius: 3px;
}

.hero-section-midle h1 {
  width: 77%;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  font-size: 45px;
  font-style: italic;
}

.hero-section-midle p {
  font-size: 19px;
  font-style: italic;
  width: 63%;
  text-align: center;
}

.hero-section-right-circle {
  margin-right: -200px;
  position: relative;
  bottom: -350px;
}

/* Single Blog */
.home-single-blog {
  margin-top: 50px;
}

.home-single-blog-img {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
}

.home-single-blog-img img {
  height: 100%;
}

.home-single-blog-text {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
  padding-left: 50px !important;
}

.home-single-blog-text p {
  text-align: center;
  font-size: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.home-single-blog-text .cus-hover-btn {
  align-self: center;
}

/* Home Blog */

.home-blog-section {
  margin-bottom: 50px;
}

.click-blog-hover {
  margin-top: 30px;
  margin-bottom: 30px;
}

.home-heading {
  margin: 80px 0 60px 0 !important;
  text-align: center;
  font-weight: bold;
  font-size: 40px;
}

.blog-hover-span-top {
  margin-bottom: -100px;
  position: relative;
  z-index: -1;
}

.blog-hover-span-top,
.blog-hover-span-bottom {
  height: 98px;
  width: 98px;
  background-color: #8f37f0 !important;
  border-radius: 20px;
  transition: 0.5s;
}

.home-blog {
  background-color: white;
  border-radius: 20px;
  height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* margin-bottom: ; */
}

.home-blog-img {
  height: 190px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
}

.home-blog-text {
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-blog-text h6 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-style: italic;
  font-weight: 600;
}

.home-blog-text h6 a {
  text-decoration: none;
  color: black;
}

.home-blog-text p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 12px;
}

.blog-bottom {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-bottom-name {
  display: flex;
  flex-direction: column;
  font-size: 10px;
}

.blog-bottom-view {
  font-size: 12px;
}

.home-blog-2 {
  height: 345px;
  background-color: red;
  overflow: hidden;
  margin-top: 55px;
  border-radius: 20px;
}

.home-blog-2 a {
  text-decoration: none;
}

.home-blog-2-img {
  height: 345px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-blog-2-img img {
  height: 100%;
}

.home-blog-2 .upper-layer {
  height: 345px;
  width: 100%;
  background-color: green;
  margin-top: 0px;
  position: relative;
  z-index: 1;
  /* opacity: 40%; */
  background: linear-gradient(
    0deg,
    #8f37f0 14.5%,
    rgba(255, 255, 255, 0.233) 70%
  );
  /* transform: translateY(345px); */
  transition: 1s;
  /* transform: translateY(-325px); */
}

.home-blog-2 .upper-layer p {
  font-size: 19px;
  padding: 0px 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  text-align: center;
  padding-top: 130px;
  color: white;
  font-style: italic;
}

.home-blog-2:hover .upper-layer {
  transform: translateY(-345px);
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.home-blog-3 {
  height: 400px;
}

.home-blog-3-img {
  height: 400px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
}

.home-blog-3-img img {
  height: 100%;
}

.home-blog-3 {
  height: 400px;
}

.home-blog-3-text {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.home-blog-3-text a {
  text-decoration: none;
  color: black;
}
.home-blog-3-text p {
  font-size: 21px;
  text-align: center;
  overflow: hidden;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
}

/* FORCE DOTS LINE STYLE */
.our-partner-slider .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.our-partner-slider .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.our-partner-slider .owl-dot span {
  width: 30px !important;
  height: 4px !important;
  background: #ccc !important;
  display: block;
  border-radius: 10px;
}

/* ACTIVE DOT */
.our-partner-slider .owl-dot.active span {
  background: #2bb3f3 !important;
}

.home-blog-4 {
  height: 345px;
  position: relative;
  bottom: -63px;
}

.home-blog-4-text p {
  text-align: center;
  font-size: 20px;
  overflow: hidden;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  padding: 0px 20px;
}

.home-blog-4 a {
  color: black;
}

.home-blog-4-img {
  overflow: hidden;
  height: 225px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  margin: 0px 15px;
}

.home-newsletter {
  border-radius: 20px;
  overflow: hidden;
}

.home-newsletter .right-portion {
  background-color: #8f37f0;
  /* height: 500px; */
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-newsletter .right-portion h3 {
  font-size: 55px;
  padding-left: 55px;
  font-weight: 700;
}

.home-newsletter .right-portion p {
  padding-left: 55px;
  margin: 10px 0 40px 0;
}

.home-newsletter .right-portion .input-section {
  background-color: white;
  padding: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  margin-right: -110px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

.home-newsletter .right-portion .input-section .bi {
  background-color: #0b5ed7;
  padding: 4px 10px;
  border-radius: 360px;
  font-size: 30px;
}

.bi::before {
  line-height: 1.4;
}

.home-newsletter .right-portion .input-section input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 0 0 20px;
  width: 100%;
}

.btn-primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.home-newsletter .left-portion {
  /* background-color: green; */
  padding: 0;
}

.home-newsletter .left-portion img {
  width: 100%;
  /* height: 500px; */
}

.faqs {
  background: #373737;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faqs h6 {
  margin: 0;
  padding: 18px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faqs i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Answer */
.faqs p {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  color: #333;
  padding: 0 20px;
  margin: 0;
  transition: all 0.4s ease;
}

/* Active state */
.faqs.active p {
  max-height: 200px;
  padding: 15px 20px;
}

/* Icon rotate */
.faqs.active i {
  transform: rotate(180deg);
}

.testimonial-section {
  padding: 0 0 50px 0;
  /* background: #f5f5f5; */
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  /* box-shadow: 0 10px 25px rgba(0, 150, 136, 0.15); */
  border: 1px solid #d4f1ec;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.avatar {
  width: 70px;
  height: 70px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.testimonial-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.testimonial-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Dots */
.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dot span {
  width: 25px;
  height: 6px;
  display: inline-block;
  background: #ccc;
  border-radius: 10px;
  margin: 5px;
}

.owl-dot.active span {
  background: #3bb4d8;
}

/* About US Page */

.about-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.faq-section {
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.about-section h1 {
  font-size: 2.4rem;
  font-weight: 400;
  /* color: ; */
  text-align: center;
  margin-bottom: 18px;
}

.about-divider {
  border: none;
  border-top: 2px solid #1a3a6b;
  margin-bottom: 30px;
}

.about-section p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.2rem;
}

.about-section strong {
  font-weight: 700;
  color: #f96015;
}
/* Brand Page */
.main-heading {
    text-align: center;
    margin: 150px 0 40px 0;
    font-style: italic;
}

.main-heading h1 {
    color: #8f37f0;
    font-size: 30px;
}

.main-heading p {
    font-weight: 500;
    font-weight: 600;
    font-size: 16px;
    padding: 0 140px;
}

.breadcrumb h6 {
    font-size: 12px;
    font-weight: 600;
}

.breadcrumb span {
    color: #8f37f0;
}

.characters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.characters span {
    padding: 5px 10px;
    background-color: #8f37f0;
    /* margin: 0 2px; */
    border-radius: 3px;
    position: relative;
    z-index: 1;
    margin: 2px;
}

.characters span::before {
    content: '';
    display: block;
    height: 50%;
    width: 0%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f96015;
    transition: 0.5s;
    z-index: -1;
}

.characters span a {
    color: white;
}

.characters span::after {
    content: '';
    display: block;
    height: 50%;
    width: 0%;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #40BEF7;
    transition: 0.5s;
    z-index: -1;
}

.all-brand-main-section {
    margin-top: 30px;
}

.all-brands-label {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 10px;
    border-top: 1px solid rgba(128, 128, 128, 0.141);
}

.all-brands-label span {
    color: #f96015;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 0px;
    text-transform: capitalize;
}

.brand:hover {
    box-shadow: 0 0 6px 1px rgba(0, 166, 81, 0.11);
}
.brand {
    /* background-color: rebeccapurple; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 10px;
    margin-bottom: 20px;
}
.brand:hover::before {
    position: absolute;
    width: 32px;
    height: 32px;
    z-index: 1;
    top: -15px;
    right: 175px;
    background-color: white;
    border: 2px solid #edf3f5;
    border-radius: 50%;
    content: "";
    will-change: auto;
    clip-path: inset(42% 0 0 0);
    box-shadow: inset 0 0 3px 1px rgba(0, 166, 81, 0);
}
a {
    color: #0d6efd;
    text-decoration: underline;
}
.brand-text {
    padding: 5px 0;
    font-style: italic;
}
.brand-text h6 {
    font-weight: 600;
    color: #8f37f0;
    padding: 8px 20px;
    margin: 0;
}

.brand-text p {
    font-size: 13px;
    color: gray;
    padding: 8px 20px;
    padding-top: 0;
    /* margin: 0; */
    width: 200px;
}

a {
    text-decoration: none !important;
}

.brand-text span {
    font-size: 11px;
    font-weight: 500;
    color: gray;
    padding: 8px 20px;
}
.brand-logo {
    width: 100%;
    height: 100px;
    background-color: white;
    margin-right: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
}

/* .brand-logo img {
    height: 100%;
} */
.brand-logo img {
    height: 100px;
    width: 100%;
    object-fit: contain;
}

.brand-tag {
    content: 'New';
    display: block;
    height: 60px;
    width: 160px;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #8f37f0;
    /* clip-path: polygon(100% 0, 0 0, 100% 68%); */
    clip-path: polygon(100% 0, 24% 0, 100% 56%);
    text-align: right;
}

.brand-tag p {
    padding: 0px 5px 0px 0px;
    margin-top: -9px !important;
    margin: 0;
    color: white;
    font-size: 13px;
    transform: rotate(13deg);
}

.brand:hover::after {
    position: absolute;
    width: 32px;
    height: 32px;
    z-index: 1;
    bottom: -15px;
    right: 175px;
    background-color: white;
    border: 2px solid #edf3f5;
    border-radius: 50%;
    content: "";
    will-change: auto;
    clip-path: inset(0 0 42% 0);
    box-shadow: inset 0 0 3px 1px rgba(0, 166, 81, 0);
}

.page-main-heading {
    text-align: center;
    font-weight: bold;
    font-size: 40px;
    margin: 60px 0px 0px 0px;
}

.faqs-section {
    margin-top: 50px;
}

/* Alyaka Page */

.main-heading h1 span {
    font-weight: 600;
}

.main-heading p {
    font-weight: 500;
    font-weight: 600;
    font-size: 16px;
    padding: 0 140px;
}

.breadcrumb h6 a {
    color: black;
}

.breadcrumb span {
    color: #8f37f0;
}

.breadcrumb span::before {
    content: '';
}

.bi::before {
    line-height: 1.4;
}

.coupon-cus-col {
    padding: 0px 30px;
}

.coupon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* border: 1px solid gray; */
    /* box-shadow: 0 0 10px 1px rgba(0, 166, 81, 0.21); */
    padding: 10px 15px;
    font-style: italic;
    position: relative;
    border-radius: 0 0 10px 10px;
    margin-top: 40px;
    /* box-shadow: 0 0 3px 1px rgba(0, 166, 81, 0.21); */
}

.coupon:hover::before {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 1;
    top: 101px;
    left: -15px;
    background-color: white;
    border: 2px solid #edf3f5;
    border-radius: 50%;
    content: "";
    will-change: auto;
    clip-path: inset(0 0 0 42%);
    box-shadow: inset 0 0 3px 1px rgba(0, 166, 81, 0.21);
    transition: 0.5s;
}

.get-code::after {
    content: 'Get Code';
    display: block;
    height: 100%;
    width: 100%;
    /* background-color: #40BEF7; */
    background-color: #3A86FF;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    overflow: hidden;
}

.coupon-tag {
    height: 60px;
    width: 160px;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #8f37f0;
    clip-path: polygon(100% 0, 0% 0, 100% 100%);
    text-align: center;
    overflow: hidden;
}

.coupon-tag p {
    padding: 0px 5px 0px 0px;
    margin: 21px -59px 0px 0px !important;
    margin: 0;
    color: white;
    font-size: 14px;
    transform: rotate(20deg);
}

.coupon-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 125px;
    height: 62px;
    margin-top: 30px;
}

.coupon-logo img {
    height: 100%;
}

.coupon-text {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 75px;
    margin: 20px 0px 10px 0;
    padding: 0 15px;
}

p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}

.coupon-text p b {
    text-align: center;
    font-size: 14px !important;
    font-weight: 600;
    color: #8f37f0;
}

.get-code {
    height: 42px;
    position: relative;
    background-color: transparent;
    border: 1px dotted #40BEF7;
    overflow: hidden;
}

.get-btn {
    padding: 9px 0px;
    background-color: #8f37f0;
    color: white;
    margin: 10px 0px;
    text-decoration: none;
    width: 140px;
    text-align: center;
    margin-bottom: 25px;
}

.get-code .code {
    color: black;
    overflow: hidden;
}

.get-code::after {
    content: 'Get Code';
    display: block;
    height: 100%;
    width: 100%;
    /* background-color: #40BEF7; */
    background-color: #3A86FF;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    overflow: hidden;
}

.coupon-bottom {
    font-size: 12px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: grey;
}

.coupon-bottom span span {
    color: #8f37f0;
}

.coupon:hover {
    box-shadow: 0 0 3px 1px rgba(0, 166, 81, 0.21);
}

.coupon:hover::after {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 1;
    top: 101px;
    right: -16px;
    background-color: white;
    border: 2px solid #edf3f5;
    border-radius: 50%;
    content: "";
    will-change: auto;
    clip-path: inset(0 42% 0 0);
    box-shadow: inset 0 0 3px 1px rgba(0, 166, 81, 0.21);
}

.about-brand-section {
    margin-top: 80px;
    border-radius: 10px;
    box-shadow: 0 0 10px 1px rgba(0, 166, 81, 0.21);
    padding: 30px;
}

.about-brand-logo {
    height: 300px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px 1px rgba(0, 166, 81, 0.21);
    justify-content: center;
}

/* .about-brand-logo img {
    height: 60px;
    width: auto;
    margin: 20px 0;
} */
.about-brand-logo img {
    height: 100px;
    width: 50%;
    margin: 20px 0;
    object-fit: cover;
    border-radius: 10px;
}
.about-brand-logo h6 {
    color: #8f37f0;
    font-weight: 600;
}

.about-brand-logo p {
    /* color: #40BEF7; */
    font-size: 13px;
    font-weight: 500;
}

.about-brand-logo .rating {
    color: #f96015;
    font-weight: 500;
}

.about-brand-desciption {
    display: flex;
    flex-direction: column;
    min-height: 200px;
    justify-content: space-between;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px 1px rgba(0, 166, 81, 0.21);
}

.about-brand-desciption .desc {
    font-size: 13px;
    font-weight: 500;
}

.about-brand-desciption h4 {
    color: #8f37f0;
    font-size: 20px;
    font-weight: 600;
}

.addReadMore.showlesscontent .SecSec, .addReadMore.showlesscontent .readLess {
    display: none;
}

.addReadMore .readMore, .addReadMore .readLess {
    font-weight: bold;
    margin-left: 5px;
    color: rgb(0, 0, 7);
    cursor: pointer;
    font-size: 11px;
}

.about-table {
    display: flex;
    align-self: center;
}

.about-table span {
    padding: 7px 25px;
    background-color: #8f37f0;
    color: white;
    margin: 0 10px;
}

/* Blogs Page */

.top-blogs-section {
    background-color: white;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    margin-top: 160px;
}

.home-blog {
    background-color: white;
    border-radius: 20px;
    height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-blog-img {
    height: 190px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
}

.home-blog-text {
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-blog-text h6 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-style: italic;
    font-weight: 600;
}

.home-blog-text h6 a {
    text-decoration: none;
    color: black;
}

.home-blog-text p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 12px;
}

.blog-bottom {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-bottom-name {
    display: flex;
    flex-direction: column;
    font-size: 10px;
}

.blog-bottom-view {
    font-size: 12px;
}

.trending-blogs-section {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trending-blog {
    width: 100%;
    height: 100px;
    padding: 0;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
}

.trending-blog-image {
    height: 100%;
    width: 150px;
    background-color: grey;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
} 
.trending-blog-image img {
    height: 100%;
}
.trending-blog-text {
    /* background-color: #0B5ED7; */
    flex: 1;
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.trending-blog-text a {
    color: black;
}

.trending-blog-text h6 {
    font-size: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin: 0;
    padding: 0 10px;
}

.trending-blog-text p {
    font-size: 13px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
    padding: 0 10px;
}

.trending-blog-text .blog-bottom {
    font-size: 13px;
    font-weight: 500;
    padding: 0 10px;
}

.trending-blog-text:hover, .trending-blog-text:hover a {
    color: white !important;
}

.trending-blog-text::after {
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    background-color: #8f37f0;
    position: absolute;
    z-index: -1;
    transition: 0.5s;

}

.trending-blog-text:hover::after {
    width: 100%;
}

.trending-blog-text:hover ,.trending-blog-text:hover a {
    color: white !important;
}


.trending-blog-text::after {
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    background-color: #8f37f0;
    position: absolute;
    z-index: -1;
    transition: 0.5s;
}

.latest-blogs-section {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.latest-blog {
    height: 100px;
    width: 100%;
    box-shadow: 0 0 10px 1px rgba(0, 166, 81, 0.21);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.latest-blog::before {
    content: '';
    display: block;
    height: 50%;
    width: 0%;
    background-color: #8f37f0;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.latest-blog a {
    color: black;
}

.latest-blog h6 {
    font-size: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-align: center;
    font-weight: 600;
    margin-bottom: 5px;
    padding: 0px 15px;
}

.latest-blog p {
    font-size: 11px;
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 0;
    padding: 0px 15px;
}

.latest-blog::after {
    content: '';
    display: block;
    height: 50%;
    width: 0%;
    background-color: #8f37f0;
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    transition: 0.5s;
}

.all-home-blog-4 {
    height: 345px;
    position: relative;
    /* bottom: -63px; */
    margin-top: 55px;
}

.all-home-blog-4 a {
    color: black;
}

.all-home-blog-4-text p {
    text-align: center;
    font-size: 20px;
    overflow: hidden;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    padding: 0px 20px;
}

.all-home-blog-4-img {
    overflow: hidden;
    height: 225px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.all-home-blog-4 a {
    color: black;
}

.all-latest-blogs-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 55px;
}

.all-latest-blog {
    width: 48.5%;
}

.latest-blog:hover::before {
    width: 100%;
}
.latest-blog:hover a {
    color: white;
}
.latest-blog::before {
    content: '';
    display: block;
    height: 50%;
    width: 0%;
    background-color: #8f37f0;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.latest-blog:hover::after {
    width: 100%;
}

.latest-blog::after {
    content: '';
    display: block;
    height: 50%;
    width: 0%;
    background-color: #8f37f0;
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    transition: 0.5s;
}
/* Blog Page end */
/* -------------------------------------------------------------------------------- */
/* Country Page */
.country-select-section {
    display: flex;
    justify-content: center;
}

.select-section :nth-child(1) {
    margin-right: 20px;
}

.country-select-section select {
    display: flex;
    width: 350px;
    outline: none;
    border: 1px solid #8f37f0;
}
.select-section select {
    padding: 5px 10px;
}

select {
    word-wrap: normal;
}

button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.country-flag {
    display: flex;
    align-items: center;
    margin: 20px 0;
    justify-content: space-between;
    align-items: center;
}

.country-flag .flag-image {
    height: 40px;
    width: 40px;
    overflow: hidden;
    border-radius: 50%;
}

.country-flag .flag-image img {
    height: 100%;
}

.country-text {
    display: flex;
    justify-content: space-between;
    flex: 1;
    margin: 0 20px;
    font-weight: 500;
}

.categories-main-section {
    margin-top: 30px;
}

/* Country Page End */
/* ----------------------------------------------------------------------------- */
/* blog sample page (voltrum e bike) */

.post-view {
    margin-top: 150px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.post-view .main-img {
    width: 100% !important;
}

.about-post {
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-post div {
    display: flex;
    align-items: center;
}

.about-post span {
    margin: 0 10px;
    font-weight: 600;
    font-size: 13px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  color: #fff !important;
  transition: 0.3s ease;
}

.bi-twitter-x{
  color: #fff !important;
}

/* Individual colors */
.social-icons a:nth-child(1) { background: #316FF6; } /* Facebook */
.social-icons a:nth-child(2) { background: #e1306c; } /* Instagram */
.social-icons a:nth-child(3) { background: #000; }    /* Twitter X */
.social-icons a:nth-child(4) { background: #E60023; } /* Pinterest */

/* Hover effect */
.social-icons a:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.post-view .post-title {
    font-size: 40px;
    color: #8f37f0;
    font-weight: 600;
    margin: 20px 0px;
}

.comment-here {
    /* display: flex; */
    background-color: #8f37f0;
    padding: 30px 60px;
    align-items: center;
    overflow: hidden;
    position: relative;
    /* height: 150px; */
    margin-bottom: 20px;
}

.comment-tap {
    height: 100px;
    flex: 1;
    display: flex;
}

.comment-here img {
    height: 100px;
    margin: 0 20px 0 0px;
    border-radius: 50%;
}

.comment-tap button {
    font-size: 25px;
    background-color: white;
    height: 100px !important;
    width: 100% !important;
}

.comment-box {
    /* transform: translateY(-500px); */
    display: none;
    /* transition: 0.5s !important; */
    top: 0;
    margin-top: 20px;
}

.comment-input-close {
    color: white;
    font-size: 20px;
    text-align: right;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.comment-box textarea {
    width: 100%;
    height: 300px;
    border-radius: 3px;
    outline: none;
    border: none;
    padding: 20px;
}
.comment-box input {
    width: 100%;
    padding: 10px;
    border-radius: 3px;
    outline: none;
    border: none;
    margin-top: 20px;
}

.comment-box input[type='submit'] {
    width: 150px;
    margin-top: 20px;
}

/* ===========================
   SECTION
=========================== */
.tbx-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 70px;
  /* background: #f9f9f9; */
  font-family: 'Barlow', sans-serif;
}
 
/* ===========================
   HEADING
=========================== */
.tbx-heading {
  text-align: center;
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  letter-spacing: 0.25em;
  color: var(--tbx-dark);
  margin-bottom: 48px;
}
 
.tbx-heading::after {
  content: '';
  display: block;
  width: 38px;
  height: 3px;
  background: #8f37f0;
  margin: 10px auto 0;
  border-radius: 2px;
}
 
/* ===========================
   SLIDE ROW
=========================== */
.tbx-slide-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 10px 70px 44px;
}
 
/* ===========================
   LOGO WRAPPER
=========================== */
.tbx-logo-wrap {
  display: flex;
  justify-content: center;
}
 
/* ===========================
   CIRCLE
=========================== */
.tbx-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 22px var(--tbx-shadow);
  transition:
    transform    var(--tbx-ease),
    box-shadow   var(--tbx-ease),
    filter       var(--tbx-ease);
}
 
.tbx-circle:hover {
  transform: translateY(-8px) scale(1.07);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  filter: brightness(1.06);
}
 
.tbx-circle--light {
  background: #ffffff;
  border: 2px solid #e8e8e8;
}
 
/* ===========================
   LABEL TEXT
=========================== */
.tbx-label {
  font-weight: 800;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.02em;
  user-select: none;
}
 
.tbx-label--white { color: #ffffff; }
.tbx-label--sm    { font-size: 1rem; letter-spacing: 0.05em; }
.tbx-label--wide  { font-size: 1.1rem; letter-spacing: 0.1em; }
 
/* ===========================
   LOGO IMAGES
=========================== */
.tbx-img {
  width: 68%;
  height: auto;
  object-fit: contain;
  transition: transform var(--tbx-ease);
}
 
.tbx-img--apple {
  width: 42%;
  filter: invert(1);
}
 
.tbx-circle:hover .tbx-img {
  transform: scale(1.1);
}
 
/* ===========================
   NAV CONTROLS
=========================== */
.tbx-ctrl {
  width: 46px !important;
  height: 46px !important;
  top: 50% !important;
  transform: translateY(-60%) !important;
  opacity: 1 !important;
}
 
.tbx-ctrl--prev { left: 0 !important; }
.tbx-ctrl--next { right: 0 !important; }
 
.tbx-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #333;
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(0,0,0,0.14);
  transition:
    background  var(--tbx-ease),
    color       var(--tbx-ease),
    box-shadow  var(--tbx-ease),
    transform   var(--tbx-ease);
}
 
.tbx-ctrl:hover .tbx-nav-btn {
  background: var(--tbx-red);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(232,64,28,0.3);
  transform: scale(1.1);
}
 
/* ===========================
   DOTS
=========================== */
.tbx-dots {
  bottom: 6px !important;
}
 
.tbx-dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: #ccc !important;
  border: none !important;
  opacity: 1 !important;
  margin: 0 5px !important;
  transition:
    background  var(--tbx-ease),
    transform   var(--tbx-ease) !important;
}
 
.tbx-dot.active {
  background-color: var(--tbx-dark) !important;
  transform: scale(1.35);
}
 
/* ===========================
   SLIDE TRANSITION
=========================== */
.carousel-item {
  transition: transform 0.65s ease !important;
}
 
/* ===========================
   ALL BRANDS BUTTON
=========================== */
.tbx-all-btn {
  display: inline-block;
  padding: 12px 38px;
  border: 2px solid #8f37f0;
  color: #8f37f0;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  border-radius: 3px;
  transition:
    background  var(--tbx-ease),
    color       var(--tbx-ease),
    transform   var(--tbx-ease),
    box-shadow  var(--tbx-ease);
}
 
.tbx-all-btn:hover {
  background:#8f37f0;
  color: #ffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232,64,28,0.25);
}

/* Stores Page Design */
