@font-face {
  font-family: Yekan Bakh;
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/yekan-bakh/woff/YekanBakhFaNum-thin.woff") format("woff"),
    url("../fonts/yekan-bakh/woff2/YekanBakhFaNum-thin.woff2") format("woff2");
}
@font-face {
  font-family: Yekan Bakh;
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/yekan-bakh/woff/YekanBakhFaNum-Light.woff") format("woff"),
    url("../fonts/yekan-bakh/woff2/YekanBakhFaNum-Light.woff2") format("woff2");
}
@font-face {
  font-family: Yekan Bakh;
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/yekan-bakh/woff/YekanBakhFaNum-Regular.woff")
      format("woff"),
    url("../fonts/yekan-bakh/woff2/YekanBakhFaNum-Regular.woff2")
      format("woff2");
}
@font-face {
  font-family: Yekan Bakh;
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/yekan-bakh/woff/YekanBakhFaNum-SemiBold.woff")
      format("woff"),
    url("../fonts/yekan-bakh/woff2/YekanBakhFaNum-SemiBold.woff2")
      format("woff2");
}
@font-face {
  font-family: Yekan Bakh;
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/yekan-bakh/woff/YekanBakhFaNum-Bold.woff") format("woff"),
    url("../fonts/yekan-bakh/woff2/YekanBakhFaNum-Bold.woff2") format("woff2");
}
@font-face {
  font-family: Yekan Bakh;
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/yekan-bakh/woff/YekanBakhFaNum-ExtraBold.woff")
      format("woff"),
    url("../fonts/yekan-bakh/woff2/YekanBakhFaNum-ExtraBold.woff2")
      format("woff2");
}
@font-face {
  font-family: Yekan Bakh;
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/yekan-bakh/woff/YekanBakhFaNum-Black.woff") format("woff"),
    url("../fonts/yekan-bakh/woff2/YekanBakhFaNum-Black.woff2") format("woff2");
}
@font-face {
  font-family: Yekan Bakh;
  font-style: normal;
  font-weight: 950;
  src: url("../fonts/yekan-bakh/woff/YekanBakhFaNum-ExtraBlack.woff")
      format("woff"),
    url("../fonts/yekan-bakh/woff2/YekanBakhFaNum-ExtraBlack.woff2")
      format("woff2");
}

/* ===== CSS CUSTOM PROPERTIES FOR THEMING ===== */
:root {
  /* Light theme (default) */
  --primary-color: #007bff;
  --secondary-color: #6c757d;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --light-color: #f8f9fa;
  --white-color: #ffffff;
  --dark-color: #343a40;

  /* Background colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #e9ecef;
  --bg-overlay: rgba(0, 0, 0, 0.1);

  /* Text colors */
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --text-muted: #6c757d;
  --text-light: #ffffff;
  --text-dark: #212529;

  /* Border colors */
  --border-color: #dee2e6;
  --border-light: #e9ecef;
  --border-dark: #adb5bd;

  /* Shadow */
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);

  /* Transition */
  --transition: all 0.3s ease;

  /* Font family */
  --font-family: "Yekan Bakh", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Dark theme */
[data-theme="dark"] {
  --primary-color: #0d6efd;
  --secondary-color: #6c757d;
  --success-color: #198754;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #0dcaf0;
  --light-color: #212529;
  --dark-color: #f8f9fa;

  /* Background colors */
  --bg-primary: #121212;
  --bg-secondary: #1e1e1e;
  --bg-tertiary: #2d2d2d;
  --bg-overlay: rgba(255, 255, 255, 0.1);

  /* Text colors */
  --text-primary: #ffffff;
  --text-secondary: #adb5bd;
  --text-muted: #6c757d;
  --text-light: #ffffff;
  --text-dark: #f8f9fa;

  /* Border colors */
  --border-color: #495057;
  --border-light: #6c757d;
  --border-dark: #adb5bd;

  /* Shadow */
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
  --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.5);
}

/* ===== BASE STYLES ===== */
* {
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

body {
  font-family: var(--font-family) !important;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: var(--transition);
  margin: 0;
  padding: 0;
}

[data-theme="dark"] body {
  background-color: #1e1e1e !important;
}

[data-theme="dark"] .elementor-heading-title {
  color: #fff !important;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.blue-text {
  color: #5e97ff;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== SITE HEADER ===== */
.site-header {
  position: relative;
  transition: var(--transition);
  height: 90px;
}
.site-header:not(.home-page-header) {
  background: linear-gradient(180deg, #5e97ff 0%, #4a7bff 100%);
  border-radius: 0 0 20px 20px;
}
.site-header.breadcrumb-enabled {
  height: 120px;
}
.site-header.home-page-header {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 99;
}

[data-theme="dark"] .site-header:not(.home-page-header) {
  background: #2d2d2d;
}

.site-header-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-header .site-header-wrapper::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background-color: #fff;
  top: -50px;
  left: -40px;
  border-radius: 100%;
  opacity: 0.3;
  filter: blur(24px);
  z-index: 1;
}

.site-header .site-header-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #fff;
  border-radius: 0 0 10px 10px;
}
[data-theme="dark"] .site-header .site-header-wrapper::after {
  background: #5e97ff;
}

.site-branding {
  display: flex;
  align-items: center;
}

.site-title {
  margin: 0;
  font-size: 1.5rem;
}

.site-title a {
  color: var(--text-primary);
  text-decoration: none;
}

.site-title a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.main-navigation {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.main-navigation ul {
  margin: 0;
  list-style: none;
}
.main-navigation > ul > li {
  padding: 36px 0;
}
.main-navigation > ul > li > a {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.8;
  transition: var(--transition);
}
.main-navigation > ul > li > a:hover {
  opacity: 1;
  color: #fff;
}
.main-navigation > ul > li.menu-item-has-children {
  position: relative;
}

.main-navigation > ul > li.menu-item-has-children > ul {
  position: absolute;
  top: 85%;
  right: 0;
  min-width: 250px;
  padding: 10px 0;
  background-color: var(--bg-primary);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
[data-theme="dark"] .main-navigation > ul > li.menu-item-has-children > ul {
  background-color: #fff;
}
.main-navigation > ul > li.menu-item-has-children:hover > ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.main-navigation > ul > li.menu-item-has-children > ul > li > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 12px 15px;
  color: var(--text-dark);
  font-size: 14px;
}

[data-theme="dark"]
  .main-navigation
  > ul
  > li.menu-item-has-children
  > ul
  > li
  > a {
  color: var(--light-color) !important;
}
.main-navigation > ul > li.menu-item-has-children > ul > li > a::before {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
  inset-inline-start: 15px;
}
.main-navigation > ul > li.menu-item-has-children > ul > li > a:hover::before {
  width: 12px;
}
.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

/* ===== MENU ICONS STYLES ===== */
.menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: currentColor;
  transition: var(--transition);
}

.menu-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Icon colors for different states */
.menu-icon {
  color: rgba(255, 255, 255, 0.8);
}

.main-navigation > ul > li > a:hover .menu-icon {
  color: #ffffff;
}

.main-navigation > ul > li.menu-item-has-children > ul > li > a .menu-icon {
  color: var(--text-secondary);
}

.main-navigation
  > ul
  > li.menu-item-has-children
  > ul
  > li
  > a:hover
  .menu-icon {
  color: var(--primary-color);
}

/* Dark theme icon adjustments */
[data-theme="dark"]
  .main-navigation
  > ul
  > li.menu-item-has-children
  > ul
  > li
  > a
  .menu-icon {
  color: var(--text-secondary);
}

[data-theme="dark"]
  .main-navigation
  > ul
  > li.menu-item-has-children
  > ul
  > li
  > a:hover
  .menu-icon {
  color: var(--primary-color);
}

/* Dropdown icon styles */
.dropdown-icon {
  width: 12px;
  height: auto;
  transition: var(--transition);
  margin-right: 4px;
}

.main-navigation > ul > li.menu-item-has-children > a .dropdown-icon {
  transform: rotate(0deg);
}

.main-navigation > ul > li.menu-item-has-children:hover > a .dropdown-icon {
  transform: rotate(180deg);
}

/* Ensure proper alignment for menu items with icons */
.main-navigation > ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9;
}
.site-header-actions .login-btn {
  background-color: var(--white-color);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}
.site-header-actions .call-btn {
  display: flex;
  flex-direction: column;
  align-items: start;
  font-size: 12px;
  color: var(--text-light);
}
[data-theme="dark"] .site-header-actions .call-btn {
  color: var(--dark-color) !important;
}
.site-header-actions .call-btn > span {
  font-weight: 800;
}
.site-header-actions .call-btn > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

[data-theme="dark"] .site-header-actions .login-btn {
  color: var(--light-color);
}

.offcanvas-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
}
.offcanvas-toggle svg {
  width: 34px;
  height: 34px;
}
.mobile-menu-container .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu-container .offcanvas-header .close-button {
  border: none;
  background: none;
}
.mobile-menu-container .offcanvas-header .close-button svg {
  width: 32px;
  height: 32px;
}
[data-theme="dark"] .mobile-menu-container .offcanvas-header .close-button {
  color: var(--text-light);
}
.mobile-menu-container .offcanvas-body {
  padding: 10px 0;
}
.mobile-menu .nav-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu .nav-menu > li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e3e7ea;
}
[data-theme="dark"] .mobile-menu .nav-menu > li {
  border-color: #40464c;
}
.mobile-menu .nav-menu > li > a {
  display: flex;
  padding: 16px 20px;
  color: var(--text-dark);
}
.mobile-menu .nav-menu > li.menu-item-has-children {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.mobile-menu .nav-menu > li.menu-item-has-children .accordion-item-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px 16px 0;
}
.mobile-menu .nav-menu > li.menu-item-has-children .accordion-item-main a {
  color: var(--text-dark);
}
.mobile-menu
  .nav-menu
  > li.menu-item-has-children
  .accordion-item-main
  .accordion-toggle {
  transition: var(--transition);
}
[data-theme="dark"]
  .mobile-menu
  .nav-menu
  > li.menu-item-has-children
  .accordion-item-main
  .accordion-toggle {
  color: var(--text-light);
}
.mobile-menu
  .nav-menu
  > li.menu-item-has-children.open
  .accordion-item-main
  .accordion-toggle {
  transform: rotate(-90deg);
}
.mobile-menu .nav-menu > li > a .dropdown-icon {
  display: none;
}
.mobile-menu .nav-menu > li > ul.sub-menu {
  position: static;
  width: 100%;
  background-color: #444;
  box-shadow: none;
  border: none;
  margin: 0;
  transition: max-height 0.3s ease;
  list-style: none;
  padding: 0;
}
.mobile-menu .nav-menu > li > ul.sub-menu > li > a {
  padding: 10px 15px;
  display: block;
}
/* Accordion menu for mobile */
.mobile-menu .accordion-sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-menu li.open > .accordion-sub-menu {
  max-height: 1000px;
}
.mobile-menu .accordion-toggle {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  font-size: 1.2em;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
.mobile-menu .accordion-icon {
  display: inline-block;
  transition: transform 0.3s;
}
.mobile-menu li.open > .accordion-toggle .accordion-icon {
  transform: rotate(90deg);
}

/* ===== HERO SECTION ===== */

[data-theme="dark"] .hero-section {
  background-color: #181e23 !important;
}
.hero-section .send-app-form {
  margin: 30px 0;
}
.hero-section .send-app-form span,
.get-app-section .get-app-section__form .send-app-form span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--text-light);
}
.hero-section .send-app-form form {
  position: relative;
  margin-bottom: 30px;
}
.get-app-section .get-app-section__form .send-app-form form{
  position: relative;
}
.hero-section .send-app-form form input,
.get-app-section .get-app-section__form .send-app-form form input {
  width: 100%;
  padding: 10px 16px;
  border-radius: 60px;
  background-color: rgba(255, 255, 255, 0.18);
  color: var(--text-light);
  border: none;
  font-size: 14px;
  height: 57px;
}
.get-app-section .get-app-section__form .send-app-form form input{
  background-color: #F5F5F5;
  color: #B0B0B0;
}
[data-theme="dark"] .get-app-section .get-app-section__form .send-app-form form input{
  background-color: #3c3c3c;
}
.hero-section .send-app-form form input::placeholder {
  color: var(--text-light);
}
.get-app-section .get-app-section__form .send-app-form form input::placeholder{
  color: #B0B0B0; 
}
.hero-section .send-app-form form button,
.get-app-section .get-app-section__form .send-app-form form button {
  position: absolute;
  background-color: #5e97ff;
  border: none;
  height: 47px;
  width: 200px;
  border-radius: 60px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  top: 5px;
  left: 5px;
  letter-spacing: -0.06em;
  cursor: pointer;
  transition: var(--transition);
}
.hero-section .send-app-form form input:focus,
.hero-section .send-app-form form input:active,
.get-app-section .get-app-section__form .send-app-form form input:focus,
.get-app-section .get-app-section__form .send-app-form form input:active {
  outline: none;
}
.hero-section .app-infos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* ===== About App ===== */
[data-theme="dark"] .about-app-content-wrapper > div.elementor-element {
  background-color: #181e23 !important;
}

[data-theme="dark"] .about-app-content-wrapper .elementor-heading-title {
  color: #fff !important;
}

.about-app-section .about-app-content-wrapper::before,
.about-app-section .about-app-content-wrapper::after,
.video-section .e-hosted-video::before,
.video-section .e-hosted-video::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 80%;
  z-index: -1;
  border-radius: 20px;
}
.video-section .e-hosted-video::before,
.video-section .e-hosted-video::after {
  z-index: 1;
}
.about-app-section .about-app-content-wrapper::before,
.video-section .e-hosted-video::before {
  background-color: #5e97ff;
  top: -10px;
  left: -10px;
}
.about-app-section .about-app-content-wrapper::after,
.video-section .e-hosted-video::after {
  background-color: #222222;
  bottom: -10px;
  right: -10px;
}
[data-theme="dark"] .video-section .e-hosted-video::after,
[data-theme="dark"] .about-app-section .about-app-content-wrapper::after {
  background-color: #5e97ff;
}
[data-theme="dark"] .about-app-section .elementor-icon-list-text {
  color: var(--text-secondary);
}
/* ===== Why Us ===== */
.why-us-section {
  padding: 60px 0;
}
.why-us-section .title {
  font-size: 24px;
  font-weight: 900;
}
.why-us-section .title span {
  color: #5e97ff;
}
.why-us-section .description {
  display: block;
  width: 50%;
  line-height: 2;
  font-size: 14px;
  margin: 0 auto;
}
.why-us-section .swiper-slide {
  overflow: visible;
}
.why-us-section .slide-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
  padding: 20px;
  gap: 10px;
  border-radius: 10px;
  box-shadow: 0 6px 43px 0 rgba(0, 0, 0, 0.05);
}
[data-theme="dark"] .why-us-section .slide-item {
  background-color: #2b3339 !important;
}
.why-us-section .slide-item .title {
  font-size: 18px;
  font-weight: 900;
  color: #2d2d2d;
  margin: 0;
}
[data-theme="dark"] .why-us-section .slide-item .title {
  color: #fff !important;
}
.why-us-section .slide-item p {
  color: #747474;
  font-size: 14px;
  line-height: 2;
  margin: 0;
  text-align: center;
}
[data-theme="dark"] .why-us-section .slide-item p{
  color: #fff;
}
.why-us-section .slides {
  margin-top: 40px;
}
.why-us-section .swiper-wrapper {
  padding: 30px 0;
}
.why-us-section .next-button,
.why-us-section .prev-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #747474;
  z-index: 9;
}
.why-us-section .next-button {
  left: 0;
}
.why-us-section .prev-button {
  right: 0;
}

/* ===== PRICE LIST ===== */
.price-list-section .price-list-section__inner {
  position: relative;
  background-color: #5e97ff;
  padding: 30px;
  border-radius: 20px;
  height: 300px;
}
.price-list-section .price-list-section__inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 90px;
  background-color: #2d2d2d;
  bottom: 0;
  left: 0;
  border-radius: 20px;
  z-index: 1;
}
.price-list-section .price-list-section__title {
  position: relative;
  z-index: 9;
}
.price-list-section .price-list-section__title .title {
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  color: var(--text-light);
}
.price-list-section .price-list-section__title p {
  display: block;
  color: var(--text-light);
  font-size: 14px;
  line-height: 2;
  text-align: center;
  width: 65%;
  margin: 0 auto;
}
.price-list-section__items {
  position: relative;
  margin-top: -145px;
  z-index: 9;
  padding: 0 20px;
}
.price-list-section__item {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  border: 1px solid transparent;
  transition: var(--transition);
  margin-bottom: 20px;
}
[data-theme="dark"] .price-list-section__item {
  background-color: #151b1f !important;
}
.price-list-section__item:hover {
  border-color: #5e97ff;
}
.price-list-section__item .price-list-section__item-head {
  text-align: center;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.07);
  padding-bottom: 10px;
}
.price-list-section__item .price-list-section__item-head .title {
  font-size: 18px;
  font-weight: 800;
  color: #2d2d2d;
  margin: 0;
}
[data-theme="dark"]
  .price-list-section__item
  .price-list-section__item-head
  .title {
  color: #fff !important;
}
.price-list-section__item .price-list-section__item-head span:not(.badge) {
  font-size: 14px;
  font-weight: 400;
  color: #747474;
  display: block;
  margin: 10px 0;
}
.price-list-section__item .price-list-section__item-head .badge {
  color: var(--text-light) !important;
}
.price-list-section__item-body {
  padding: 20px 0;
  text-align: center;
}
.price-list-section__item-body ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.price-list-section__item-body ul li {
  color: #747474;
  font-size: 14px;
  text-align: center;
}
[data-theme="dark"] .price-list-section__item-body ul li {
  color: var(--text-secondary);
}
.price-list-section__item-body a {
  background-color: #f5f5f5;
  color: #2d2d2d;
  font-size: 14px;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  text-align: center;
  margin: 20px auto 0 auto;
}
[data-theme="dark"] .price-list-section__item-body a {
  background-color: #0b0c10 !important;
  color: #fff !important;
}
.price-list-section__item:hover .price-list-section__item-body a {
  background-color: #5e97ff;
  color: var(--text-light);
}

/* ===== SITE CONTENT ===== */
.app-video-section {
  padding: 60px 0;
}
.app-video-section .app-video-section__title {
  margin-bottom: 30px;
}
.app-video-section .app-video-section__title .title {
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  color: var(--text-dark);
}
.app-video-section .app-video-section__title .title span {
  color: #5e97ff;
}
.app-video-section .app-video-section__title p {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 2;
  text-align: center;
  width: 65%;
  margin: 0 auto;
}

.app-video-section__video {
  position: relative;
  width: 70%;
  margin: 0 auto;
  border-radius: 12px;
  cursor: pointer;
}
.app-video-section__video img {
  border-radius: 12px;
}
.app-video-section__video-play {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-light);
  z-index: 5;
  border-radius: 12px;
}
.app-video-section__video-play h4 {
  font-size: 18px;
  font-weight: bold;
}
.app-video-section__video::before,
.app-video-section__video::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 50%;
  z-index: -1;
  border-radius: 20px;
}
.app-video-section__video::before {
  background-color: #5e97ff;
  top: -10px;
  left: -10px;
}
.app-video-section__video::after {
  background-color: #222222;
  bottom: -10px;
  right: -10px;
}
.app-video-modal video {
  max-width: 100%;
  width: 100%;
  border-radius: 8px;
}
.app-video-modal .modal-body {
  display: flex;
  padding: 0;
}
.app-video-modal .modal-body .btn-close {
  position: absolute;
  top: -30px;
}
[data-theme="dark"] .video-content .elementor-widget-container {
  background-color: #151b1f !important;
}
/* ===== SITE CONTENT ===== */
.reviews-section {
  padding: 60px 0 0;
}
.reviews-section .reviews-section__title {
  margin-bottom: 60px;
}
.reviews-section .reviews-section__title .title {
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  color: var(--text-dark);
}
.reviews-section .reviews-section__title .title span {
  color: #5e97ff;
}
.reviews-section .reviews-section__title p {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 2;
  text-align: center;
  width: 65%;
  margin: 0 auto;
}
.reviews-section .review-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: var(--bg-primary);
  border-radius: 12px;
  padding: 0 20px 20px;
  border: 1px solid #ededed;
}
[data-theme="dark"] .reviews-section .review-item {
  background-color: #151b1f !important;
  border-color: #2b3339 !important;
}
.reviews-section .review-item figure {
  margin-top: -25px !important;
}
.reviews-section .review-item figure img {
  border: 5px solid #000;
  border-radius: 100%;
  width: 50px;
  height: 50px;
}
.reviews-section .review-item .review-item-content {
  text-align: center;
}
.reviews-section .review-item .review-item-content .title {
  font-size: 14px;
  font-weight: 900;
  color: #2d2d2d;
  margin: 0;
}
[data-theme="dark"] .reviews-section .review-item .review-item-content .title {
  color: #fff !important;
}
.reviews-section .review-item .review-item-content span {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  color: #747474;
  padding-bottom: 10px;
}
[data-theme="dark"] .reviews-section .review-item .review-item-content span {
  color: var(--text-secondary);
}
.reviews-section .review-item .review-item-content span::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 3px;
  background-color: #5e97ff;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100px;
}
.reviews-section .review-item .review-item-content p {
  margin-top: 20px;
  font-weight: 400;
  color: #747474;
}
[data-theme="dark"] .reviews-section .review-item .review-item-content p {
  color: var(--text-secondary);
}
.top-items,
.bottom-items {
  overflow: hidden;
  width: 100%;
  padding: 30px 0;
}
.reviews-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 32px;
  transition: transform 0.5s;
}
.top-items .reviews-slider {
  animation: slide-left 20s linear infinite;
}
.bottom-items .reviews-slider {
  animation: slide-right 20s linear infinite;
}
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes slide-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.review-item {
  flex: 0 0 520px;
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
  z-index: 1;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.reviews-section__content {
  position: relative;
}
.reviews-section__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 50%;
  background-color: #5e97ff;
  z-index: -1;
}

/* ===== CUSTOMERS ===== */
.customers-section {
  padding: 200px 0;
  background-color: #2d2d2d;
  background-image: url("../images/customers-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -125px;
}
.customers-section .customers-section__title {
  margin-bottom: 60px;
}
.customers-section .customers-section__title .title {
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  color: var(--text-light);
}
.customers-section .customers-section__title p {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 2;
  text-align: center;
  width: 65%;
  margin: 0 auto;
}
/* ===== FAQS ===== */
.faqs-section .faqs-section__title {
  margin-bottom: 60px;
}
.faqs-section .faqs-section__title .title {
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  color: var(--text-light);
}
.faqs-section .faqs-section__title .title span {
  color: #5e97ff;
}
.faqs-section .faqs-section__title p {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 2;
  text-align: center;
  width: 65%;
  margin: 0 auto;
}
.faqs-section__content .accordion-item {
  margin-bottom: 16px;
  box-shadow: 0 4px 85px 0 rgba(0, 0, 0, 0.05);
  border-radius: 10px !important;
  overflow: hidden;
}
.faqs-section__content .accordion-item .accordion-button {
  padding: 26px;
}
.faqs-section__content .accordion-item .accordion-button:not(.collapsed) {
  border: none !important;
  background: transparent !important;
  color: #5e97ff !important;
}
/* ===== SITE CONTENT ===== */

.site-main {
  flex: 1;
}
.page-hero-section {
  position: relative;
  background-color: #2d2d2d;
  padding: 100px 0 100px 0;
  margin-bottom: 40px;
  margin-top: -42px;
}

.page-hero-section::before,
.page-hero-section::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 152px;
  background-image: url("../images/hero-icons.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  mix-blend-mode: luminosity;
}
.page-hero-section::before {
  right: 10%;
}
.page-hero-section::after {
  left: 10%;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-light);
}

.hero-description {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 40px;
}

.mr-sms-breadcrumb {
  background-color: #272727;
  padding: 16px;
  border-radius: 10px;
  margin-top: -30px;
  z-index: 99;
  position: relative;
}

.mr-sms-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  display: flex;
  align-items: right;
  justify-content: right;
  flex-wrap: wrap;
}

.mr-sms-breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
}

.mr-sms-breadcrumb .breadcrumb-separator {
  margin: 0 8px;
  color: #fff;
  font-size: 0.8rem;
  
}

.mr-sms-breadcrumb .breadcrumb-item a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mr-sms-breadcrumb .breadcrumb-item a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.mr-sms-breadcrumb .breadcrumb-item.active {
  color: #fff;
  font-weight: 500;
}

@media (max-width: 768px) {
  .page-hero-section {
    padding: 100px 0;
  }

  .hero-title {
    font-size: 2rem;
  }
  .page-hero-section::before,
  .page-hero-section::after{
    content: unset;
  }
}

/* ===== SITE FOOTER ===== */
.site-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 2rem 0;
  margin-top: 3rem;
  transition: var(--transition);
}

.site-info {
  text-align: center;
  color: var(--text-secondary);
}

/* ===== THEME TOGGLE BUTTON ===== */
.theme-toggle {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.theme-toggle:hover {
  background: var(--bg-tertiary);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: var(--text-primary);
  transition: var(--transition);
}

.video-section .elementor-widget-container {
  overflow: visible !important;
}
.video-section .e-hosted-video > div {
  position: relative;
  z-index: 10;
  border-radius: 20px;
  overflow: hidden;
}

.main-footer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background-color: #5e97ff;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.icon-box:hover .elementor-icon-box-description {
  color: #fff !important;
}
.mrsms-tabs-table-widget .mrsms-tabs-table-widget-header {
  background-color: #5e97ff;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  margin-bottom: 20px;
}
.mrsms-tabs-table-widget .mrsms-tabs-table-widget-header ul {
  gap: 10px;
}
.mrsms-tabs-table-widget .mrsms-tabs-table-widget-header ul li button {
  border: 1px solid #fff;
  background-color: transparent;
  border-radius: 60px;
  color: #fff;
  padding: 6px 20px;
}
.mrsms-tabs-table-widget .mrsms-tabs-table-widget-header ul li button.active {
  background-color: #fff;
  color: #747474;
}
.mrsms-tabs-table-widget-content .tab-pane .table thead tr th,
.mrsms-tabs-table-widget-content .tab-pane .table tbody tr td {
  padding: 16px 20px;
  border: none;
}
.mrsms-tabs-table-widget-content .tab-pane .table thead tr th:first-child,
.mrsms-tabs-table-widget-content
  .tab-pane
  .table
  tbody
  tr:nth-child(even)
  td:first-child {
  border-radius: 0 16px 16px 0;
  font-weight: 300;
}
.mrsms-tabs-table-widget-content .tab-pane .table tbody tr td:first-child {
  font-weight: 300;
}
.mrsms-tabs-table-widget-content .tab-pane .table thead tr th:last-child,
.mrsms-tabs-table-widget-content
  .tab-pane
  .table
  tbody
  tr:nth-child(even)
  td:last-child {
  border-radius: 16px 0 0 16px;
}
.mrsms-tabs-table-widget-content .tab-pane .table tbody tr:nth-child(even) td {
  background-color: #f5f5f5;
}
.mrsms-tabs-table-widget table th,
.mrsms-tabs-table-widget table td {
  white-space: nowrap;
}
[data-theme="dark"] .table>:not(caption)>*>*{
  color: #fff;
  background: transparent;
}
[data-theme="dark"] .mrsms-tabs-table-widget-content .tab-pane .table tbody tr:nth-child(even) td{
  background-color: #323232;
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 0.75rem;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1.1rem;
  }
  h6 {
    font-size: 1rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .theme-toggle {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
  }

  .theme-toggle svg {
    width: 18px;
    height: 18px;
  }

  .main-navigation {
    justify-content: center;
    margin-top: 1rem;
  }

  .nav-menu {
    gap: 1rem;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .theme-toggle {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }
}

/* ===== RESPONSIVE MENU ICONS ===== */
@media (max-width: 1200px) {
  .site-header-actions .call-btn {
    display: none;
  }
  .site-header-actions .login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
  }
  .site-header-actions .login-btn span {
    display: none;
  }
}
@media (max-width: 992px) {
  .site-header-wrapper {
    padding: 36px 0;
    justify-content: space-between;
  }
  .main-navigation {
    display: none;
  }
  .offcanvas-toggle {
    display: flex;
  }
  .site-header .theme-toggle {
    display: none;
  }
  .hero-section-image {
    margin-top: 30px;
  }
  .about-app-section .about-app-content {
    margin-top: 30px;
  }
  .about-app-section img {
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .menu-icon {
    width: 14px;
    height: 14px;
    margin-right: 4px;
  }

  .main-navigation > ul > li.menu-item-has-children > ul > li > a .menu-icon {
    width: 12px;
    height: 12px;
    margin-right: 6px;
  }

  .dropdown-icon {
    width: 10px;
    height: auto;
  }
}

@media (max-width: 600px) {
  .site-header .site-header-wrapper::before {
    left: -10px;
  }
}

@media (max-width: 480px) {
  .menu-icon {
    width: 12px;
    height: 12px;
    margin-right: 3px;
  }

  .main-navigation > ul > li.menu-item-has-children > ul > li > a .menu-icon {
    width: 10px;
    height: 10px;
    margin-right: 4px;
  }

  .dropdown-icon {
    width: 8px;
    height: auto;
  }
  .send-app-form form {
    display: flex;
    flex-direction: column;
  }
  .send-app-form form input {
    text-align: center;
    border-radius: 10px 10px 0 0 !important;
  }
  .send-app-form form button {
    position: static !important;
    width: 100% !important;
    border-radius: 0 0 10px 10px !important;
  }
}

/* ===== ACCESSIBILITY FOR MENU ICONS ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .menu-icon {
    filter: contrast(1.5);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .menu-icon,
  .dropdown-icon {
    transition: none;
  }

  .main-navigation > ul > li > a:hover .menu-icon,
  .main-navigation
    > ul
    > li.menu-item-has-children
    > ul
    > li
    > a:hover
    .menu-icon {
    transform: none;
  }
}

/* Infinite sliding reviews */

.customers-section .customers-swiper {
  width: 100%;
  padding: 30px 0;
}
.customers-section .customers-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  height: 80px;
}
.customers-section .customers-swiper img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.2);
  transition: filter 0.3s;
}
.customers-section .customers-swiper img:hover {
  filter: grayscale(0) brightness(1);
}
.customers-section .customers-swiper .swiper-button-next,
.customers-section .customers-swiper .swiper-button-prev {
  color: #fff;
  top: 50%;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s;
}
.customers-section .customers-swiper .swiper-button-next:hover,
.customers-section .customers-swiper .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.6);
}
.customers-section .customers-swiper .swiper-button-next:after,
.customers-section .customers-swiper .swiper-button-prev:after {
  font-size: 18px;
}
@media (max-width: 1023px) {
  .customers-section .customers-swiper .swiper-slide {
    height: 70px;
  }
  .customers-section .customers-swiper img {
    max-width: 90px;
    max-height: 50px;
  }
}
@media (max-width: 767px) {
  .customers-section .customers-swiper {
    padding: 20px 0;
  }
  .customers-section .customers-swiper .swiper-slide {
    height: 60px;
  }
  .customers-section .customers-swiper img {
    max-width: 70px;
    max-height: 40px;
  }
  .customers-section .customers-swiper .swiper-button-next,
  .customers-section .customers-swiper .swiper-button-prev {
    width: 28px;
    height: 28px;
  }
}

/* ===== MR SMS Blog Posts Widget (Alternating Colors) ===== */
.mrsms-blog-posts-widget {
  margin: 40px 0;
  direction: rtl;
}
.mrsms-blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  justify-items: center;
}
.mrsms-blog-post-card {
  border-radius: 24px;
  box-shadow: 0 6px 32px 0 rgba(0, 0, 0, 0.08);
  padding: 32px 18px 24px 18px;
  text-align: center;
  position: relative;
  min-height: 320px;
  max-width: 320px;
  width: 100%;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.mrsms-blog-post-card:nth-child(odd) {
  background: #5e97ff;
  color: #fff;
}
.mrsms-blog-post-card:nth-child(even) {
  background: #232323;
  color: #fff;
}
.mrsms-blog-post-card:hover {
  box-shadow: 0 8px 40px 0 rgba(94, 151, 255, 0.15);
  filter: brightness(1.08);
}
.mrsms-blog-post-number {
  width: 75px;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg width='75' height='82' viewBox='0 0 75 82' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29.2579 2.88992C34.3586 -0.0550159 40.6431 -0.0550139 45.7438 2.88992L66.4808 14.8624C71.5815 17.8073 74.7237 23.2498 74.7237 29.1397V53.0846C74.7237 58.9745 71.5815 64.4169 66.4808 67.3619L45.7438 79.3344C40.643 82.2793 34.3586 82.2793 29.2578 79.3344L8.52092 67.3619C3.42014 64.4169 0.277935 58.9745 0.277935 53.0846V29.1397C0.277935 23.2498 3.42015 17.8073 8.52093 14.8624L29.2579 2.88992Z' fill='url(%23paint0_linear_183_4107)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_183_4107' x1='37.5008' y1='-1.86917' x2='37.5008' y2='84.0934' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white' stop-opacity='0.43'/%3E%3Cstop offset='1' stop-color='white' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A") !important;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 2.5rem;
  font-family: inherit;
  font-weight: 700;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  letter-spacing: 0.1em;
}
.mrsms-blog-post-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: inherit;
  line-height: 1.5;
  color: #fff;
}
.mrsms-blog-post-card:nth-child(odd) .mrsms-blog-post-excerpt {
  color: #e3e3e3;
}
.mrsms-blog-post-card:nth-child(even) .mrsms-blog-post-excerpt {
  color: #bfc7d1;
}
.mrsms-blog-post-excerpt {
  font-size: 0.98rem;
  color: #e3e3e3;
  margin-bottom: 18px;
  line-height: 2;
  flex: 1 1 auto;
}
.mrsms-blog-posts-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.mrsms-blog-posts-page-link {
  background: #232323;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.mrsms-blog-posts-page-link.active,
.mrsms-blog-posts-page-link:hover {
  background: #5e97ff;
  color: #fff;
}
@media (max-width: 600px) {
  .mrsms-blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mrsms-blog-post-card {
    min-height: 220px;
    padding: 24px 8px 16px 8px;
  }
}
[data-theme="dark"] .mrsms-blog-post-card:nth-child(odd) {
  background: #5e97ff;
  color: #fff;
}
[data-theme="dark"] .mrsms-blog-post-card:nth-child(even) {
  background: #232323;
  color: #fff;
}
[data-theme="dark"]
  .mrsms-blog-post-card:nth-child(odd)
  .mrsms-blog-post-number {
  background: #232323;
  color: #5e97ff;
}
[data-theme="dark"]
  .mrsms-blog-post-card:nth-child(even)
  .mrsms-blog-post-number {
  background: #5e97ff;
  color: #fff;
}
[data-theme="dark"] .mrsms-blog-posts-page-link {
  background: #232323;
  color: #fff;
}
[data-theme="dark"] .mrsms-blog-posts-page-link.active,
[data-theme="dark"] .mrsms-blog-posts-page-link:hover {
  background: #5e97ff;
  color: #fff;
}
.mr-sms-single-post .entry-content p {
  line-height: 2.7;
  color: #747474;
  font-size: 16px;
  font-weight: 400;
}
.single-post .page-hero-section {
  padding-bottom: 190px;
  margin-bottom: 0;
}
.hero-video,
.hero-image {
  position: relative;
  margin-top: -250px;
  z-index: 9;
  margin-bottom: 60px;
}
.app-tut-hero-section-content .hero-video,
.app-tut-hero-section-content .hero-image {
  margin: 0;
}
.hero-video .wrapper,
.hero-image .wrapper {
  position: relative;
  width: 60%;
  margin: 0 auto;
}
.app-tut-hero-section-content .wrapper {
  width: 100%;
  margin: 0;
}
.hero-video .wrapper::before,
.hero-video .wrapper::after,
.hero-image .wrapper::before,
.hero-image .wrapper::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 60%;
  border-radius: 12px;
  z-index: 1;
}
.app-tut-hero-section-content .wrapper::after,
.app-tut-hero-section-content .wrapper::before {
  content: unset;
}
.hero-video .wrapper::before,
.hero-image .wrapper::before {
  left: -10px;
  top: -10px;
  background-color: #5e97ff;
}
.hero-video .wrapper::after,
.hero-image .wrapper::after {
  right: -10px;
  bottom: -10px;
  background-color: #2d2d2d;
}
.hero-video .plyr {
  position: relative;
  border-radius: 12px;
  z-index: 9;
}
.hero-image .hero-image img {
  border-radius: 12px;
}
.app-tut-hero-section-content .hero-image img{
  border: 2px solid #fff;
}
.app-tut-hero-section-content {
  margin-top: -200px;
}
.app-tut-hero-section-content .hero-content {
  position: relative;
  background-color: var(--bg-primary);
  z-index: 9;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
}
.mr-sms-single-post{
  margin: 30px 0;
}
.app-tut-hero-section-content .hero-content h1,
.app-tut-hero-section-content .hero-content p {
  color: var(--text-dark);
  text-align: right;
}
.app-tut-hero-section-content .hero-content h1 {
  font-size: 32px;
  font-weight: 900;
}
.app-tut-hero-section-content .hero-content p {
  font-size: 14px;
  line-height: 2.5;
}
.get-app-section{

}
.get-app-section__content{

}
.get-app-section .get-app-section__list .elementor-icon-list-items{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.get-app-section .get-app-section__list .elementor-icon-list-items>li{
  width: 50%;
}
.get-app-section__wrapper{
  position: relative;
}
.get-app-section .get-app-section__wrapper::before,
.get-app-section .get-app-section__wrapper::after{
  content: "";
  position: absolute;
  width: 30%;
  height: 100%;
  border-radius: 20px;
}
.get-app-section__wrapper::before{
  background-color: #222222;
  right: 0;
  top: 0;
}
.get-app-section__wrapper::after{
  background-color: #5E97FF;
  left: 0;
  top: 0;
}
[data-theme="dark"] .get-app-section__content{
  background-color: #2e2e2e !important;
}
[data-theme="dark"] .mr-sms-single-post .entry-content p{
  color: #fff;
}
[data-theme="dark"] .hero-section .arrow-down g path{
  fill: #181e23;
}

[data-theme="dark"] .contact-form{
  background-color: #2c2c2c !important;
}