html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,      
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
body {
  font-family: var(--mahva-theme-text-font-family);
  direction: rtl;
  text-align: right;
  line-height: 1.8;
  font-size: 16px;
  color: var(--mahva-theme-color-on-surface);
  margin: 0;
  padding: 0;
  /* cursor: none; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--mahva-theme-display-font-family);
  color: var(--mahva-theme-color-on-surface);
  margin: 10px 0;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.5)
  );
  z-index: 1;
}
 
/* start  Slider */
.slider {
  z-index: 2;
}
.glass-box {
  position: absolute;
  top: 55%;
  right: 28%;
}
.glass-inner {
  position: relative;
}
.glass-layer-background {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 25rem;
  height: 25rem;
  /* background: linear-gradient(
    -160deg,
    #ffcc0000,
    #ffcc0000,
    var(--mahva-theme-color-second)
  );
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px); */
  border: 1px solid rgba(255, 255, 255, 0.164);
  border-radius: 30px; /* Ensure border-radius is applied before border */
  z-index: 1;
  /* animation: gradient-move 8s ease-in-out infinite alternate; */
  overflow: hidden;
}
.glass-layer-background::before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(-160deg, #ffcc0000, #ffcc0000);
  backdrop-filter: blur(7px);
  border-radius: 30px;
  -webkit-backdrop-filter: blur(7px);
  z-index: 1;
}
.glass-layer-background::after {
  content: " ";
  position: absolute;
  left: -150px;
  bottom: -150px;
  width: 100%;
  height: 150px;
  filter: blur(60px);
  transform: scale(1.8);
  border-radius: 30px;
  background-color: var(--mahva-theme-color-second);
  backdrop-filter: blur(27px);
  -webkit-backdrop-filter: blur(27px);
  z-index: 0;
  animation: rotate-and-move 5s infinite alternate none running;
  -webkit-animation: rotate-and-move 5s infinite alternate none running;
}

@keyframes rotate-and-move {
  0% {
    transform: rotate(0deg);
    left: -100px;
    bottom: -100px;
  }
  50% {
    transform: rotate(-30deg);
    left: 0px;
    bottom: -50px;
  }
  100% {
    transform: scale(1.5);
    transform: rotate(0deg);
    left: -0;
    bottom: 50px;
  }
}

@keyframes rotate-gradient {
  0% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.glass-layer-front {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-30%, -50%) rotate(45deg);
  width: 25rem;
  height: 25rem;
  background: linear-gradient(
    -30deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.164);
  border-radius: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.glass-layer-content {
  width: 25rem;
  height: 25rem;
  transform: translate(-30%, -40%);
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 9;
}
.glass-layer-content img {
  width: 100%;
}
.glass-layer-content h4 {
  font-size: 1.5em;
  font-weight: 900;
  text-align: center;
  color: var(--mahva-theme-color-white);
}
.glass-layer-content h5 {
  font-size: 1.1em;
  font-weight: 900;
  line-height: 10px;
  text-align: center;
  color: var(--mahva-theme-color-white);
}
.glass-layer-front img {
  max-width: 100px;
  margin-bottom: 20px;
}

.glass-layer-front h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.glass-layer-front p {
  font-size: 16px;
}

.slider {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  overflow: hidden;
}

.slider video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.glass-layer-content h1,
.glass-layer-content p {
  color: var(--mahva-theme-color-white);
  margin: 10px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .glass-layer-content h1 {
    font-size: 1.5rem;
  }

  .glass-layer-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .slider {
    height: 70vh;
  }
  .glass-box {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-18%, -38%);
    width: 15rem; /* عرض مناسب برای موبایل */
    height: 15rem; /* ارتفاع مناسب برای موبایل */
    z-index: 10; /* اطمینان از نمایش در بالاترین لایه */
  }
  .glass-layer-background {
    width: 15rem;
    height: 15rem;
  }
  .glass-layer-front {
    width: 15rem;
    height: 15rem;
  }
  .glass-layer-content {
    left: 70%;
    top: 50%;
    width: 15rem;
    height: 15rem;
  }
  .glass-layer-content h4 {
    font-size: 1rem;
  }
  .glass-layer-content h5 {
    display: none;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .slider {
    height: 80vh;
  }
  .glass-box {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-18%, -38%);
    width: 18rem; /* عرض مناسب برای موبایل */
    height: 18rem; /* ارتفاع مناسب برای موبایل */
    z-index: 10; /* اطمینان از نمایش در بالاترین لایه */
  }
  .glass-layer-background {
    width: 18rem;
    height: 18rem;
  }
  .glass-layer-front {
    width: 18rem;
    height: 18rem;
  }
  .glass-layer-content {
    left: 70%;
    top: 50%;
    width: 18rem;
    height: 18rem;
  }
  .glass-layer-content h4 {
    font-size: 1rem;
  }
  .glass-layer-content h5 {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .slider {
    height: 90vh;
  }
  .glass-box {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-18%, -38%);
    width: 20rem; /* عرض مناسب برای موبایل */
    height: 20rem; /* ارتفاع مناسب برای موبایل */
    z-index: 10; /* اطمینان از نمایش در بالاترین لایه */
  }
  .glass-layer-background {
    width: 20rem;
    height: 20rem;
  }
  .glass-layer-front {
    width: 20rem;
    height: 20rem;
  }
  .glass-layer-content {
    left: 70%;
    top: 50%;
    width: 20rem;
    height: 20rem;
  }
  .glass-layer-content h4 {
    font-size: 1rem;
  }
  .glass-layer-content h5 {
    display: none;
  }
}

@media (min-width: 1025px) {
}

/* End  Slider */
/* Start Nav Bar */
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var( --mahva-theme-color-second);
}
.navbar {
  z-index: 9;
}
@media (max-width: 992px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -20px;
    height: 100%;
    width: 90%;
    background-color: var(--mahva-theme-color-primary);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  .navbar-collapse.show {
    transform: translateX(0);
  }

  .navbar-toggler {
    position: absolute;
    left: 10px;
    top: 22px;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    color: aliceblue;
    font-size: 1.5em;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .navbar-nav {
    flex-direction: column;
    padding: 1rem;
  }

  .nav-mahva {
    z-index: 9;
  }
  #mobile-nav-btn {
    z-index: 10;
  }
}
.switch-theme {
  background: #fff;
  height: min(40px, 12.111vw);
  display: flex;
  align-items: center;
  border-radius: 36px;
  position: relative;
  isolation: isolate;
  width: min(74px, 25vw);
  justify-content: space-between;
  padding: 0 5px;
}

.ekit-nav-menu {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 992px) {
  .ekit-nav-menu {
    display: none;
  }
}
.right-inner-nav {
  border-bottom: 1px solid #ffffff50;
}
.right-inner-nav .navbar-nav .nav-item a {
  font-weight: 500;
  padding: 10px 15px;
}
.right-inner-nav .navbar-nav .nav-item:hover {
  color: var(--mahva-theme-color-secondary);
}

.right-inner-nav .navbar-nav .nav-item:hover {
  background-color: var(--mahva-theme-color-primary);
  border-radius: 10px;
}
.right-inner-nav .navbar-nav .nav-item:hover a {
  color: var(--mahva-theme-color-on-secondary);
}

/* استایل اصلی منو */
.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-link {
  padding: 10px 15px;
  color: var(--mahva-theme-color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--mahva-theme-color-secondary);
}

/* استایل زیرمنو */
@media (min-width: 992px) {
  .navbar-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    right: auto;
    left: 20%;
    background-color: var(--mahva-theme-color-primary);
    padding: 10px 0;
    list-style: none;
    margin: 0;
    min-width: 250px;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 15px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 1px;
    border: 0;
  }
}
/* حالت موبایلی */
@media (max-width: 992px) {
}

.navbar-nav .dropdown-menu .dropdown-item {
  padding: 8px 15px;
  color: var(--mahva-theme-color-white);
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}
.navbar-nav .dropdown-menu li:hover .dropdown-item {
  color: var(--mahva-theme-color-neutral-10) !important;
}
.dropdown-toggle::after {
  display: none;
}

/* نمایش زیرمنو هنگام هاور */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0%);
  }
}
.navbar-nav .dropdown-menu > li {
  position: relative;
  height: 45px;
  margin-bottom: 1px;
  border-bottom: 1px solid #ffffff17;
}
.right-inner-nav .navbar-nav .nav-item:hover a {
  background: transparent;
}
.navbar-nav .dropdown-menu > li a {
  color: var(--mahva-theme-color-white);
  position: absolute;
  height: 40px;
  width: 100%;
  z-index: 2;
}
.navbar-nav .dropdown-menu > li::before {
  content: " ";
  position: absolute;
  right: 0;
  width: 0;
  background-color: var(--mahva-theme-color-secondary);
  z-index: 1;
  height: 100%;
  width: 100%;
  transition: width 0.3s ease;
  width: 0%;
}
.navbar-nav .dropdown-menu > li:hover a {
  transition: width 0.3s ease;
  color: var(--mahva-theme-color-on-surface);
}
.navbar-nav .dropdown-menu > li:hover::before {
  width: 100%;
}

.navbar-nav .dropdown-menu > li:last-child {
  border-bottom: 0;
}
@media (max-width: 992px) {
  .navbar-nav .dropdown-menu {
    position: relative !important;
    background-color: transparent;
  }
  .dropdown-menu[data-bs-popper] {
    top: 100%;
    right: 10px;
  }
  .dropdown-toggle span.nav-arrow {
    border: 1px solid;
    border-radius: 50px;
    width: 2rem;
    height: 2rem;
    text-align: center;
    padding-top: 4px;
  }
  .navbar-nav .dropdown-menu .dropdown-item {
    padding: 10px 15px;
    color: var(--mahva-theme-color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-nav .dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
  }
  .dropdown-menu {
    display: none;
  }
  .dropdown-menu.show {
    display: block !important;
  }

  .navbar-nav .nav-item {
    border-bottom: 1px solid #ffffff14;
  }
}

/* End Nav Bar */

.bar1,
.bar2,
.bar3 {
  width: 25px;
  height: 2px;
  margin: 3px;
  background: var(--mahva-theme-color-white);
  transition: all 0.8s ease;
}
.ekit-nav-menu[aria-expanded="true"] .bar1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.ekit-nav-menu[aria-expanded="true"] .bar2 {
  opacity: 0;
}
.ekit-nav-menu[aria-expanded="true"] .bar3 {
  transform: rotate(45deg) translate(-5px, -8px);
}

#mobile-nav-btn[aria-expanded="true"] .bar1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
#mobile-nav-btn[aria-expanded="true"] .bar2 {
  opacity: 0;
}
#mobile-nav-btn[aria-expanded="true"] .bar3 {
  transform: rotate(45deg) translate(-5px, -8px);
}

.left-inner-nav {
  cursor: pointer;
}
.settings-box {
  position: absolute;
  top: 80px;
  left: 0;
  min-width: 250px;
  padding: 15px;
  background: linear-gradient(
    -30deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0)
  );
  backdrop-filter: blur(5px);
  border-radius: 10px;
  border: 1px solid #ffffff1f;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
@media (max-width: 996px) {
  .settings-box {
    display: none;
  }
}
.settings-box h4 {
  margin-bottom: 10px;
  color: var(--mahva-theme-color-on-surface);
}

.settings-box ul {
  padding: 0;
  margin: 0;
}

.settings-box ul li {
  list-style: none;
  margin-bottom: 10px;
}

.settings-box ul li a {
  color: var(--mahva-theme-color-on-surface);
  text-decoration: none;
  display: block;
  padding: 5px 10px;
  border-radius: 5px;
}

.settings-box ul li a:hover {
  color: var(--mahva-theme-color-on-surface);
  background-color: rgba(0, 0, 0, 0.1);
}

.settings-box ul li a:hover {
  color: var(--mahva-theme-color-on-surface);
  text-decoration: underline;
}
.left-inner-nav ul li {
  border-radius: 30px;
  /* padding: 0px 5px;
  margin: 0 5px; */
}
.color-palette {
  margin-top: 20px;
}
.color-palette li {
  width: 3rem;
  height: 3rem;
  border: 1px solid #fff;
  cursor: pointer;
}

.color-palette .btn-default-theme {
  transition: 1s;
  background: linear-gradient(135deg, #046e75, #058a8c, #06a3a3);
  box-shadow: -5px -4px 27px 0px rgba(0, 0, 0, 0.1),
    inset 0px -4px 12px -4px rgba(0, 0, 0, 0.1);
}

.color-palette .btn-red-theme {
  background: linear-gradient(135deg, #dc3545, #e63946, #f94144);
  box-shadow: -5px -4px 27px 0px rgba(0, 0, 0, 0.1),
    inset 0px -4px 12px -4px rgba(0, 0, 0, 0.1);
}

.color-palette .btn-green-theme {
  background: linear-gradient(135deg, #28a745, #2ecc71, #34d399);
  box-shadow: -5px -4px 27px 0px rgba(0, 0, 0, 0.1),
    inset 0px -4px 12px -4px rgba(0, 0, 0, 0.1);
}

.color-palette .btn-blue-theme {
  background: linear-gradient(135deg, #007bff, #339af0, #4ea8de);
  box-shadow: -5px -4px 27px 0px rgba(0, 0, 0, 0.1),
    inset 0px -4px 12px -4px rgba(0, 0, 0, 0.1);
}

.color-palette li {
  transition: transform 0.5s ease;
}

.color-palette li:hover {
  animation: gradient-rotate-animation 2s infinite linear;
}

@keyframes gradient-rotate-animation {
  0% {
    transform: rotate(0deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1.1);
  }
}

.color-palette .btn-blue-theme:hover {
  animation: gradient-rotate-animation 2s infinite linear;
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

/* Start  Mahva Infomation */

.is-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.is-overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fixed-element {
  position: absolute;
  pointer-events: none;
  max-width: 100%;
}

#eleman-bg-01 {
  top: 40%;
  right: 5%;
}

/* Start Infomation Animation */

.creative-tools {
  content: " ";
  background-image: url(/assets/images/cricle3d.svg);
  --background-overlay: "";
  background-position: center left;
  background-repeat: no-repeat;
  background-size: contain;
  left: -60px;
  top: 50%;
  transform: rotate(44deg);
  width: 282px;
  height: 262px;
  animation: tuberotate 12s infinite linear;
  animation-direction: alternate;
  z-index: -1;
}

.e-con {
  transition: background var(--overlay-transition, 0.3s),
    border-radius var(--border-transition, 0.3s),
    opacity var(--overlay-transition, 0.3s);
}

@keyframes tuberotate {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(150px) rotate(360deg);
  }
}

/* End Infomation Animation */
.mahva-infomation .feature-card {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 20px;
  background-color: #fff;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.mahva-infomation .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.mahva-infomation .feature-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}
.mahva-infomation .feature-number {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.mahva-infomation {
  overflow-x: hidden;
}
.is-overlay .is-overlay-bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 60%;

  background-image: url(/assets/images/Home02-bg04.png);
  background-size: contain;
  background-position: 100% 60%;
}
.is-section .is-boxes {
  display: flex;
  flex: 0 0 100%;
  height: 100%;
  width: 100%;
  position: relative;
}

/*start infomation bax in Top page */

.mahva-card-box {
  padding: 35px;
  background-color: var(--mahva-theme-color-card-background);
  box-shadow: 0 15px 90px rgba(0, 0, 0, 0.1);
  margin: 0 0 30px;
  border-radius: 15px;
}
.mahva-card-box .title {
  font-size: 1.25rem;
  color: #39374d;
  margin: 0 0 15px;
}
.mahva-card-box .title {
  font-size: 1.25rem;
  color: #39374d;
  margin: 0 0 15px;
}
.mahva-card-box .mahva-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--mahva-theme-color-second);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 20px;
}
.mahva-card-icon .mahva-card-icon-symbol img {
  max-width: 85px;
}
.mahva-card-box .mahva-card-title {
  font-weight: 800;
  font-size: 1em;
}
.mahva-card-box .mahva-card-description {
  font-weight: 300;
  font-size: 1em;
  text-align: justify;
}
.card-number {
  font-weight: 700;
  margin-left: 10px;
}

/*start infomation bax in Top page */

.mahva-info h2 span.text-info-title {
  color: var(--mahva-theme-default-base-color-Light-Header);
}
.mahva-info H2.display-5 {
  font-weight: 900;
}
.mahva-info p.info-p {
  text-align: justify;
  font-size: 1.2em;
  font-weight: 300;
}

/* End  Mahva Infomation */

/* start Mahva Video Infomation */

.mahva-video-section {
  overflow-x: hidden;
}
#fixedbox-aRJJmP2 {
  position: absolute;
  right: 0;
}
.mahva-video-shap-animation {
  background-image: url(/assets/images/TwistedTorusKnot.svg);
  --background-overlay: "";
  background-position: center left;
  background-repeat: no-repeat;
  background-size: contain;
  right: 80px;
  top: 80%;
  transform: rotate(24deg);
  width: 265px;
  height: 178px;
  z-index: -1;
  animation: 12s linear 0s infinite alternate none running tuberotate;
}

.mahva-video-box {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 90px rgba(0, 0, 0, 0.2);
}
.bg-accent4 {
  background-color: #ffbc00;
}
.mahva-video-box .video-cover {
  max-width: 100%;
  width: 100%;
  transform: scale(1.1);
}
.mahva-video-box {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 90px rgba(0, 0, 0, 0.2);
}

.mahva-video-box .play-button01 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -32px 0 0 -32px;
}

.play-button01 {
  width: 64px;
  height: 64px;
  background-color: var(--mahva-theme-default-base-color-Light-Header);
  display: inline-block;
  border-radius: 50%;
  position: relative;
}

.play-button01::before {
  content: "";
  background-color: inherit;
  opacity: 0.2;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border-radius: 50%;
  animation: play-button01 2s infinite;
}

.play-button01 .icon {
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -5px;
}

@-webkit-keyframes play-button01 {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  75% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@keyframes play-button01 {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  75% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

/* End Mahva Video Infomation */

/* Start mahva-services */

.mahva-services {
  padding: 6rem 0;
  background: linear-gradient(
    125deg,
    var(--mahva-theme-default-base-color-1),
    var(--mahva-theme-default-base-color-2)
  );
  color: #fff;
  position: relative;
  z-index: 1;
}

.mahva-services .glass-tab {
  margin-bottom: 12px;
  padding: 7px 10px;
  font-weight: 700;
  border: 1px solid #ffffff3e !important;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgb(255 255 255 / 16%),
    rgb(153 153 153 / 0%)
  );
  backdrop-filter: blur(8px);
  transition: all 0.4s ease-in-out;
  border: none;
  color: #000;
  border-radius: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mahva-services .glass-tab:hover {
  background-color: var(--mahva-theme-default-base-color-Light-Header);
  color: var(--mahva-theme-color-on-secondary);
}

.mahva-services .circle-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.5rem;
  height: 4.5rem;
  padding: 3px;
  border-radius: 50%;
  background-color: var(--mahva-theme-color-gray-color);
}
.glass-tab .circle-icon {
  transition: all 0.3s ease;
}

.glass-tab:hover .circle-icon {
  background-color: var(--mahva-theme-default-base-color-1);
  /* background-color: linear-gradient(125deg, var(--mahva-theme-default-base-color-1), var(--mahva-theme-default-base-color-2)) !important; */
}
.glass-tab:hover .circle-icon svg {
  fill: #fff;
}

.mahva-services .circle-icon img {
  width: 100%;
}
.mahva-services::before {
  position: absolute;
  content: " ";
  top: 50%;
  left: auto;
  right: -20px;
  bottom: 150px;
  width: 354px;
  z-index: 2;
  height: 354px;
  animation: circlerotate 12s infinite linear;
  animation-direction: alternate;
  z-index: -1;
  background-image: url(/assets/images/section-bg-shape-1.png);
  --background-overlay: "";
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  transition: background var(--overlay-transition, 0.3s),
    border-radius var(--border-transition, 0.3s),
    opacity var(--overlay-transition, 0.3s);
}
.mahva-services .tab-title {
  color: var(--mahva-theme-color-white);
  font-size: 1.3em;
  font-weight: 500;
}

.mahva-services .tab-title h3 {
  color: var(--mahva-theme-color-second);
  font-size: 1.3em;
  font-weight: 700;
}

@keyframes circlerotate {
  from {
    transform: translateY(0) rotate(0deg);
  }
  to {
    transform: translateY(-150px) rotate(360deg);
  }
}
.mahva-services .nav-pills .nav-link.active,
.mahva-services .nav-pills .show > .nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: var(--mahva-theme-default-base-color-Light-Header);
   
}
.tab-icon {
    padding: 8px !important;
}
.mahva-services .tab-content .tab-pane .tab-c-image img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: all 0.4s ease-in-out;
    height: 100%;
}

.mahva-services .tab-content .tab-pane .tabe-content-details {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
  z-index: 1;
  max-height: 32rem;
}

.tab-content-des {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  bottom: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  overflow: hidden;
}
.tabe-content-details:hover .tab-content-des {
  transform: translateY(0);
}
.tabe-content-details:hover .tab-c-image img {
  transform: scale(1.2) !important;
}
.tab-content-des {
  margin: 0px 40px 40px 40px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s,
    transform var(--e-transform-transition-duration, 0.4s);
}
.tab-bg-animation {
  position: absolute;
  left: 33%;
  right: auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  bottom: 0;
  z-index: 0;
  background: var(--mahva-theme-default-base-color-Light-Header);
  /* background: linear-gradient(135deg, #d1ff00f5, #aaff00f5); */
  filter: blur(100px);
  transform: translateX(168px);
  animation: spinX 5s ease-in-out infinite alternate;
}

@keyframes spinX {
  0% {
    transform: translateX(-15rem) translateY(2rem) rotateX(0);
  }
  100% {
    transform: translateX(15rem) translateY(-2rem) rotateX(20deg);
  }
}

.tab-dec {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  background-color: #ffffff00;
  padding: 20px 20px 20px 20px;
  border-radius: 20px 20px 20px 20px;
  backdrop-filter: blur(15px);
  transition: all 0.4s ease-in-out;
  text-align: justify;
  font-size: 0.8em;
  border: 1px solid #ffffff36;
}

.tab-content-icon {
  font-size: 30px;
  padding: 10px;
  transform: rotate(0deg);
  background-color: #dcf763c5;
  border-radius: 18px 18px 18px 18px;
  color: #000;
  display: inline;
}
    .tab-content-icon svg{
        max-width:50px;
    }
    .box-footer .btn-wraper {
        text-align: left;
        color: #dcf763;
    }
.box-footer .btn-wraper a {
  color: #dcf763;
  font-weight: bold;
  text-decoration: none;
  font-size: 1em;
}
    .box-footer .btn-wraper a svg{
        max-width:25px;
    }
    /* End mahva-services */
    .mahva-news-card {
        position: relative;
        z-index: 3;
        transition: all 0.4s;
        padding: 0;
    }

/* Start Mahva News Style */

.mahva-news-card .card-image {
  max-height: 24rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.mahva-news-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  border: 0;
  background-color: var(--mahva-theme-color-card-background);
  box-shadow: 0 15px 90px rgba(0, 0, 0, 0.1);
}
.mahva-news-card::after {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(25rem);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  border-radius: 50%;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #0000000b;
  z-index: 0;
}

.mahva-news-card:hover::after {
  transform: translateY(18rem);
  transition: all 0.4s ease-in-out;
  opacity: 1;
}
.mahva-news-card .card-title {
  transition: all 0.4s ease-in-out;
  transform: translateY(-10px);
  opacity: 1;
}
.mahva-news-card:hover .card-title {
  transform: translateY(0px);
  opacity: 0;
}

.mahva-news-card .card-body {
  height: 9rem;
  padding: 2rem 12px 0 12px;
  text-align: center;
  z-index: 2;
}
.mahva-news-card .card-body h3 {
  font-weight: 700;
  font-size: 1.1em;
}
.mahva-news-card .card-body .news-description {
  text-align: justify;
  font-size: 0.8em;
}
.mahva-news-card .card-footer {
  position: relative;
  background: transparent;
  z-index: 1;
  border: 0;
}

.mahva-news-card .card-footer .news-date {
  font-weight: 400;
  font-size: 1em;
  color: #8c8b8b;
}
.mahva-news-card .card-footer .news-category {
  font-weight: 700;
  color: #8c8b8b;
}
.mahva-news-card .card-footer .news-date {
  transition: opacity 0.5s ease-in-out;
}
.mahva-news-card:hover .card-footer .news-date {
  opacity: 0;
}
.mahva-news-card .card-footer .news-category {
  transition: opacity 0.5s ease-in-out;
}
.mahva-news-card:hover .card-footer .news-category {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.mahva-news-card {
  transition: all 0.4s ease-in-out;
}

.mahva-news-card .news-card-brand {
  opacity: 0;
  background: var(--mahva-theme-default-base-color-Light-Header);
  width: 80px;
  height: 100px;
  position: absolute;
  right: 7px;
  border-radius: 0 0 50px 50px;
  top: -80px;
  transition: all 0.4s ease-in-out;
  z-index: 2;
}

.mahva-news-card .news-card-brand img {
  width: 100%;
  transform: rotate(90deg) translateY(0px);
  transition: all 0.4s ease-in-out;
}
    .mahva-news-card .card-img-top {
        min-height: 400px;
        object-fit: cover;
    }
    
.mahva-news-card:hover .news-card-brand {
    opacity: 1;
    top: -10px;
}

.mahva-news-card:hover .news-card-brand img {
  transform: rotate(0deg) translateY(32px);
}
.mahva-news-card .news-description {
  transform: translateY(0rem);
  transition: all 0.4s ease-in-out;
  opacity: 0;
}
.mahva-news-card:hover .news-description {
  transform: translateY(-4rem);
  opacity: 1;
}
.mahva-news-card .btn-mahva {
  transform: translateY(-10px);
  background-color: var(--mahva-theme-default-base-color-Light-Header);
  text-decoration: none;
  padding: 8px 25px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
}

.mahva-news-card .news-more {
  transform: translateY(0rem);
  transition: all 0.6s ease-in-out;
  opacity: 0;
}
.mahva-news-card:hover .news-more {
  transform: translateY(-3rem);
  opacity: 1;
}

.news-animation {
  opacity: 0;
  z-index: 9;
  position: absolute;
  top: 50%;
  left: 40%;
}
.mahva-news-card:hover .news-animation {
  transition: all 0.2s ease-in-out;
  opacity: 1;
}
.mahva-news-card .news-cover-blur {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 0;
}
.mahva-news-card:hover .news-cover-blur {
  transition: all 0.3s ease-in-out;
  background-color: #ffffff00;
  backdrop-filter: blur(5px);
}
.news-loader {
  width: 80px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side, var(--mahva-theme-default-base-color-Light-Header) 90%, #f1de9a00);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: calc(100% / 3) 50%;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }
  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}
.news-details {
   
    padding: 15px;
    box-shadow: 0 4px 14px 0 #cecece6e;
}
    .news-details .content {
        text-align: justify;
    }
    .news-details .content p {
        font-size: 1.1rem;
        font-weight: 300;
        line-height: 37px;
    }
    .news-details h1{
        font-size:1.2em;
        font-weight:700;
    }


@media print {
    body * {
        visibility: hidden;
    }

    .news-details, .news-details * {
        visibility: visible;
    }

    .news-details {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: white;
        padding: 2rem;
    }
}
.widget-item {
    background: var(--mahva-theme-color-card-background);
    border: 1px solid #ffffff3e !important;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 15px 90px rgba(0, 0, 0, 0.1);
}

.widget-head {
    background: var(--mahva-theme-default-base-color-footer);
    padding: 5px 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}
    .widget-head h3 {
        font-weight:700;
        font-size:1.2em
        text-align:center;
        color: var(--mahva-theme-default-base-color-Light-Header);
    }
    /* End Mahva News Style */
    /* Start mahva btn */
    .mahva-btn {
        margin-top: 20px;
    }

.recent-image-box{
    width:100%;
    height:120px;

}
    .recent-image-box img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .btn-animated {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1rem;
        font-weight: bold;
        color: var(--mahva-theme-color-surface-0);
        background-color: var(--mahva-theme-default-base-color-Light-Header);
        border: none;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        transition: color 0.3s ease;
        overflow: hidden;
    }

.btn-animated .btn-icon-left,
.btn-animated .btn-icon-right {
  margin: 0 15px;
}
.btn-icon-right svg{
    max-width:25px;
}
.btn-animated a {
    min-width:200px;
    text-decoration: none;
    color: var(--mahva-theme-color-surface-0);
}
    .btn-animated .btn-icon-right {
        transition: transform 0.3s ease;
    }

.btn-animated:hover .btn-icon-right {
  transform: translateX(-10px); /* حرکت آیکن موقت به سمت چپ */
}

.btn-animated::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 140%;
  height: 280%;
  background-color: var(--mahva-theme-color-primary);
  z-index: 0;
  transform: translate(-110%, -10px) rotate(-10deg);
  transition: all 1s cubic-bezier(0.7, 0.19, 0.41, 0.91);
}

.btn-animated:hover::before {
  transform: translate(0%, -21px) rotate(0deg);
}

.btn-animated:hover {
  color: var(--mahva-theme-color-white);
}

.btn-animated span {
  position: relative;
  z-index: 1;
}
/* End mahva btn */

/* Start all services style start */

.mahva-all-services {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  padding: 6rem 0;
}
.mahva-all-services .all-sevice-box {
  z-index: 2;
}
.creative-tools-cube {
  content: "";
  position: absolute;
  left: -60px;
  right: auto;
  top: 0;
  width: 20rem;
  height: 20rem;
  animation: squrerotate 10s infinite linear;
  animation-direction: alternate;
  background-image: url(/assets/images/cube3D.svg);
  --background-overlay: "";
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

@keyframes squrerotate {
  0% {
    transform: translate(0, 0px) rotate(0deg);
  }

  50% {
    transform: translate(-100px, 40px) rotate(180deg);
  }

  100% {
    transform: translate(0px, 80px) rotate(360deg);
  }
}
.all-sevice-box {
  border-radius: 10px;
  background: #ffffff05;
  backdrop-filter: blur(5px);
  /* box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px; */
  box-shadow: 0 15px 90px rgba(0, 0, 0, 0.1);
  padding: 15px 5px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 0;
  cursor: pointer;
}
.all-sevice-box::before {
  top: -50%;
  content: "";
  height: 200%;
  width: 100%;
  border-radius: 500px 500px 0 0;
  position: absolute;
  left: 0;
  right: auto;
  background-color: var(--mahva-theme-default-base-color-Light-Header);
  transition: all 0.8s cubic-bezier(0.7, 0.19, 0.41, 0.91);
  transform: translate(-105%, 0) rotate(-10deg);
  z-index: -1;
}
.all-sevice-box:hover::before {
  border-radius: 0;
  transform: translate(0%, 0) rotate(0deg);
}
.all-sevice-box::after {
  top: -20%;
  content: "";
  height: 10rem;
  width: 10rem;
  border-radius: 50%;
  right: -55%;
  left: auto;
  position: absolute;
  transition: all 1s cubic-bezier(0.7, 0.19, 0.41, 0.91);
  background: var(--mahva-theme-default-base-color-Header);
  z-index: -1;
}
.all-sevice-box:hover::after {
  right: -22%;
}
    .all-sevice-box .box-right-icon {
        padding: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 90px;
        /* background: #00000012; */
        border-radius: 92px;
    }
.all-sevice-box .box-right-icon img {
  width: 100%;
  padding: 5px;
  background: linear-gradient(145deg, #cecece05, #cecece16);
  border-radius: 5px;
}
.all-sevice-box .all-services-box-content {
  padding: 0 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.all-sevice-box .all-services-box-content h3 {
  font-weight: 800;
  margin: 0;
  font-size: 1em;
  color: #b27946;
}
.all-sevice-box .all-services-box-content p {
  font-size: 0.8em;
  line-height: 20px;
  font-weight: 300;
}

/* End all services style start */

/* Start Faq */
.faq {
  padding: 5rem 0 0 0;
}
.faq-tab-pane-content {
  /* position: relative; */
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}
.faq-tab-pane-content .faq-tab-content-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.faq-tab-pane-content .faq-tab-content-image img {
  transform: scale(1.2);
}
.faq-tab-pane-content .bg-img-overide {
  position: absolute;
  background: #0000007d;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.faq-tab-pane-content .faq-tab-content-description {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  margin-top: 35px;
}
.faq-tab-pane-content .faq-tab-content-description .hover-section {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.faq-tab-pane-content .faq-tab-content-description .display-section {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  align-content: center;
  justify-content: center;
  flex-direction: column;
}
.faq-tab-pane-content
  .faq-tab-content-description
  .display-section
  .faq-mahva-logo
  img {
  width: 150px;
}
.faq-tab-pane-content
  .faq-tab-content-description
  .display-section
  .faq-mahva-logo {
  border-radius: 10px;
  padding: 5px;
  transform: translateY(0px);
  transition: transform 0.5s ease-in-out;
}
.faq-tab-pane-content:hover
  .faq-tab-content-description
  .display-section
  .faq-mahva-logo {
  opacity: 0;
  transform: translateY(-20px);
}

.faq-tab-pane-content .faq-tab-content-description .display-section h4 {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 900;
  opacity: 1;
  transform: translateY(-0);
  transition: transform 0.5s ease-in-out;
  margin-top: 0;
}
.faq-tab-pane-content:hover .faq-tab-content-description .display-section h4 {
  opacity: 0;
  transform: translateY(-20px);
}
.accordion-button::after {
  display: none;
}

.faq-tab-pane-content .faq-tab-content-image .faq-blur-img {
  width: 100%;
  height: 100%;
  background: #00000029;
  backdrop-filter: blur(5px);
  opacity: 0;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  right: 0;
  transition: opacity 0.5s ease-in;
}
.faq-tab-pane-content:hover .faq-tab-content-image .faq-blur-img {
  opacity: 1;
}
.faq-tab-pane-content .faq-tab-content-description .faq-animation {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transform: translateY(-18px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.faq-tab-pane-content:hover .faq-animation {
  transform: translateY(0);
  opacity: 1;
}
.faq-tab-pane-content .faq-tab-content-description h3 {
  font-weight: 900;
  font-size: 0.9em;
  color: #fff;
  transform: translateY(-25px);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.faq-tab-pane-content:hover .faq-tab-content-description h3 {
  transform: translateY(0);
  opacity: 1;
}
.faq-tab-pane-content .faq-tab-content-description p {
  font-weight: 400;
  font-size: 0.8em;
  color: #fff;
  line-height: 20px;
  transform: translateY(-20px);
  transition: all 0.7s ease-in-out;
  opacity: 0;
}
.faq-tab-pane-content:hover .faq-tab-content-description p {
  transform: translateY(-0);
  opacity: 1;
}
.faq-tab-pane-content .faq-tab-content-description .faq-more {
  width: 100%;
  aspect-ratio: 1;
  position: absolute;
  bottom: -0%;
  background-color: var(--mahva-theme-default-base-color-Light-Header);
  transform: translateY(100%);
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  z-index: 1;
}

.faq-tab-pane-content:hover .faq-tab-content-description .faq-more {
  transform: translateY(62%);
}
.faq-tab-pane-content .faq-tab-content-description .faq-more-btn {
  position: relative;
  background-color: #fff;
  display: inline-block;
  border-radius: 20px;
  padding: 5px 15px;
  transform: translateY(10rem);
  opacity: 0;
  z-index: 2;
  transition: all 0.9s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.faq-tab-pane-content:hover .faq-tab-content-description .faq-more-btn {
  opacity: 1;
  transform: translateY(3rem);
}

.faq-pane-tab {
  width: 80%;
  aspect-ratio: 1;
  /* height: 28rem; */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.circle-border {
  width: 100%;
  aspect-ratio: 1;
  border: 2px dashed #999;
  border-radius: 50%;
  position: relative;
}

.rotating-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: rotate 20s linear infinite;
  transform-origin: center center;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.tab-icon {
  width: 6rem;
  height: 6rem;
  background: var(--mahva-theme-default-base-color-Header);
  border-radius: 50% !important;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 42%;
  left: 42%;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0px 0px 26px 0px rgb(0 0 0 / 20%);
  transform: translate(-50%, -50%);
  border: 1px solid var(--mahva-theme-default-base-color-Header);
}

.tab-icon:hover {
  background: #f39c12;
}

.tab-icon:nth-child(1) {
  transform: rotate(0deg) translate(16rem) rotate(-0deg) !important;
}
.tab-icon:nth-child(2) {
  transform: rotate(45deg) translate(16rem) rotate(-45deg) !important;
}
.tab-icon:nth-child(3) {
  transform: rotate(90deg) translate(16rem) rotate(-90deg) !important;
}
.tab-icon:nth-child(4) {
  transform: rotate(135deg) translate(16rem) rotate(-135deg) !important;
}
.tab-icon:nth-child(5) {
  transform: rotate(180deg) translate(16rem) rotate(-180deg) !important;
}
.tab-icon:nth-child(6) {
  transform: rotate(225deg) translate(16rem) rotate(-225deg) !important;
}
.tab-icon:nth-child(7) {
  transform: rotate(270deg) translate(16rem) rotate(-270deg) !important;
}
.tab-icon:nth-child(8) {
  transform: rotate(315deg) translate(16rem) rotate(-315deg) !important;
}

.center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22rem;
  height: 22rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.center-content:hover .tab-icon:hover ~ .center-content {
  background: #f39c12;
  color: #fff;
}
@media (max-width: 500px) {
  .circle-container {
    width: 220px;
    height: 220px;
  }

  .tab-icon {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--mahva-theme-color-white);
  background-color: var(--mahva-theme-default-base-color-Light-Header);
}

@media (max-width: 768px) {

    .faq-pane-tab{
        display:none;
    }
}

    #faqAccordion .accordion-header {
        padding: 0;
        margin: 0;
    }

    #faqAccordion .accordion-button.collapsed .mahva-bg-secondary {
        background-color: var(--mahva-theme-default-base-color-Light-Header);
        color: var(--mahva-theme-color-background);
    }


    #faqAccordion .accordion-header .mahva-bg-light {
        background-color: var(--mahva-theme-default-base-color-Header);
        border-radius: 10px 10px 10px 10px !important;
    }

    #faqAccordion .accordion-item:not(:first-of-type),
    #faqAccordion .accordion-item:first-of-type {
        border: 0;
        padding: 0;
        box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.1);
        margin-bottom: 10px;
        border-radius: 10px !important;
    }

    #faqAccordion .accordion-button:not(.collapsed) {
        background-color: var(--mahva-theme-default-base-color-Light-Header);
        border-radius: 10px;
    }

        #faqAccordion .accordion-button:not(.collapsed) h4 {
            color: #000;
        }

    #faqAccordion .accordion-button:focus {
        box-shadow: 0 0 0 0;
    }

    #faqAccordion .accordion-header .mahva-bg-secondary {
        transform: rotate(90deg);
        transition: background 0.3s ease, color 0.3s ease;
        background-color: #f1de9a;
    }

    #faqAccordion .accordion-button h4 {
        margin: 0 8px 0 0;
        font-weight: 700;
        color: var(--mahva-theme-color-on-background);
    }

    #faqAccordion .accordion-button:not(.collapsed) .mahva-bg-secondary {
        background: var(--mahva-theme-default-base-color-footer);
        color: #fff;
        transition: background 0.3s ease, color 0.3s ease;
        transform: rotate(0deg);
    }
    /* End fag */

    /* Start Footer Style */

    #mahva-footer {
        background: var(--mahva-theme-default-base-color-footer);
        min-height: 25rem;
        clip-path: polygon(0 0, 100% 37%, 100% 100%, 0 100%);
        color: white;
        padding: 160px 20px 20px;
        position: relative;
        display: flex;
        align-items: center;
    }

    .copy-right {
        background: var( --mahva-theme-default-base-color-footer-02);
    }

    .contact-info {
        border-right: 1px solid;
        margin-right: 20px;
        padding-right: 30px;
    }

        .contact-info .contact-icon {
            background-color: #ffffff1d;
            backdrop-filter: blur(5px);
            /*padding: 10px;*/
            width: 3.5rem;
            aspect-ratio: 1;
            border-radius: 50%;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
        }

        /* این بخش اضافه شود */
        .contact-info .d-flex {
            flex-wrap: wrap;
        }

        .contact-info span {
            font-weight: 500;
            font-size: 1.1em;
            overflow-wrap: break-word;
            word-break: break-word;
        }

    .social-media .social-icon {
        width: 3.5rem;
        height: 3.5rem;
        padding: 13px;
        text-align: center;
        border-radius: 50%;
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

        .social-media .social-icon img {
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .social-media .social-icon::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: inherit;
            z-index: 1;
            transition: transform 0.5s linear;
        }

        .social-media .social-icon:hover::before {
            transform: rotate(120deg);
        }

        .social-media .social-icon.instagram {
            background: linear-gradient( 168deg, #4564dc, #aa2cc0, #ec0075, #ff6903, #ffd366 );
        }

        .social-media .social-icon.linkdin {
            background: linear-gradient( 125deg, #0077b5, #0077b5, #3197cf, #8cd6ff );
        }

        .social-media .social-icon.whatsapp {
            background: linear-gradient( 142deg, #25D366, #20b056, #1cab51, #137638 );
        }

        .social-media .social-icon.eitaa {
            background: linear-gradient( 145deg, #E37600, #df7400, #b05e04, #653502 );
        }

        .social-media .social-icon.bale {
            background: linear-gradient( 30deg, #002265, #4ADEB0 );
        }

        .social-media .social-icon.telegram {
            background: linear-gradient( 145deg, #88CDF6, #54A7D9, #266b97 );
        }

.inner-page-header {
    height: 260px;
    background-image: url('/assets/images/header-bg.jpg'); /* تصویر مناسب برای پس‌زمینه */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

        .inner-page-header .overlay {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient( 125deg, var(--mahva-theme-default-base-color-1), var(--mahva-theme-default-base-color-2) );
            background-size: 400% 400%;
            animation: gradientRotate 15s ease infinite;
            z-index: 1;
        }

    @keyframes gradientRotate {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }


    /*   .inner-page-header .overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgb(4 110 117 / 50%);
        z-index: 1;
    }*/

    .inner-page-header .content-container {
        z-index: 2;
    }

    .inner-page-header .page-title {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .inner-page-header .page-subtitle {
        font-size: 1.2rem;
        opacity: 0.85;
    }

    /* End Footer Style */



    /* title */
    /* .section-title .mahva-heading-title{
  font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
    padding-left: 30px;
}
.section-title .mahva-heading-title::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #2ecc71;
  border-radius: 26px;
  transform: rotate(-4deg);
  width: 100%;
  height: 100%;
  z-index: -1;
} */

    .help-svg-icon {
        max-width: 20px;
    }




.copy-right span {
    color: var(--mahva-theme-global-text-color) !important;
    text-decoration:none;

}

.copy-right text-muted a {
    color: var(--mahva-theme-global-text-color);
    text-decoration: none;
}

.faq-tab-pane-content .faq-tab-content-description .faq-more-btn
{
    text-decoration:none;

}