@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
:root {
  --fallback-fonts: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Cairo", var(--fallback-fonts);
}
/* Colors */ :root {
  --color-main: #3ca8e0;
  --color-main-hover: #3ca8e0;
  --color-main-two:  #EC691C;
  --white: #fff;
   --kw-navy:#0e1b3f;
    --kw-navy-2:#16255a;
    --kw-orange:#f7941d;
    --kw-orange-2:#ffb347;
    --kw-gray:#68707e;
    --kw-bg:#f6f7fb;
    --kw-line:#e7e9f2;
     --navy:#0F2540;
    --navy-2:#16324F;
    --ink:#16213E;
    --paper:#F6F7FB;
    --card:#FFFFFF;
    --line:#E4E7EE;
    --orange:#E8752E;
    --orange-dark:#C85F1E;
    --teal:#12A594;
    --muted:#5B667A;
    --radius:14px;
  --font-remixicon: remixicon;
  --font-bootstrap-icons: bootstrap-icons;
  --border-color: rgba(102, 112, 147, .2);
}
/* Smooth scroll behavior */ :root {
  scroll-behavior: smooth;
}
.color-main {
  color: var(--color-main);
}
.color-main-2 {
  color: var(--color-main-two);
}
.color-white {
  color: var(--white);
}
body {
  font-family: var(--font-primary) !important;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 1300px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1240px;
  }
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-main) transparent;
}
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--color-main);
}
::selection {
  background: var(--color-main);
}
::selection {
  color: var(--white);
  text-shadow: none;
}
a {
  text-decoration: unset;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* ----------------------------------------------------------------
     Scroll top button
------------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  inset-inline-end: 15px;
  bottom: -40px;
  z-index: 99999;
  background: var(--color-main);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.5s;
  cursor: pointer;
  border: 0;
  outline: unset;
  box-shadow: unset;
}
.scroll-top:after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  inset-inline-start: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
.scroll-top svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.scroll-top:hover {
  background: var(--color-main-hover);
  color: #fff;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
/* ========================
Button
======================== */
.inline-btns {
  display: flex;
  justify-content: start;
  gap: 15px;
  align-items: center;
}
.btns {
  font-size: 14px;
  font-weight: 400 !important;
  line-height: 1.5;
  padding: 10px 20px;
  border-radius: 6px;
  position: relative;
  border: 1px solid;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  cursor: pointer;
  outline: unset;
  box-shadow: unset;
  text-align: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  display: block;
  width: fit-content;
}
.btns .fa-arrow-right {
  margin-inline-start: 8px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.btns:hover .fa-arrow-right {
  margin-inline-start: 15px;
}
.btns.one {
  border-color: var(--color-main-two);
  background-color: var(--color-main-two);
  color: #fff;
}
.btns.one:hover {
  border-color: var(--color-main-hover);
  background-color: var(--color-main-hover);
  color: #fff;
}
.btns.two {
  border-color: var(--color-main-hover);
  background-color: transparent;
  color: var(--color-main-hover);
}
.btns.two:hover {
  border-color: var(--color-main-hover);
  background-color: var(--color-main-hover);
  color: #fff;
}
.btns.three {
  border-color: var(--border-color);
    background-color: #ec691c;
    color: #ffffff;
}
.btns.three:hover {
  border-color: var(--color-main);
  background-color: var(--color-main);
  color: #fff;
}
.btns.four {
  border-color: var(--white);
  background-color: transparent;
  color: var(--white);
}
.btns.four:hover {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--color-main);
}
/* ----------------------------------------------------------------
    Topbar
------------------------------------------------------------------- */
.topbar {
  border-top: unset;
  border-bottom: 1px solid #e6e6e6;
  direction: rtl;
}
.topbar ul {
  display: inline-flex;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}
.topbar .left-topbar ul li {
  display: block;
  vertical-align: middle;
}
/*.topbar .left-topbar ul li:first-child {
  border-left: 1px solid #e6e6e6;
}*/
.topbar .topbar-right ul li {
  display: inline-block;
  border-right: 1px solid #e6e6e6;
  vertical-align: middle;
}
.topbar .left-topbar ul li span {
  font-size: 14px;
  color: #EC691C;
  transition: all .4s;
}
.topbar .topbar-right ul li span {
  font-size: 15px;
  color: #EC691C;
  transition: all .4s;
}
.topbar .left-topbar ul li:hover span {
  color: #081131;
}
.topbar .topbar-right ul li:hover span {
  color: #081131;
}
.topbar ul li {
  padding: 6px 10px;
}
.topbar ul li a {
  display: flex;
}
.topbar ul li i {
  color: #3ca8e0;
  font-size: 16px;
  transition: all .4s;
  margin-inline-end: 5px;
}
.topbar ul li .currency button i {
  color: #3ca8e0;
  font-size: 16px;
  transition: all .4s;
  margin-inline-end: 5px;
}
.topbar .left-topbar ul li:hover i {
  color: #081131;
}
.topbar .topbar-right ul {
  text-align: left !important;
  border-left: 1px solid rgba(102, 112, 147, .2);
}
.topbar .topbar-right ul li {
  display: inline-block;
  text-align: left !important;
  vertical-align: middle;
  border-right: 1px solid rgba(102, 112, 147, .2);
}
.topbar .top-bar-dropdown {
  position: relative;
}
.topbar .dropdown-btn {
  background-color: unset;
  border: unset;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  color: #EC691C;
  position: relative;
  padding: 0;
}
.topbar .dropdown-btn i {
  margin-left: 5px;
  font-size: 12px;
}
.topbar .dropdown-menus {
  display: none;
  position: absolute;
  top: 10px;
  left: 0;
  background-color: #fff;
  border: 0px solid #ccc;
  border-radius: 5px;
  width: max-content;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
  z-index: 9999;
}
.top-bar-dropdown.notification .dropdown-menus{
  display: none;
  position: absolute;
  top: 10px;
  left: -55px;
  background-color: #fff;
  border: 0px solid #ccc;
  border-radius: 5px;
  width: 330px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
  z-index: 9999;
}
.topbar .top-bar-dropdown.account .dropdown-menus {
  width: 200px;
  display: none;
}
.topbar .top-bar-dropdown .dropdown-menus.open {
  display: block;
}
.topbar .dropdown-menus li {
  padding: 8px 15px;
  cursor: pointer;
}
.topbar .dropdown-menus li:last-child {
  border-right: unset;
}
.topbar .dropdown-menus li a {
  font-size: 15px;
  color: #000;
}
.topbar .dropdown-menus li:hover {
  background-color: #f1f1f1;
  border-radius: 5px;
}
.topbar .left-topbar ul li.topbar-dropdown-two {
   display:block; 
   border-right: 1px solid #e6e6e6; 
  vertical-align: middle;
}

@media (max-width: 767px) {
  .topbar .top-bar-dropdown .dropdown-btn {
    display: inline-block;
    width: max-content;
    text-align: left;
  }
  .topbar .top-bar-dropdown.open .dropdown-menus {
    display: block;
  }
}
@media(max-width:1199px) {
  .topbar .left-topbar ul li span {
    font-size: 13px;
  }
  .topbar .topbar-right ul li span {
    font-size: 13px;
  }
}
@media(max-width:992px) {
  .topbar .left-topbar ul li span {
    font-size: 0px;
  }
  .topbar .topbar-right ul li span {
    font-size: 0px;
  }
  .topbar .dropdown-btn {
    font-size: 0px;
  }
}
@media(max-width:567px) {
  .topbar ul li {
    padding: 10px 10px;
  }
  .topbar .left-topbar ul li:last-child {
    border-right: unset;
  }
}
/* ----------------------------------------------------------------
    Header
------------------------------------------------------------------- */
.main-header {
  background-color: #fff;
  height: 80px;
  position: relative;
  transition: height .5s ease-in;
  direction: rtl;
}
.header-sticky {
  animation: headerSticky .95s ease forwards;
  position: fixed;
  z-index: 14;
  width: 100%;
  box-shadow: rgba(50, 50, 50, 0.2) 0px 0px 20px 0px;
  transition: transform 100ms ease-in-out, background-color 200ms ease-in-out;
  background-color: rgb(252, 252, 252);
  top: 0;
}
@-webkit-keyframes headerSticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes headerSticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.main-header.dropdown-open {
  background-color: rgb(252, 252, 252);
}
.main-header .nabbar-nav {
  margin-bottom: 0;
  height: 100%;
}
.main-header .nabbar-nav > .container-lg {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.main-header > .nabbar-nav > .container-lg > .logo-and-navbar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.main-header > .nabbar-nav > .container-lg > .logo-and-navbar > .nav-brand {
  display: inline-block;
}
.main-header > .nabbar-nav > .container-lg > .logo-and-navbar > .nav-brand img {
  max-height: 75px;
}
/* Desktop Navigation */
@media (min-width: 992px) {
  .main-header > .nabbar-nav > .container-lg > .logo-and-navbar > .nav-brand {
    margin-inline-end: 32px;
  }
  .main-header .nabbar-nav .mainmenu {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 15px;
  }
  .main-header .nabbar-nav .mainmenu li {
    position: relative;
  }
  .main-header .nabbar-nav .mainmenu li.megamenu {
    position: inherit;
  }
  .main-header .nabbar-nav .mainmenu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    font-size: 15px;
    white-space: nowrap;
    transition: 0.3s;
    color: rgb(54, 54, 54);
    font-weight: 600;
  }
  .main-header .nabbar-nav .mainmenu > li > a {
    position: relative;
  }
  .main-header .nabbar-nav .mainmenu > li > a.active {
    color: var(--color-main);
  }
  .main-header .nabbar-nav .mainmenu > li > a > span {
    position: relative;
  }
  .main-header .nabbar-nav .mainmenu > li > a > span[data-offer]:after {
    content: attr(data-offer);
    background: #ec691ca6;
    color: #ffffff;
    font-size: 12px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 2px 4px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
    position: absolute;
    top: -15px;
    right: 0;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown > a > .dropdown-indicator {
    font-size: 12px;
    line-height: 0;
    margin-inline-start: 5px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown.dropdown-opened > a, .main-header .nabbar-nav .mainmenu li:has(.active) > a {
    color: var(--color-main);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown.dropdown-opened > a > .dropdown-indicator {
    transform: rotate(-180deg);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu {
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    background-color: rgb(252, 252, 252);
    border-radius: 0px 0px 50px 50px;
    padding: 32px 0px;
    position: absolute;
    top: 67px;
    left: 0px;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 200ms ease-in-out;
    z-index: 5;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu.visible {
    visibility: visible;
    pointer-events: unset;
    opacity: 1;
  }
  .main-header .navbar-button, .main-header .nabbar-nav .mobile-menu-header {
    display: none;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > div {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > div {
    max-width: 960px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item {
    list-style: none;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li + li {
    border-left: 1px solid #f0f0f0;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo .heading {
    display: flex;
    flex-direction: row;
    gap: 18px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo .heading span {
    display: block;
    padding: 4px 8px;
    border-radius: 10px;
    width: max-content;
    display: flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: center;
    justify-content: center;
    white-space: nowrap;
    height: 24px;
    position: relative;
    z-index: 5;
    background-color: rgb(144, 219, 150);
    color: rgb(54, 54, 54);
    font-size: 13px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo .heading span:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -4px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgb(144, 219, 150) transparent transparent transparent;
    transform: translatey(-50%) rotate(90deg);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo p {
    color: rgb(124, 144, 170);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 16px;
    padding-bottom: 8px;
    margin-bottom: 0;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo a {
    color: var(--color-main);
    display: flex;
    -moz-box-align: center;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 0px 1px;
    transition: all 500ms ease;
    padding-bottom: 2px;
    width: fit-content;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo a i {
    margin-inline-start: 5px;
    transition: 0.4s ease-in-out;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo a:hover {
    background-size: 100% 1px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > .new-design-nav-item-logo a:hover i {
    margin-inline-start: 10px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > p {
    font-style: normal;
    text-transform: capitalize;
    line-height: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
    color: rgb(124, 144, 170);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a {
    -moz-box-align: center;
    align-items: center;
    background-color: #f7f9fd;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    padding: 16px 32px 16px 16px;
    position: relative;
    text-decoration: none;
    transition: 0.4s ease-in-out;
    width: 100%;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a:hover, .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a.active {
    background: #fff;
    box-shadow: 0 0 8px rgb(0 0 0 / 23%);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner {
    display: flex;
    -moz-box-align: center;
    align-items: center;
    gap: 8px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a:after {
    content: '\ea6c';
    right: 10px;
    position: absolute;
    opacity: 0;
    transition: 0.4s ease-in-out;
    transform: translateX(-60%);
    font-family: var(--font-remixicon);
    font-size: 17px;
    color: var(--color-main);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a:hover:after {
    opacity: 1;
    transform: translateX(-20%);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .icon {
    align-self: start;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .icon > .inner {
    -moz-box-align: center;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    height: 45px;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    transition: all 0.5s;
    width: 45px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .icon > .inner > i {
    font-size: 24px;
    line-height: 0;
    color: #EC691C;
    transition: all 0.5s;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a:hover > .inner > .icon > .inner, .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a.active > .inner > .icon > .inner {
    background-color: var(--color-main);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a:hover > .inner > .icon > .inner i, .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a.active > .inner > .icon > .inner i {
    color: #fff;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content {
    display: flex;
    gap: 8px;
    flex-direction: column;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content > .headings {
    color: rgb(54, 54, 54);
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content > .headings > .labels {
    background-color: rgb(186, 230, 211);
    color: rgb(31, 32, 68);
    -moz-box-align: center;
    align-items: center;
    border-radius: 20px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 500;
    -moz-box-pack: center;
    justify-content: center;
    line-height: 16px;
    padding: 2px 10px;
    position: relative;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content > .subheading {
    color: rgb(124, 144, 170);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.megamenu_img {
    display: block;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.megamenu_img .menu-lists {
    display: block;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.megamenu_img .menu-lists h3 {
    font-size: 15px;
    margin: 0;
    font-weight: 500;
    margin-bottom: 15px;
    color: rgb(124, 144, 170);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.megamenu_img .menu-lists p {
    font-size: 16px;
    margin: 0;
    position: relative;
    color: #6c6c6c;
    padding-inline-start: 25px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.megamenu_img .menu-lists p:before {
    content: "\eb86";
    position: absolute;
    left: 0px;
    top: 3px;
    font-size: 14px;
    font-family: remixicon !important;
    color: var(--color-main);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.megamenu_img .menu-lists p + p {
    margin-top: 10px;
  }
  .main-header .nabbar-nav .mainmenu li.web-off {
    display: none;
  }
}
@media (min-width: 1200px) {
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > div {
    max-width: 1140px;
  }
}
@media (min-width: 1270px) {
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu > div {
    max-width: 1250px !important;
  }
}
/* Mobile Navigation */
@media (max-width: 991px) {
  .main-header .navbar-button {
    height: auto;
    width: auto;
    text-align: center;
    outline: none;
    border: 0 none;
    padding: 0;
    background: transparent;
    display: block;
    font-size: 25px;
    margin-inline-end: 15px;
  }
  .main-header .mobile-menu-header {
    display: flex;
    border-bottom: 1px solid #eeeeee;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
  }
  .main-header .mobile-menu-header .logo img {
    max-height: 30px;
  }
  .main-header .mobile-menu-header .close-icon .navbar-close {
    border: 0 none;
    width: 40px;
    height: 40px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #cccccc40;
    line-height: 0;
    border-radius: 0;
  }
  .main-header .header-menu {
    z-index: 9999;
    position: fixed;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    visibility: hidden;
    opacity: 0;
    transition: opacity .5s ease-out;
  }
  .main-header .header-menu.active {
    visibility: visible;
    opacity: 1;
  }
  body:has(.main-header .header-menu.active) {
    overflow: hidden;
  }
  .main-header .header-menu > .inner {
    width: 320px;
    z-index: 999;
    position: absolute;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    opacity: 0;
    left: -150px;
    transition: all .5s ease-out;
  }
  .main-header .header-menu.active > .inner {
    opacity: 1;
    left: 0;
    overflow-y: auto;
  }
  .main-header .nabbar-nav .mainmenu {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .main-header .nabbar-nav .mainmenu > li {
    display: block;
    padding-bottom: 16px;
    border-bottom: 1px solid rgb(246, 246, 249);
  }
  .main-header .nabbar-nav .mainmenu > li > a {
    color: rgb(54, 54, 54);
    text-decoration: none;
    background-color: transparent;
    border: medium;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    line-height: 19px;
    width: 100%;
    text-align: start;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.4s ease-in-out;
  }
  .main-header .nabbar-nav .mainmenu > li > a > span[data-offer]:after {
    content: attr(data-offer);
    background: rgb(186, 230, 211);
    color: rgb(31, 32, 68);
    font-size: 12px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    padding: 2px 4px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    margin-inline-start: 10px;
  }
  .main-header .nabbar-nav .mainmenu > li.has-droupdown > a.open {
    color: var(--color-main);
  }
  .main-header .nabbar-nav .mainmenu > li.has-droupdown > a > .dropdown-indicator {
    font-size: 17px;
    transform: rotate(-90deg);
    transition: 0.4s ease-in-out;
  }
  .main-header .nabbar-nav .mainmenu > li.has-droupdown > a.open > .dropdown-indicator {
    transform: rotate(-180deg);
  }
  .main-header .nabbar-nav .mainmenu > li.has-droupdown .submenu {
    display: none;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item {
    list-style: none;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: 15px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > p {
    color: rgb(124, 144, 170);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 16px;
    padding-bottom: 8px;
    padding-left: 0;
    margin-bottom: 0;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a {
    -moz-box-align: center;
    align-items: center;
    background-color: transparent;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    padding: 10px 0;
    position: relative;
    text-decoration: none;
    transition: 0.4s ease-in-out;
    width: 100%;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner {
    display: flex;
    -moz-box-align: center;
    align-items: center;
    gap: 8px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .icon {
    align-self: start;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .icon > .inner {
    -moz-box-align: center;
    align-items: center;
    background-color: rgb(243, 249, 255);
    border-radius: 100px;
    height: 38px;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    transition: 0.4s ease-in-out;
    width: 38px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .icon > .inner > i {
    font-size: 20px;
    line-height: 0;
    color: var(--color-main);
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content {
    display: flex;
    gap: 8px;
    flex-direction: column;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content > .headings {
    color: rgb(54, 54, 54);
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content > .headings > .labels {
    background-color: rgb(186, 230, 211);
    color: rgb(31, 32, 68);
    -moz-box-align: center;
    align-items: center;
    border-radius: 20px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 500;
    -moz-box-pack: center;
    justify-content: center;
    line-height: 16px;
    padding: 2px 10px;
    position: relative;
    width: fit-content;
    text-decoration: none;
    text-transform: uppercase;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li > ul > li > a > .inner > .content > .subheading {
    color: rgb(124, 144, 170);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
  .main-header .nabbar-nav .mainmenu li.has-droupdown .submenu .megamenu-item > li.megamenu_img {
    display: none;
  }
}
@media (min-width:501px) {
  .main-header .nabbar-nav .nav-right-side-bar .btns i {
    display: none;
  }
}
@media (max-width:500px) {
  .main-header .nabbar-nav .nav-right-side-bar .btns {
    padding: 8px 12px;
  }
  .main-header .nabbar-nav .nav-right-side-bar .btns span {
    display: none;
  }
}
/* =========================
Footer
========================= */
.main-footer {
  padding: 40px 0;
  background: #FBFBFB;
  border-top: 1px solid #e6e6e6;
  direction: rtl !important;
}
.main-footer .company-info .logo {
  display: block;
}
.main-footer .company-info .logo img {
  max-height: 100px;
}
.main-footer .company-info p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #666666;
  margin-top: 15px;
  letter-spacing: 0.5px;
}
.main-footer .company-info .social-info {
  display: flex;
  justify-content: start;
  gap: 20px;
  align-items: center;
  margin-top: 15px;
}
.main-footer .company-info .social-info a {
  display: block;
  color: var(--color-main);
  ;
  font-size: 18px;
  line-height: 1.5;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  padding: 5px 10px;
  border: 1px solid var(--color-main);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.main-footer .company-info .social-info a:hover {
  background: var(--color-main);
  ;
  color: #FFFFFF;
}
.main-footer .footer-list h4 {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: #000000;
  letter-spacing: 1px;
}
.main-footer .footer-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 12px;
}
.main-footer .footer-list ul li + li {
  margin-top: 10px;
}
.main-footer .footer-list ul li a {
  font-size: 14px;
  position: relative;
  line-height: 1.5;
  color: #666666;
  letter-spacing: 1px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  background-image: linear-gradient(to left, #ffffffad, #ffffffad);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 1px;
}
.main-footer .footer-list ul li a:hover {
	color: #3a7d44;
	background-size: 100% 1px;
}
.main-footer .footer-list ul li a:before {
  content: '-';
  vertical-align: middle;
  font-size: 14px;
  margin-inline-end: 5px;
}
.main-footer .footer-list .footer-images {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}
.main-footer .footer-list .footer-images > * {
  display: block;
}
.main-footer .footer-list .footer-images > * img {
  max-height: 60px;
}
.copy-right-info {
  padding: 10px 0;
  border-top: 1px solid #e6e6e6;
}
.copy-right-info p {
  text-align: center;
  margin: 0;
  font-size: 14px;
  color: #666666;
  letter-spacing: 1px;
}
/* ============================================
Banner
============================================ */
.main-banner {
  position: relative;
  overflow: hidden;
  padding: 35px 0px 35px 0px;
  background: #FBFBFB;
  border-top: 1px solid #e6e6e6;
}
.main-banner.page-banner {
  padding: 40px 0px;
  border-bottom: 1px solid #e6e6e6;
  direction: rtl;
}
@media (max-width:767px) {
  .main-banner {
    padding: 20px 0;
  }
}
.main-banner .img-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  object-fit: cover;
}
.main-banner .img-up {
  z-index: 2;
  position: relative;
}
.main-banner .inner-content h4 {
  font-size: clamp(17px, 5vw, 20px);
  color: #EC691C;
}
.main-banner .inner-content.center h4 {
  text-align: center;
}
.main-banner .inner-content sup {
  vertical-align: baseline;
  font-size: 24px;
  font-weight: 800;
}
.main-banner .inner-content h4 span {
  width: 100%;
  display: block;
    font-size: 16px;
}
.main-banner .inner-content h4 strong {
  font-size: 40px;
  color: var(--color-main);
}
.main-banner .inner-content h1 {
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.5;
  color: #081131;
  font-weight: 800;
}
.main-banner .inner-content.center h1 {
  text-align: center;
}
.main-banner .inner-content h3 {
  font-size: clamp(17px, 3vw, 20px);
  line-height: 1.5;
  color: #EC691C;
  margin-top: 10px;
  font-weight: 500;
  margin-bottom: 10px;
}
.main-banner .inner-content.center h3 {
  text-align: center;
}
.main-banner .inner-content h5 {
  font-size: clamp(15px, 5vw, 17px);
  line-height: 30px;
  color: #EC691C;
}
.main-banner .inner-content.center h5 {
  text-align: center;
}
.main-banner .inner-content p {
  font-size: clamp(13px, 4vw, 16px);
  line-height: 1.7;
  margin-top: 10px;
  color: #EC691C;
  margin-bottom: 0;
}
.main-banner .inner-content.center p {
  text-align: center;
}
.home-banner-swiper .swiper-slide {
  height: auto;
  direction: rtl;
}
.home-banner-swiper .swiper-slide .main-banner {
  height: 100%;
}
.home-banner-swiper .swiper-pagination span.swiper-pagination-bullet {
  width: 50px;
  height: 7px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.home-banner-swiper .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-main);
}
.inner-content .top-heading {
  display: block;
  font-size: 16px;
  color: #EC691C;
  line-height: 20px;
  font-weight: 600;
}
.inner-content.center .top-heading {
  text-align: center;
}
.banner-list.icon {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.banner-list.icon li {
  width: 50%;
  color: #212529 !important;
}
.banner-list.icon li {
  width: 50%;
  display: flex;
  align-items: center;
}
.banner-list.icon li:nth-child(-n+2) {
  margin-bottom: 10px;
}
.banner-list.icon li i {
	line-height: 40px;
	min-width: 40px !important;
	text-align: center !important;
	font-size: 24px;
	border-radius: 4px;
	color: var(--color-main);
	background: rgb(211, 244, 255);
	margin-inline-end: 6px;
}
@media(max-width:567px) {
  .banner-list.icon li {
    width: 100%;
  }
  .banner-list.icon li {
    margin-bottom: 10px;
  }
  .banner-list.icon li:last-child {
    margin-bottom: 0px;
  }
}
/* Tabs Slider */
.dot-slider {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
.dot-slider .container {
  padding: 0;
  overflow: auto;
}
.dot-slider .container ul {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.dot-slider .container ul li {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  border-left: 1px solid #e6e6e6;
  text-align: center !important;
  cursor: pointer;
  padding: 25px 14px;
  -moz-transition-duration: .3s;
  -o-transition-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  color: #EC691C;
}
.dot-slider .container ul li:first-child {
  border-left: none;
}
.dot-slider .container ul li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--color-main);
  opacity: 0;
  -moz-transition-duration: .3s;
  -o-transition-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}
.dot-slider .container ul li > * {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  z-index: 3;
  font-weight: 400 !important;
  display: inline-block;
  text-align: left !important;
  margin: 0;
}
.dot-slider .container ul li > * i {
  position: absolute;
  left: 0;
  top: 50%;
  line-height: 0;
  font-size: 24px;
  -moz-transition-duration: .3s;
  -o-transition-duration: .3s;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}
.dot-slider .container ul li.active {
  color: #ffffff;
}
.dot-slider .container ul li.active::before {
  opacity: 1;
}
@media (max-width:767px) {
  .dot-slider .container ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin: 0;
  }
  .dot-slider .container ul li {
    flex: 0 0 50%;
    width: 50%;
    border-top: 1px solid rgba(102, 112, 147, .2);
  }
  .dot-slider .container ul li:nth-child(3) {
    border-left: 0;
  }
}
/* ============================
Section gap
============================ */
.section-gap {
  position: relative;
  padding: 40px 0;
      direction: rtl;
}
.section-gap.pt-20 {
  padding-top: 20px;
}
.bg1 {
  background: #FBFBFB;
}
.bg2 {
  background: #E5F5FF;
}
.bg3 {
  background: #F7F7FF;
}
/* ----------------------------------------------------------------
    Section Header
------------------------------------------------------------------- */
.section-header {
  position: relative;
  direction: rtl;
}
.section-header.gap-bottom {
  margin-bottom: 30px;
}
.section-header h4 {
  font-size: clamp(16px, 5vw, 24px);
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: none;
  color: #fff6;
  display: block;
}
.section-header h4.color-one {
  color: var(--color-main);
}
.section-header h4.color-two {
  color: var(--color-main-two);
}
.section-header.center h4 {
  text-align: center;
}
.section-header h2 {
  font-size: clamp(28px, 5vw, 35px);
  font-weight: 700;
  line-height: 1.4;
  display: block;
  color: #081131;
}
.section-header h2 span.color-one {
  color: var(--color-main);
}
.section-header.center h2 {
  text-align: center;
}
.section-header p {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
.section-header.center p {
  text-align: center;
}
.section-header.white h4, .section-header.white h2, .section-header.white p {
  color: #fff;
}
/* ================================
    Plan Section
  ================================ */
.swiper-plans {
  padding: 10px 0;
  padding-bottom: 30px;
}
.plans-design-one {
  padding: 15px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.plans-design-one:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-color: var(--color-main);
}
.plans-design-one:hover .btns.three {
  border-color: var(--color-main);
  background-color: var(--color-main);
  color: #fff;
}
.plans-design-one .icon {
  display: block;
  margin: auto;
  opacity: 0.5;
  margin-bottom: 12px;
}
.plans-design-one h3 {
  margin: 0;
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 500;
  color: var(--color-main);
  line-height: 25px;
  text-align: center;
}
.plans-design-one p {
  display: block;
  font-size: 13px;
  font-weight: 400 !important;
  text-align: center;
  margin: 0;
}
.plans-design-one h6 {
  display: block;
  font-size: 16px;
  text-align: center;
  margin: 0;
  margin-top: 15px;
  color: #EC691C;
}
.plans-design-one h4 {
  font-size: clamp(30px, 4vw, 35px);
  margin-top: 16px;
  color: #081131;
  margin-bottom: 0;
  font-weight: 800;
  display: block;
  text-align: center;
  position: relative;
}
.plans-design-one h4 .badge-plan {
  left: 0;
  line-height: 18px;
  top: -10px;
  background-color: var(--color-main-two);
  display: inline-block;
  pointer-events: none;
  animation: 1.5s linear infinite blinker;
  transform: translateX(-10%);
}
.plans-design-one h4 sup {
  font-size: 60%;
  font-weight: 400;
}
.plans-design-one h4 small {
  font-size: 40%;
  font-weight: 400;
}
.plans-design-one .btns {
  width: 100%;
  margin-top: 20px;
}
.plans-design-one ul {
    margin: 0;
    padding: 0;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid var(--border-color);
    list-style: none;
    text-align: center;
    font-weight: 800;
}
.plans-design-one ul ul {
	padding: 0;
	border: 0;
	margin: 0;
}
.plans-design-one ul li {
  position: relative;
  font-size: 16px;
  color: #081131;
  padding-left: 20px;
  line-height: 24px;
}
.plans-design-one.home-page ul li {
    padding-right: 30px !important;
}
.plans-design-one ul li + li {
  margin-top: 12px;
}
.plans-design-one ul li i {
  position: absolute;
  right:0 !important;
  top: 50%;
  line-height: 0;
  font-size: 21px;
  opacity: 0.7;
}
.plans-design-one ul li::before {
	content: '';
	width: 8px;
	height: 8px;
	background: #afafaf;
	position: absolute;
	top: 6px;
	left: 0;
	border-radius: 50%;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
}
.plans-design-one:hover ul li::before {
	background: var(--color-main);
}
.plans-design-one.home-page ul li::before {
    display: none;
}
.swiper-plans .swiper-pagination {
  bottom: 0px;
}
.swiper-plans .swiper-pagination span.swiper-pagination-bullet {
  width: 50px;
  height: 7px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.swiper-plans .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-main);
}
.plans-design-two {
  padding: 13px;
  background-color: #efeff9;
  border-radius: 10px;
}
.plans-design-two .pricing-title {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 10px;
}
.plans-design-two.pro .pricing-title {
  background-color: #0013ff1a;
}
.plans-design-two .pricing-title span {
  background-color: #121fbf;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  color: #ffffff;
}
.offer-two {
  background-color: #121fbf;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  color: #ffffff;
}
.plans-design-two .pricing-title h5 {
  font-size: 1.25rem;
  font-weight: 600;
}
.plans-design-two .pricing-title p {
  font-size: 14px;
  font-weight: 400;
}
.plans-design-two .pricing-features {
  display: flex;
  flex-wrap: wrap;
}
.plans-design-two .pricing-features li {
  width: 50%;
  display: block;
  position: relative;
  padding-inline-start: 29px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
@media (max-width:992px) {
  .plans-design-two .pricing-features li {
    width: 100%;
  }
}
.plans-design-two .pricing-features li:after {
  content: '\F26E';
  position: absolute;
  top: 0px;
  left: 0;
  font-size: 24px;
  color: rgb(18 31 191);
  font-family: var(--font-bootstrap-icons);
  line-height: 1;
}
.plans-design-two .pricing-amount {
  padding-inline-start: 40px;
  border-inline-start: 1px solid rgba(0, 16, 66, .1);
}
@media (max-width:992px) {
  .plans-design-two .pricing-amount {
    padding-inline-start: calc(var(--bs-gutter-x) * .5);
    padding-top: 20px;
    border-inline-start: unset;
    border-top: 1px solid rgba(0, 16, 66, .1);
  }
}
.plans-design-two .pricing-amount h3 {
  font-size: 1.875em;
  font-weight: 600;
}
.plans-design-two .pricing-amount p {
  font-size: 14px;
  font-weight: 400;
}
.plans-design-three {
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 4px 20px rgba(0, 2, 20, 0.14);
  padding: 20px 8px 28px 8px;
  margin-top: 24px;
}
.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
}
.plan-head .label {
  display: inline-block;
  background: #0568ea;
  border-radius: 4px;
  font-size: 14px;
  font-family: "ProximaNova-SemiBold", sans-serif;
  padding: 2px 8px 0px 8px;
  color: #fff;
  line-height: 20px;
}
.plans-design-three h3 {
  font-size: 24px;
  line-height: 30px;
}
.plans-design-three ul {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.plans-design-three ul li {
  font-size: 15px;
  line-height: 24px;
  color: #4c575e;
}
.was-price {
  text-decoration: line-through;
  opacity: 0.68;
  display: block;
}
@media(max-width:991px) {
  .plans-design-three ul {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
  }
  .plans-design-three ul li {
    width: 50%;
    margin-bottom: 20px;
  }
  .plans-design-three ul li:last-child {
    width: 100%;
    margin-bottom: 0px;
  }
}
@media(max-width:480px) {
  .plans-design-three ul li {
    text-align: center;
  }
  .plans-design-three ul li img {
    display: block;
    margin: auto;
  }
  .plans-design-three ul li {
    width: 50%;
  }
}
/* ================
Icon Box
================ */
.icon-box {
  text-align: center;
  padding: 0 30px;
}
.icon-box img {
  display: block;
  margin: auto;
  margin-bottom: 20px;
}
.icon-box h3 {
  font-size: 18px;
  color: #081131;
  margin: 0;
  margin-bottom: 10px;
}
.icon-box p {
  font-size: 14px;
  margin: 0;
  color: #7c7c80;
  line-height: 1.7;
}
/* ========================
Homepage Domain Form
======================== */
.homepage-domain-search .homepage-domain-form {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
  max-width: 100%;
  justify-content: space-between;
  direction: rtl !important;
}
.homepage-domain-search .homepage-domain-form input[type="text"] {
  border-radius: 6px;
  border: 1px solid #e1e1e1;
  background: #fff;
  height: 60px;
  padding: 15px 25px;
  flex: 1;
  width: 100%;
  max-width: 918px;
  margin-left: 10px;
  color: #655e5e !important;
  outline: unset;
}
.homepage-domain-search .homepage-domain-form .submit {
	max-width: 250px;
	width: 100%;
	height: 60px;
}
@media (max-width:1200px) {
  .homepage-domain-search .homepage-domain-form .submit {
    max-width: 200px;
  }
}
@media (max-width:767px) {
  .homepage-domain-search .homepage-domain-form input[type="text"] {
    width: 100%;
    flex: unset;
    height: 48px;
    margin: 0;
  }
  .homepage-domain-search .homepage-domain-form .submit {
    max-width: 156px;
    margin: auto;
    margin-top: 15px;
  }
}
@media (max-width:575px) {
  .homepage-domain-search .homepage-domain-form {
    padding: 25px 15px;
  }
}
.homepage-domain-search .domain-lists {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 900px;
  margin: auto;
  max-width: 100%;
}
.homepage-domain-search .domain-lists li {
  display: inline-block;
  padding: 12px 10px;
  font-size: 16px;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  margin-bottom: 10px;
  text-align: center;
  background: #fff;
}
.homepage-domain-search .domain-lists li img {
  max-height: 40px;
}
.homepage-domain-search .domain-lists li .price {
  display: block;
  background: #e1edff91;
  padding: 4px 60px;
  border-radius: 18px;
  font-size: 15px;
  margin-top: 5px;
  color: #081131;
}
@media (max-width:767px) {
  .homepage-domain-search .domain-lists li .price {
    padding: 4px 40px;
  }
}
/* ===================
Services
=================== */
.service-one {
  display: flex;
  direction: rtl;
}
.service-one .icon {
  margin-inline-end: 20px;
}
.service-one .icon img {
  min-width: 50px;
  width: 50px;
}
.service-one .content h4 {
  font-size: 20px;
  color: #081131;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-one .content p {
  margin: 0 auto;
  margin-bottom: 0px;
  margin-bottom: 0px;
  font-size: 15px;
  line-height: 1.5 !important;
  color: #7c7c80;
  font-weight: 400;
  margin-bottom: 0;
}
.service-two .icon {
  margin-bottom: 20px;
}
.service-two .icon img {
  min-width: 50px;
  width: 50px;
}
.service-two .content h4 {
  font-size: 20px;
  color: #081131;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-two .content p {
  margin: 0 auto;
  margin-bottom: 0px;
  margin-bottom: 0px;
  font-size: 15px;
  line-height: 1.5 !important;
  color: #7c7c80;
  font-weight: 400;
  margin-bottom: 0;
}
.service-three {
  border: 1px solid rgba(102, 112, 147, .2);
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  transition: all .4s;
  direction: rtl;
}
.service-three:hover {
  border-color: transparent;
  box-shadow: 0 10px 48px rgb(0 0 0 / 15%);
}
.service-three .icon {
  margin-bottom: 10px;
}
.service-three .icon img {
  width: 64px;
  min-width: 64px;
}
.service-three h4 {
  display: block;
  color: #081131;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500 !important;
}
.service-three .content h4 i {
  color: var(--color-main-two);
  font-size: 20px;
}
/* ----------------------------------------------------------------
    09. Call Back Section Css
------------------------------------------------------------------- */
.call-back {
  background-color: #000;
  background-image: url(../images/black_bg_bar.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
  margin-bottom: 0px;
}
.call-back .inner {
  padding-left: 5%;
  padding-right: 5%;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 60px;
  padding-top: 60px;
}
@media (max-width:767px) {
  .call-back {
    margin-bottom: 0px;
  }
  .call-back .inner {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.plan-description {
  text-align: right;
  padding: 20px 40px;
  height: 100%;
}
.plan-description h4 {
  display: block;
  font-size: clamp(26px, 4vw, 30px);
  font-weight: 800;
  color: #081131;
  margin-top: 0px;
}
.plan-description p {
  font-size: clamp(15px, 3vw, 18px);
  color: #666666;
}
.border-topbottom {
  border-bottom: 1px solid;
  border-top: 1px solid;
  border-color: rgba(102, 112, 147, .2);
}
.border-bottom {
  border-bottom: 1px solid;
  border-color: rgba(102, 112, 147, .2);
}
.border-right {
  border-right: 1px solid;
  border-color: rgba(102, 112, 147, .2);
}
@media(max-width:992px) {
  .border-topbottom {
    border-bottom: unset;
    border-top: unset;
    border-color: unset;
  }
  .border-bottom {
    border-bottom: unset;
    border-color: unset;
  }
  .border-right {
    border-right: unset;
    border-color: unset;
  }
}
.list-check li {
  line-height: 30px;
  font-size: 15px;
  font-weight: 400;
  display: flex;
  align-items: start;
  gap: 5px;
}
.list-check li::before {
  content: "\F309";
  font-family: bootstrap-icons;
  font-size: 20px;
  color: #ff695a;
}
.support {
  padding: 50px 50px;
  border-radius: 15px;
}
.support .icon img {
  min-width: 50px;
  width: 50px;
}
.support .content {
  font-size: 15px;
  line-height: 1.5 !important;
  color: #7c7c80;
  font-weight: 400;
  margin-top: 10px;
  display: block;
}
.support ul {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 50px;
}
/* ===================
Testimonial
=================== */
.testimonial-card {
 
    height: 272px;
  overflow: hidden;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  direction:rtl !important;
      background:#fff;
    border:1px solid #E7EBF3;
    border-radius:18px;
    padding:34px 30px 28px;
    position:relative;
    flex:1;
    min-width:0;
    box-shadow:0 1px 3px rgba(11,31,58,0.04);
    transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -14px rgba(11, 31, 58, 0.18);
    border-color: rgba(47, 128, 237, 0.25);
}
.testimonial-card .about-author {
  margin-bottom: 15px;
}
.testimonial-card .about-author .author-name {
  display: block;
 
  text-transform: capitalize;
  font-weight: 700;
    color:#0B1F3A;
    font-size: .98rem;
    margin-bottom: 2px;
}
.testimonial-card .author-post {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #7c7c80;
  margin: 0;
  margin-top: 5px;
  text-transform: capitalize;
}
.testimonial-card .detail {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  margin: 0;
}
.testimonial-card .customer {
  height: auto;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 20px;
}
.testimonial-card .customer img {
  border-radius: 50%;
}
.testimonial-card .star ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
.testimonial-card .star ul li i {
 color: #f2a93b;
}
.testimonial-card .star p {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.swiper-testimonial {
  padding-bottom: 30px;
}
.swiper-testimonial .swiper-pagination {
  bottom: 0px;
}
.swiper-testimonial .swiper-pagination span.swiper-pagination-bullet {
  width: 50px;
  height: 7px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.swiper-testimonial .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-main);
}
/* ===================
Accordion
=================== */
.accordion {
  list-style: none;
  margin: 20px auto;
  overflow: hidden;
  background: #FFF;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 40px;
  border-radius: 26px;
  direction: rtl;
}
.accordion li {
  border-bottom: 1px solid #ddd;
  padding: 15px 10px;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
  align-items: center;
  padding-left: 30px;
  transition: all .4s;
}
.accordion li::before {
  content: '+';
  position: absolute;
  left: 0;
  right: 0;
  font-size: 20px;
  transition: all .4s;
  line-height: 18px;
}
.accordion li.active::before {
  content: '-';
  position: absolute;
}
.accordion li h5 {
  margin: 0;
  font-size: 20px;
}
.accordion li p {
  display: none;
  padding: 10px 0;
  margin: 0;
  color: #555;
  font-size: 15px;
  letter-spacing: 0.5px;
}
/*  =============tabbing css start=============*/
.tab-section {
  padding: 40px 0;
}
.tab-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.tab-btn {
  font-size: 14px;
  color: #4f5964;
  border: 2px solid #dce6fe;
  font-weight: 500;
  border: 0;
  padding: 10px 20px;
  border-radius: 6px;
  background: unset;
}
.tab-btn.active {
  color: #6c757d;
  background-color: #f0f4ff;
  border: 0;
}
.tab-content-section {
  border-radius: 10px;
}
.tab-content .tab-pane {
  display: none;
}
.tab-content .tab-pane.active {
  display: block;
  background: var(--primary-light-bg);
  border-radius: 12px;
  padding: 40px;
  height: 100%;
}
.feature-style-three.tabs-img img {
  max-width: 100% !important;
}
.feature-style-three.tabs-img h5 {
  font-size: 17px;
}
.tab-section .section-title h4 {
  font-size: 19px;
}
.tab-section .feature-style-two h5 {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}
.tab-section .feature-style-one {
  background: #fff;
  padding: 5px;
}
.tab-section .feature-style-one h4 {
  font-size: 15px;
}
.tab-section .feature-style-one p {
  font-size: 13px;
}
/*  =============tabbing css end=============*/
/*  =============How it works css start=============*/
.how-it-works {
  background: url('../images/step-arrows.png') top center no-repeat;
  background-size: contain;
}
.how-it-works-card {
  text-align: center;
}
.how-it-works .icon {
  background: #fff;
  height: 88px;
  width: 88px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  padding-top: 22px;
  margin: 0 auto;
  margin-bottom: 24px;
}
.how-it-works .icon img {
  width: 44px;
  min-width: 44px;
}
.how-it-works .icon .step {
  background: #ff695a;
  box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 32px;
  color: #fff;
  font-family: "ProximaNova-Bold", sans-serif;
  position: absolute;
  top: -8px;
  right: -12px;
}
.how-it-works h4 {
  font-size: 20px;
  line-height: 28px;
  color: #fff;
}
.how-it-works p {
  color: #fff;
}
@media(max-width:992px) {
  .how-it-works {
    background: unset;
  }
}
/*  =============How it works css end=============*/
/*  =============About us css start=============*/
.about-us-features {
  padding-left: 0px;
  padding-top: 0px;
}
.about-us-features ul {
  padding-top: 88px;
  border-left: 2px solid #e5e8ec;
}
.about-us-features ul li {
  position: relative;
  padding-left: 36px;
  padding-bottom: 50px;
}
.about-us-features ul li:last-child {
  position: relative;
  padding-bottom: 0px;
}
.about-us-features ul li strong:before {
  background: url('../images/timeline-pin.webp') no-repeat;
  width: 26px;
  height: 26px;
  content: " ";
  display: block;
  position: absolute;
  top: -2px;
  left: -14px;
}
.about-us-features ul li strong:hover:before {
  background: url('../images/timeline-pin-hover.webp') no-repeat;
}
.about-us-features ul li strong.active:before, .about-us-features ul li strong.active:hover:before {
  background: url('../images/timeline-pin-active.webp') no-repeat;
}
.about-us-features ul li strong {
  display: inline-block;
  background: url('../images/timeline-down.webp') center right no-repeat;
  padding-right: 18px;
  color: rgba(76, 87, 94, 0.8);
  cursor: pointer;
}
.about-us-features ul li strong:hover {
  background: url('../images/timeline-hover.webp') center right no-repeat;
  color: #c01414;
}
.about-us-features ul li strong.active {
  color: #c01414;
  background: url('../images/timeline-up.webp') center right no-repeat;
}
.about-us-features ul li p {
  display: none;
  padding-top: 8px;
  padding-bottom: 0px;
  padding-right: 0%;
}
.year {
  position: absolute;
  top: 0px;
  left: -68px;
  text-align: right;
}
.content.about-us {
  color: #ff695a;
  font-family: 15px;
  font-weight: 600;
}
@media(max-width:992px) {
  .year {
    position: unset;
    margin-inline-end: 20px;
  }
  .about-us-features ul {
    padding-top: 0px;
    border-left: 2px solid #e5e8ec;
  }
}
/*  =============About us css end=============*/
/*  =============contact us css start=============*/
.contact-banner {
  padding: 45px 0px;
      direction: rtl !important;
}
section#contact {
    direction: rtl;
}
.contact-us {
  background: var(--color-white);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  border-radius: 10px;
}
.contact-us h4 {
  font-size: 17px;
 
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
}
.contact-us p {
  text-align: center;
}
.contact-us .open_ticket .iagree {
  text-align: start;
}
.frm-label-checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-style-one-icon {
  width: fit-content;
  height: auto;
  position: relative;
  margin: auto;
  border-radius: 50%;
  transition: all 0.5s ease 0s;
  padding: 15px;
  background-color: var(--color-main-hover);
}
.feature-style-one-icon svg {
  width: 45px;
  height: 45px;
  fill: #fff;
  transition: 0.5s all;
}
.contact-us .inputs {
  display: block;
  width: 100%;
  padding: .375rem .75rem !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  background-color: var(--color-white);
  background-clip: padding-box;
  border: 2px solid;
  border-radius: 5px !important;
}
.contact-us .inputs:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}
/*  =============contact us css end=============*/
/*  =============policy tabbing css start=============*/
.tabings {
  width: 100%;
  display: flex;
  justify-content: center;
}
.tabings .tabs {
  width: fit-content;
  display: flex;
  flex-direction: row;
}
@media (max-width:767px) {
  .tabings .tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.tabings .tabs .tabbutton {
  padding: 13px 20px;
  color: #0568ea;
  border: 1px solid;
  border-color: #0568ea;
  margin-bottom: 10px;
  border-radius: 0px;
  text-align: left;
  font-size: 17px;
  display: flex;
  align-items: center;
  background-color: #fff;
}
.tabings .tabs .tabbutton.active {
  background-color: #0568ea;
  color: #fff;
}
@media(min-width:767px) {
  .tabings .tabs.roundness .tabbutton:first-child {
    border-radius: 4px 0px 0px 4px;
  }
  .tabings .tabs.roundness .tabbutton:last-child {
    border-radius: 0px 4px 4px 0px;
  }
}
@media (max-width:767px) {
  .tabings .tabs.roundness .tabbutton {
    width: 50%;
  }
}
@media (max-width:430px) {
  .tabings .tabs.roundness .tabbutton {
    width: 100%;
  }
}
.tabings .tabs .tabbutton i {
  margin-right: 10px;
}
[dir="rtl"] .tabings .tabs .tabbutton i {
  margin-right: unset;
  margin-left: 10px;
}
.tabings .tabs.column-type {
  flex-direction: column;
}
.tabings .tabs.column-type .tabbutton {
  padding: 13px 20px;
  color: #0568ea;
  border: 1px solid;
  border-color: #0568ea;
  margin-bottom: 0;
  border-radius: 4px;
  text-align: left;
  font-size: 17px;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-bottom: 0;
  border-radius: 0;
  width: 100%;
}
.tabings select {
  padding: 13px 20px;
  color: #0568ea;
  border: 1px solid;
  border-color: #0568ea;
  margin-bottom: 0;
  border-radius: 4px;
  text-align: left;
  font-size: 17px;
  display: flex;
  align-items: center;
  background-color: #fff;
  width: 100%;
  margin-bottom: 20px;
}
.tabings .tabs.column-type .tabbutton:last-child {
  border-bottom: 1px solid;
}
.tabings .tabs.column-type .tabbutton i {
  margin-right: 10px;
}
.tabings .tabs.column-type .tabbutton.active i {
  color: #fff;
}
[dir="rtl"] .tabings .tabs.column-type .tabbutton i {
  margin-right: unset;
  margin-left: 10px;
}
.tabings .tabs.column-type .tabbutton.active {
  font-weight: 500;
  color: #fff;
  background: linear-gradient(255.4deg, #0568ea 1.6%, #46c9ce 98.62%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.tabings .tabs.column-type .tabbutton.active {
  line-height: 56px;
  display: block;
  padding: 0 15px;
  font-size: 16px;
  border: 0;
  position: relative;
  color: #262936;
}
.tabings .tabs.column-type .tabbutton.active::after {
  content: '';
  display: block;
  position: absolute;
  right: -20px;
  bottom: 16px;
  width: 0;
  height: 0;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  border-left: 10px solid #0568ea;
  border-right: 10px solid transparent;
}
.tabscontents {
  display: none;
}
.tabscontents.active {
  display: block;
}
.border {
  border: var(--bs-border-width) var(--bs-border-style) #0568ea !important;
}
@media (min-width: 768px) {
  .tab-select {
    display: none;
  }
}
@media (max-width: 767px) {
  .tabs {
    display: none;
  }
}
/*  =============policy tabbing css end=============*/
/*  =============server-hosting-form Start=============*/
.server-hosting-form {
  padding: 50px;
}
.server-hosting-form .inputs {
  border: 1px solid #d3d5d8;
  color: #262936;
  display: block;
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  background: unset;
  line-height: initial;
}
.server-hosting-form label {
  font-size: 15px;
  color: #a0a2a2;
  font-weight: 500;
  margin-bottom: 8px;
}
@media(max-width:480px) {
  .server-hosting-form {
    padding: 15px;
  }
}
/*  =============server-hosting-form end=============*/
/* -------------Login-Register Page----------------------- */
.login-page {
  text-align: center;
  direction: rtl;
}
.login-content {
  text-align: center;
  padding-top: 30px;
  height: 100vh;
}
.login-form {
  padding: 30px;
  border: 1px solid #63666959;
  border-radius: 8px 8px 0px 0px;
  margin-top: 20px;
  max-height: 400px;
  overflow: auto;
}
.login-form .inputs {
  display: block;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #63666959;
  text-align:center;
}
.login-content span {
  font-size: 12px;
  margin-top: 5px;
  font-weight: 400;
}
.login-content span label {
  border-bottom: 2px solid #3ca8e0;
}
.login-form h4 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 30px;
}
.login-form label {
  font-size: 16px;
  font-weight: 400;
  color: #6f737d;
  margin-bottom: 4px;
  display: block;
    text-align: right;
}
.pwrest {
  display: flex;
  justify-content: space-between;
}
.login_footer {
  padding: 20px;
  border-left: 1px solid #63666959;
  border-right: 1px solid #63666959;
  border-bottom: 1px solid #63666959;
  border-radius: 0px 0px 8px 8px;
}
.login_footer span {
  font-size: 16px;
}
.login-sidebar {
  height: 100vh;
  display: flex;
  align-items: center;
  background: #002143;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
@media(max-width:991px) {
  .login-sidebar {
    height: auto;
    padding-bottom: 50px;
  }
}
.feature-style-4.bordered {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  height: 100%;
}
.bg-primary {
  background: #002143 !important;
}
.login-sidebar h4 {
  font-size: 20px;
  font-weight: 500;
}
.login-sidebar .feature-style-4 p {
  font-size: 15px;
  font-weight: 400;
}
/* -------------Login-Register-css end----------------------- */
/* ================= Dedicated Server Plan =============== */
.dedicated-server-plan {
  display: block;
}
/* .dedicated-server-plan table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
} */
.dedicated-server-plan table thead {
  background: -moz-linear-gradient(20deg, #066aec 0%, #000b33 80%);
}
@media (min-width:992px) {
  .dedicated-server-plan table {
    table-layout: fixed;
  }
  .dedicated-server-plan table tbody tr td.price-td span {
    display: none;
  }
  /* .dedicated-server-plan table tbody tr{
    border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
}
  .dedicated-server-plan table tbody tr:last-child td:first-child{
    border-radius: 0 0 0 5px;
    -webkit-border-radius: 0 0 0 5px;
    -moz-border-radius: 0 0 0 5px;
    -ms-border-radius: 0 0 0 5px;
    -o-border-radius: 0 0 0 5px;
}
.dedicated-server-plan table tbody tr:last-child td:last-child{
  border-radius: 0 0 5px 0;
  -webkit-border-radius: 0 0 5px 0;
  -moz-border-radius: 0 0 5px 0;
  -ms-border-radius: 0 0 5px 0;
  -o-border-radius: 0 0 5px 0;
} */
}
.dedicated-server-plan table thead {
  border: 0;
}
.dedicated-server-plan table thead th {
  border: 0;
  color: #fff;
  font-size: 16px;
  padding: 20px;
  text-align: center;
  background: transparent;
  border: 0;
}
.dedicated-server-plan table thead .bg-none th {
  border: 0;
  color: #fff;
  font-size: 16px;
  padding: 10px;
  text-align: center;
  background: transparent;
  border: 0;
}
.bg-secondary {
  background-color: var(--color-main-two) !important;
}
.dedicated-server-plan table thead .bg-secondary th {
  border: 0;
  color: #fff;
  font-size: 16px;
  padding: 2px;
  text-align: center;
  background: transparent;
  border: 0;
}
.dedicated-server-plan table thead .bg-none {
  height: 20px;
  background-color: #ffffff;
}
.dedicated-server-plan table thead th:first-child {
  border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
  -ms-border-radius: 5px 0 0 0;
  -o-border-radius: 5px 0 0 0;
}
.dedicated-server-plan table thead th:last-child {
  border-radius: 0px 5px 0 0;
  -webkit-border-radius: 0px 5px 0 0;
  -moz-border-radius: 0px 5px 0 0;
  -ms-border-radius: 0px 5px 0 0;
  -o-border-radius: 0px 5px 0 0;
}
.dedicated-server-plan table tbody tr td {
  vertical-align: middle;
  border-top: 1px var(--bs-border-color);
  font-size: 14px;
  padding: 15px 15px;
  color: #777;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  text-align: center;
}
.dedicated-server-plan table tbody tr:hover td {
  background: var(--color-main-hover);
  color: #fff;
  border-color: var(--color-main-hover);
}
.dedicated-server-plan table tbody tr:first-child td {
  border-top: 1px solid var(--bs-border-color);
}
.dedicated-server-plan table tbody tr:hover:first-child td {
  border-top: unset;
}
.dedicated-server-plan table tbody tr td:first-child {
  border-left: 1px solid var(--bs-border-color);
}
.dedicated-server-plan table tbody tr td:last-child {
  border-right: 1px solid var(--bs-border-color);
}
.dedicated-server-plan table tbody tr:hover td:first-child {
  border-left: 1px solid var(--color-main-hover);
}
.dedicated-server-plan table tbody tr:hover td:last-child {
  border-right: 1px solid var(--color-main-hover);
}
.dedicated-server-plan table tbody tr td.price-td {
  text-align: center;
}
.dedicated-server-plan table tbody tr td:last-child {
  text-align: center;
}
.dedicated-server-plan table tbody tr td:last-child a {
  padding: 8px 25px;
  font-size: 14px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin: auto;
  color: var(--white);
}
.dedicated-server-plan table tbody tr:hover td:last-child a {
  background: linear-gradient(to right, #000b33 0%, #0568ea 100%) !important;
  border: unset;
}
.dedicated-server-plan table tbody tr {
  transition: transform 0.3s ease-in-out; /* Smooth effect */
}
.dedicated-server-plan table tbody tr:hover {
  transform: scale(1.01); /* Expands row by 5% on all sides */
}
@media (max-width:991px) {
  .dedicated-server-plan table thead {
    display: none;
  }
  .dedicated-server-plan table tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 4px;
    width: 45%;
    float: left;
    margin: 0 15px 28px 15px;
    text-align: left;
    background: #fafafa;
  }
  .dedicated-server-plan table tbody tr td {
    text-align: left;
    background: transparent;
    border: 0 !important;
    border-bottom: 1px solid var(--bs-border-color) !important;
    display: flex;
    align-items: center;
    padding: 12px 15px;
  }
  .dedicated-server-plan table tbody tr td:last-child {
    border-bottom: 0 !important;
  }
  .dedicated-server-plan table tbody tr td.price-td {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    justify-content: center;
  }
  .dedicated-server-plan table tbody tr td.price-td span {
    font-size: 14px;
    font-weight: 500;
  }
  .dedicated-server-plan table tbody tr td[data-value]:before {
    content: attr(data-value);
    transition: all .3s ease;
    display: block;
    width: 45%;
    font-weight: 600;
    font-size: 16px;
  }
  .dedicated-server-plan table tbody tr td:last-child a {
    padding: 8px 20px;
  }
}
@media (max-width: 767px) {
  .dedicated-server-plan table tbody tr {
    width: 100%;
    margin: 0;
    margin-bottom: 15px;
  }
  .dedicated-server-plan table tbody tr:last-child {
    margin-bottom: 0;
  }
}
/* 
============================
  Vps Server Plan
============================ */
.vps-plan-design {
  display: block;
  border-radius: 10px;
  padding: 48px 54px 45px;
  -webkit-border-radius: 10px 10px 0px 0px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 1px solid #282828;
  user-select: none;
  border-bottom: 0;
}
.vps-plan-design .price-slides {
  position: relative;
  margin-top: 20px;
}
.vps-plan-design .price-slides .bar {
  background-color: #ecebeb;
  border-radius: 9999px;
  width: 100%;
  height: 16px;
}
.vps-plan-design .price-slides .bar .bar-in {
  background: var(--color-main);
  border-radius: 9999px;
  height: 16px;
  position: relative;
}
.vps-plan-design .price-slides .bar .bar-in::after {
  content: '';
  width: 28px;
  height: 28px;
  background: #fff;
  border: 2px solid #081131;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  cursor: pointer;
}
.vps-plan-design .plan-names {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.vps-plan-design .plan-names h4 {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin: 0;
  color: #282828;
  cursor: pointer;
}
.vps-plan-design .plan-names > div {
  cursor: pointer;
}
.vps-plan-design .plan-names > div.active h4 {
  color: var(--color-main);
}
.vps-plan-tab .inner ul {
  border: 1px solid #282828;
  padding: 20px;
  border-radius: 10px;
}
.vps-plan-tab .inner ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vps-plan-tab .inner ul li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.vps-plan-tab .inner ul li figure {
  margin: 0;
}
.vps-plan-tab .inner ul li figure i {
  font-size: 18px;
  color: var(--color-main);
}
.vps-plan-tab .inner ul li span {
  font-size: 16px;
  color: #4b485b;
}
.vps-plan-tab .inner ul li h4 {
  font-size: 22px;
  color: var(--color-main-hover);
  margin: 0;
  font-weight: 900;
}
.vps-plan-price-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.price-value .price-amount {
  font-size: 30px;
  color: var(--color-main);
  font-weight: 900;
}
.price-value .price-amount sub {
  font-size: 16px;
  color: #3c3b3b;
}
.price-value {
  font-size: 16px;
  font-weight: 700;
}
.vps-plan-bottom {
  text-align: center;
  background: var(--color-main);
  border-radius: 0px 0px 10px 10px;
  padding: 10px;
}
.vps-plan-bottom h4 {
  font-size: 15px;
  color: #fff;
  margin: 0;
  font-weight: 500;
}
.vps-plan-price-section .price-value .price-amount {
  position: relative;
}
.badge-plan {
  font-size: 14px;
  font-weight: 500;
  background: var(--color-main-two);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 20px;
  position: absolute;
}
.badge-plan {
  left: 0;
  line-height: 18px;
  top: -10px;
  background-color: var(--color-main-two);
  display: inline-block;
  pointer-events: none;
  animation: 1.5s linear infinite blinker;
  transform: translateX(-100%);
}
@keyframes blinker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media(max-width:991px) {
  .vps-plan-design .price-slides {
    margin-top: 0px;
  }
  .vps-plan-tab .inner ul {
    flex-wrap: wrap;
  }
  .vps-plan-tab .inner ul li {
    display: block;
    gap: 0px;
    min-width: 50% !important;
    text-align: center;
  }
  .vps-plan-tab .inner ul li:nth-child(1), .vps-plan-tab .inner ul li:nth-child(2) {
    margin-bottom: 20px;
  }
  .vps-plan-tab .inner ul li figure i {
    font-size: 30px;
  }
}
@media(max-width:480px) {
  .vps-plan-tab .inner {
    border: unset;
    padding: 0px;
    border-radius: 10px;
  }
  .vps-plan-price-section {
    padding-top: 30px;
    border-top: 1px solid #424242;
  }
  .vps-plan-design {
    padding: 20px;
  }
  .vps-plan-design .price-slides .bar .bar-in::after {
    content: '';
    width: 28px;
    height: 28px;
    background: #fff;
    border: 2px solid #081131;
    position: absolute;
    z-index: 1;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    cursor: pointer;
  }
  .vps-plan-design .plan-names {
    padding: 0px;
  }
  .vps-plan-price-section {
    display: block;
    text-align: center;
  }
  .vps-plan-price-section .btns.one {
    margin: 20px auto 0px;
    width: 100%;
  }
}
/* ===================
Domain TLD
=================== */
.domain-tlds {
  position: relative;
  display: block;
  border: 1px solid rgba(102, 112, 147, .2);
  border-radius: 4px;
  padding: 16px;
  transition: all 0.5px;
}
.domain-tlds span {
  display: block;
  border-bottom: 1px solid rgba(102, 112, 147, .2);
  padding-bottom: 10px;
}
.domain-tlds span img {
  display: block;
  margin: auto;
  max-height: 50px;
}
.domain-tlds h4 {
  display: block;
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  color: #141e29;
  margin: 0;
  margin-top: 10px;
  letter-spacing: 1px;
}
.domain-tlds:hover {
  background: #fff;
}
.swiper-tld .icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
.swiper-tld .icons a {
  display: flex;
  position: relative;
  border-radius: 0px;
  background: #e9e9e9;
  cursor: pointer;
  font-size: 30px;
  color: #545454;
  transform: all 1s;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
}
.swiper-tld .icons a:hover {
  background: var(--color-main);
  color: #fff;
}
.swiper-tld .icons a.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.just-one-click-images{
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width:575px) {
  .just-one-click-images {
    flex-wrap: unset;
     overflow: auto;
     padding-bottom: 15px;
     display: inline-flex;
  }
}

.just-one-click{
  padding: 20px;
  border-radius: 8px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: #fff;
}

@media (max-width:575px) {
  .just-one-click-images   .just-one-click{
   box-shadow: unset;
   display: block ruby;
  }
}


.text-primary{
  color: var(--color-main) !important;
}
.bg-none{
  background: unset;
}

/* ----------------------------------------------------------------
     Titan Email Video
------------------------------------------------------------------- */

.titanmail-video{
  background-color: rgb(250, 251, 254);
  border: 15px solid rgba(196, 192, 192, 0.5);
  border-radius: 5px;
  overflow: hidden; 
    }
    .titanmail-video video{
        height: 100%;
  width: 100%;
  display: flex;
  border: none;
  background-color: #000;
    }

    /*  =============tabbing css start=============*/
.tab-section {
  padding: 40px 0;
}
.titan-tab .tab-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.titan-tab .tab-btn {
	color: #081131;
	padding: 5px;
	border-radius: 30px;
	border: 1px solid var(--color-main-two);
	transition: background-color 0.3s, color 0.3s;
	font-size: 15px;
	background: var(--white);
}
.titan-tab .tab-btn.active {
  background-color: var(--color-main);
  color: #fff;
  padding: 5px;
  border-radius: 30px;
  border: 1px solid var(--color-main);
}
.titan-tab .tab-content .tab-pane {
  display: none;
}
.titan-tab .tab-content .tab-pane.active {
  display: block;
  background: var(--color-white);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
}
.feature-style-three.tabs-img img {
  max-width: 100% !important;
}
.feature-style-three.tabs-img h5 {
  font-size: 17px;
}
.tab-section .section-title h4 {
  font-size: 19px;
}
.tab-section .feature-style-two h5 {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}
.tab-section .feature-style-one {
  background: #fff;
  padding: 5px;
}
.tab-section .feature-style-one h4 {
  font-size: 15px;
}

.plan-description.two h5{
	font-size: 20px;
	font-weight: 800;
  color: #081131;
}


/* ----------------------------------------------------------------
    20. Sunrise Domain Form Css
------------------------------------------------------------------- */
.sunrise-form {
  padding: 20px;
  position: relative;
  box-shadow: 0 0 5px #e1e1e1;
  border-radius: 5px;
  border: 1px solid #d5d5d5;
}

.sunrise-form .labels {
	font-size: 17px;
	font-weight: 600;
	position: relative;
	width: 100%;
	color: var(--color-main-hover);
}

.sunrise-form .smd-info {
  position: absolute;
  right: 20px;
  top: 6px;
}

.sunrise-form .smd-info .tooltip-txt {
  position: relative;
  cursor: help;
  color: rgb(var(--color-primary));
  font-weight: 500;
  font-size: 15px;
}



.sunrise-form .smd-info .tooltip-txt .tooltip-info {
  display: none;
  padding: 15px;
  z-index: 5;
  cursor: default;
  background: #272727;
  color: #ededed;
  font-size: 12px;
  line-height: 1.5;
  position: absolute;
  top: 25px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

.sunrise-form .smd-info .tooltip-txt .tooltip-info.what-is-smd {
  width: 635px;
  right: 2px;
}

.sunrise-form .smd-info .tooltip-txt .tooltip-info.what-is-smd span {
  background: url('/ui/resellerdata/1230000_1259999/1257502/supersite2/supersite/themes/EliteGreen-hostinghub/images/myUploadedImages/up_arrow.png') 0 0 no-repeat;
  right: 29px;
  width: 22px;
  height: 12px;
  position: absolute;
  top: -10px;
  display: block;

}

.sunrise-form .smd-info .tooltip-txt:hover .tooltip-info {
  display: block;
}

.sunrise-form .smd-info .tooltip-txt+.tooltip-txt {
  cursor: pointer;
}

@media (max-width:991px) {
  .sunrise-form .smd-info {
      display: none;
  }
}

.sunrise-form .input {
  width: 100%;
  background: #fff;
  border: 1px solid #e9e9e9;
  padding: 15px;
  font-size: 16px;
  outline: none;
  border-radius: 5px;
}
@media only screen and (min-width: 993px) and (max-width: 1199px) {
    .main-header .nabbar-nav .mainmenu {
	    gap: 20px;
    }
    .btns {
        padding: 10px 15px;
    }
    .topbar ul li {
        padding: 6px 8px;
    }
}

.billing-cycle-pricing .btn-group {
  position: relative;
  display: inline-block;
    width: 100%;
}
.billing-cycle-pricing .btn-group .btn {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
	background-color: transparent !important;
	border-color: #0011bf;
	color: #030303;
	padding: 8px 10px;
	text-align: left;
	margin: 0;
    font-size: 14px;
}
.billing-cycle-pricing .btn-group .dropdown-menu {
	width: 100%;
	margin-top: 0;
	padding-top: 0;
    display: none;
}

.billing-cycle-pricing .btn-group .dropdown-menu li {
	padding: 5px 10px;
	cursor: pointer;
	border-bottom: 1px solid #ccc;
	font-size: 13px;
	line-height: 30px;
	margin: 0;
}
.billing-cycle-pricing .btn-group .dropdown-menu li:before {
    display: none;
}
    .billing-cycle-pricing .btn-group .dropdown-menu li:last-child {
        border-bottom: 0px;
    }

.billing-cycle-pricing .btn-group .dropdown-menu li:hover {
  background-color: #f2f2f2;
}
.w-hidden {
  display: none;
}
.billing-cycle-pricing .btn-group .btn .pricing_wrapr {
        width: 100%;
    }
.billing-cycle-pricing .btn-group .btn .pricing_wrapr .save_text, .billing-cycle-pricing .btn-group .dropdown-menu .save_text {
	display: inline;
}
.plans-design-one p .badge.badge-primary {
	font-size: 13px !important;
}
.vps-plan-price-section .billing-cycle-pricing {
	display: flex;
	justify-content: center;
	gap: 50px;
}
.vps-plan-price-section .billing-cycle-pricing .pricing_main {
    width: 450px;
}
.vps-plan-price-section .billing-cycle-pricing .pricing_main .price-value {
	text-align: center;
}
.vps-plan-price-section .billing-cycle-pricing .btn-group .btn {
    width: 220px;
}
.vps-plan-price-section .billing-cycle-pricing .btn-group .dropdown-menu {
    padding: 0px;
}
.vps-plan-price-section .billing-cycle-pricing .btn-group .dropdown-menu li {
	gap: 0px;
}
.vps-plan-price-section .billing-cycle-pricing .btn-group .dropdown-menu li span {
	font-size: 12px;
	color: #FFF;
}
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success, .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {
    color: #fff;
    background-color: #267dfd;
    border-color: #267dfd;
}
.text-lg-end {
        text-align: left !important;
}
.intl-tel-input.separate-dial-code .selected-dial-code {
    display: table-cell;
    vertical-align: middle;
    padding-right: 28px;
}
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text] {
    padding-left: 76px;
    text-align: center;
}
.bootstrap-switch-container {
    width: 119px !important;
}
@media (min-width: 992px) {
    .market-connect-row {
        display: flex;
        flex-flow: row wrap;
    }
}
@media (min-width: 1200px) and (max-width: 1400px) {
    .panel-market-item .panel-body {
        padding: 45px 35px;
    }
}
@media (min-width: 1200px) {
    .col-lg-4 {
        width: 33.33333333%;
    }
}
@media (min-width: 1200px) {
    .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
        float: left;
        margin-top:10px;
        margin-bottom:10px;
       
    }
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
    direction: rtl;
}
.woot-widget-bubble.woot-elements--right {
    left: 61px ;
}
#order-standard_cart {
    margin: 0;
    padding: 0 0 40px 0;
    font-size: 14px;
    direction: rtl;
}
.panel-market-item {
    text-align: center;
    font-size: 1.2em;
    border: 1px solid #f8f8f8;
    background-color: #fff;
    font-weight: 300;
    height: 589px;
}
.panel-market-item .logo {
    margin-bottom: 30px;
    background-color: #fff;
    line-height: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.market-connect-apps-container {
    max-width: 1650px;
    margin: 0 auto 25px;
    background: #f9f9f9;
}
a.btns-primim {
    padding: 10px ;
    border: 1px solid #ec691c;
    background: #ec691c;
    color: #fff;
       font-size: 14px;
}

.btn-container {
    width: 100%;
    margin: 45px 0px;
}
.section-header.gap-bottom.center {
    height: 95px;
    margin-bottom: 50px;
}
.panel .card-header 
 {
    background-color: #3ca8e0 !important;
    border-bottom: none;
}
.cart-sidebar .panel .panel-heading h3.panel-title {
    color: #ffffff  !important;
}
.panel-sidebar a.list-group-item.active, .panel-sidebar a.list-group-item.active:focus, .panel-sidebar a.list-group-item.active:hover {
    background-color: transparent !important;
    border: unset;
    color: #ec691c !important;
    border-left: 2px solid !important;
    border-left-color: #3ca8e0 !important;
}
.btn-primary, .btn-primary.disabled, .btn-primary:disabled {
    background-color: #ec691c !important;
    border-color: #ec691c !important;
}
.woot-widget-bubble.woot-elements--right {
    left: 61px !important;
}
.tt-product-featured-wrap.mt-5 {
    display: none;
}
.fastsection {
    direction: rtl !important;
}
.fetchuersection {
    margin: 40px 0px 60px 0px;
    direction: rtl !important;
}
span.text-muted.mb-0.tt-cycle {
    color: #009ce0 !important;
    font-weight: bold;
}
.col-12.primary-content {
    direction: rtl;
    
}
.pricing-card{
    background:#fff;
    border:1px solid #ddd;
    border-radius:8px;
    transition:.3s;
    height:100%;
}

.pricing-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.plan-icon{
    font-size:42px;
    color:#888;
}

.plan-title{
    color:#29a3f0;
    font-size:20px;
    font-weight:500;
}

.plan-desc{
        font-size: 13px;
    color:#666;
    min-height:55px;
}

.old-price{
    color:#f37021;
    text-decoration:line-through;
    font-size:20px;
}

.price{
    font-size:30px;
    font-weight:bold;
    color:#0e1735;
}

.price small{
    font-size:18px;
    font-weight:400;
}

.note{
    color:#666;
        font-size: 10px;
}

.btn-orange{
    background:#f37021;
    color:#fff;
    border-radius:6px;
    padding:12px;
    font-weight:600;
}

.btn-orange:hover{
    background:#e35f0d;
    color:#fff;
}

.features{
    margin-top:25px;
    border-top:1px solid #eee;
    padding-top:20px;
}

.features li{
    list-style:none;
    margin-bottom:16px;
    display:flex;
    align-items:center;
    font-size:15px;
    color:#24314f;
    font-weight:600;
    text-align: right;
}

.features i{
    width:30px;
    color:#666;
    font-size:20px;
}
.panel-body h3 {
    font-size: 22px;
}
.panel-body h4 {
    font-size: 18px;
}
 :root{
    --ink:#0B1220;
    --ink-soft:#5B6472;
    --paper:#F5F6F8;
    --card:#FFFFFF;
    --line:#E7E9EE;
    --teal:#0F9E8E;
    --teal-deep:#0B7A6E;
    --indigo:#5B5FEF;
    --amber:#E08A2C;
    --rose:#D65C6E;
    --sky:#2E86C7;
  }


  /* ---- Hero ---- */
  .amk-hero{
    background:
      radial-gradient(1100px 420px at 85% -10%, rgba(15,158,142,.35), transparent 60%),
      linear-gradient(180deg, var(--ink) 0%, #101B2E 100%);
    color:#fff;
    padding:64px 0 84px;
    position:relative;
    overflow:hidden;
  }
  .amk-hero .amk-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(15,158,142,.15);
    border:1px solid rgba(15,158,142,.4);
    color:#ec691c;
    padding:6px 14px;
    border-radius:999px;
    font-size:.85rem;
    font-weight:700;
  }
  .amk-hero h1{
    font-weight:800;
    font-size:2.6rem;
    max-width:720px;
    line-height:1.35;
  }
  .amk-hero p.lead{
    color:#B9C2CF;
    max-width:600px;
    font-size:1.05rem;
  }
  .amk-hero-stats{
    display:flex;
    gap:28px;
    margin-top:34px;
    flex-wrap:wrap;
  }
  .amk-hero-stats .amk-stat b{
    font-family:'Cairo',sans-serif;
    font-size:1.5rem;
    display:block;
  }
  .amk-hero-stats .amk-stat span{
    color:#9AA4B2;
    font-size:.85rem;
  }

  /* ---- Category pills ---- */
  .amk-filter-bar{
    margin-top:-32px;
    position:relative;
    z-index:5;
  }
  .amk-filter-card{
    background:var(--card);
    border:1px solid var(--line);
    border-radius:16px;
    padding:14px 18px;
    box-shadow:0 12px 30px -18px rgba(11,18,32,.35);
    display:flex;
    gap:10px;
    flex-wrap:wrap;
  }
  .amk-pill{
    border:1px solid var(--line);
    background:#fff;
    color:var(--ink-soft);
    border-radius:999px;
    padding:8px 18px;
    font-size:.88rem;
    font-weight:700;
    cursor:pointer;
    transition:all .15s ease;
    white-space:nowrap;
  }
  .amk-pill i{ margin-inline-end:6px; }
  .amk-pill.amk-active, .amk-pill:hover{
    background:var(--ink);
    border-color:var(--ink);
    color:#fff;
  }

  /* ---- Cards ---- */
  .amk-section-title{
    font-weight:800;
    font-size:1.4rem;
    margin-bottom:4px;
  }
  .amk-section-sub{
    color:var(--ink-soft);
    font-size:.92rem;
  }

  .amk-addon-card{
    background:var(--card);
    border:1px solid var(--line);
    border-radius:18px;
    padding:26px;
    height:100%;
    display:flex;
    flex-direction:column;
    position:relative;
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }
  .amk-addon-card:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 36px -22px rgba(11,18,32,.4);
    border-color:transparent;
  }
  .amk-addon-card::before{
    content:"";
    position:absolute;
    inset-inline-start:0;
    top:18px;
    bottom:18px;
    width:4px;
    border-radius:0 4px 4px 0;
    background:var(--accent, var(--teal));
  }
  [dir="rtl"] .amk-addon-card::before{
    border-radius:4px 0 0 4px;
  }

  .amk-icon-badge{
    width:52px;
    height:52px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.35rem;
    color:#fff;
    background:var(--accent, var(--teal));
    margin-bottom:16px;
  }
  .amk-provider-chip{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:.78rem;
    font-weight:700;
    color:#1F9D6F;
    background:transparent;
    padding:0;
    border-radius:999px;
    margin-bottom:10px;
    width:fit-content;
  }
  .amk-addon-card h3{
    font-size:1.12rem;
    font-weight:700;
    margin-bottom:8px;
  }
  .amk-addon-card p{
    color:var(--ink-soft);
    font-size:.92rem;
    line-height:1.7;
    flex-grow:1;
    margin-bottom:18px;
  }
  .amk-card-footer-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding-top:16px;
    border-top:1px dashed var(--line);
  }
  .amk-price-tag{
    font-family:'Cairo',sans-serif;
    font-weight:800;
    font-size:1rem;
    color:var(--ink);
  }
  .amk-price-tag small{
    font-weight:500;
    color:var(--ink-soft);
    font-size:.75rem;
  }
  .amk-btn-select{
    background:#EF7B22;
    border:none;
    color:#fff;
    font-weight:700;
    font-size:.88rem;
    padding:9px 20px;
    border-radius:10px;
    transition:filter .15s ease, transform .15s ease;
  }
  .amk-btn-select:hover{
    background:#009ce0;
    color:#fff;
    transform:translateY(-1px);
  }
  section.container.py-5 {
    direction: rtl;
}
  .trust-section{
    padding:70px 0;
    background:var(--paper);
  }
  .trust-section .section-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:var(--color-main-two);
    font-weight:700;
    font-size:.85rem;
    background:rgba(236,105,28,.1);
    padding:6px 16px;
    border-radius:999px;
    margin-bottom:14px;
  }
  .trust-section h2{
    font-weight:800;
    font-size:1.9rem;
    margin-bottom:6px;
  }
  .trust-section .sub{
    color:var(--ink-soft);
    font-size:.98rem;
  }

  .trust-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    padding:34px 26px;
    height:100%;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .trust-card::before{
    content:"";
    position:absolute;
    top:0; right:0; left:0;
    height:4px;
    background:var(--accent, var(--color-main));
    transform:scaleX(0);
    transform-origin:right;
    transition:transform .3s ease;
  }
  .trust-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 34px -18px rgba(8,17,49,.25);
    border-color:transparent;
  }
  .trust-card:hover::before{
    transform:scaleX(1);
  }

  .trust-icon{
    width:76px;
    height:76px;
    margin:0 auto 20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:color-mix(in srgb, var(--accent, var(--color-main)) 12%, white);
    font-size:2rem;
    color:var(--accent, var(--color-main));
    transition:transform .3s ease;
  }
  .trust-card:hover .trust-icon{
    transform:scale(1.08) rotate(-4deg);
  }

  .trust-card h3{
    font-size:1.15rem;
    font-weight:700;
    margin-bottom:10px;
    color:var(--ink);
  }
  .trust-card p{
    font-size:.92rem;
    color:var(--ink-soft);
    line-height:1.8;
    margin:0;
  }

  .trust-card .badge-num{
    position:absolute;
    top:14px;
    left:16px;
    font-family:'Cairo', sans-serif;
    font-weight:800;
    font-size:.75rem;
    color:var(--line);
  }
  .feature-row{
    padding:80px 20px;
  }
  .feature-row.alt{
    background:var(--paper);
    direction:rtl;
  }
  .feature-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-weight:700;
    font-size:.85rem;
    padding:6px 16px;
    border-radius:999px;
    margin-bottom:16px;
  }
  .feature-row h2{
    font-weight:800;
    font-size:2rem;
    line-height:1.4;
    margin-bottom:16px;
  }
  .feature-row p.desc{
    color:var(--ink-soft);
    font-size:1rem;
    line-height:1.9;
    margin-bottom:22px;
  }
  .feature-points{
    display:flex;
    flex-direction:column;
    gap:12px;
  }
  .feature-points li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:.95rem;
    color:var(--ink);
    font-weight:600;
  }
  .feature-points li i{
    font-size:1.15rem;
    margin-top:2px;
  }

  /* ---- Illustration: Speed ---- */
  .speed-visual{
    position:relative;
    max-width:460px;
    margin:0 auto;
  }
  .browser-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    box-shadow:0 24px 50px -24px rgba(8,17,49,.25);
    overflow:hidden;
  }
  .browser-bar{
    display:flex;
    align-items:center;
    gap:6px;
    padding:12px 16px;
    background:var(--paper);
    border-bottom:1px solid var(--line);
  }
  .browser-bar span{
    width:10px; height:10px; border-radius:50%;
    background:var(--line);
  }
  .browser-body{
    padding:28px 22px;
  }
  .skeleton-line{
    height:10px;
    border-radius:6px;
    background:var(--line);
    margin-bottom:10px;
  }
  .speed-gauge{
    display:flex;
    align-items:center;
    gap:16px;
    margin-top:22px;
    padding:16px;
    background:var(--paper);
    border-radius:12px;
  }
  .speed-gauge .ring{
    width:56px; height:56px;
    border-radius:50%;
    background:conic-gradient(var(--color-main-two) 0% 92%, var(--line) 92% 100%);
    display:flex; align-items:center; justify-content:center;
    position:relative;
    flex-shrink:0;
  }
  .speed-gauge .ring::before{
    content:"";
    position:absolute;
    inset:6px;
    background:#fff;
    border-radius:50%;
  }
  .speed-gauge .ring span{
    position:relative;
    font-weight:800;
    font-size:.85rem;
    color:var(--color-main-two);
  }
  .speed-gauge .label b{
    display:block;
    font-size:1rem;
    color:var(--ink);
  }
  .speed-gauge .label small{
    color:var(--ink-soft);
  }
  .floating-badge{
    position:absolute;
    top:-18px;
    left:-18px;
    background:var(--color-main-two);
    color:#fff;
    font-weight:800;
    font-family:'Cairo',sans-serif;
    font-size:1.1rem;
    padding:14px 18px;
    border-radius:14px;
    box-shadow:0 14px 26px -10px rgba(236,105,28,.55);
  }
  .floating-badge small{
    display:block;
    font-weight:500;
    font-size:.65rem;
    opacity:.9;
  }

  /* ---- Illustration: Security ---- */
  .security-visual{
    position:relative;
    max-width:440px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px 0;
  }
  .shield-wrap{
    position:relative;
    width:230px;
    height:230px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .shield-wrap::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    background:radial-gradient(circle, rgba(15,158,142,.14), transparent 70%);
  }
  .shield-core{
    width:150px;
    height:150px;
    border-radius:34px;
    background:linear-gradient(160deg, var(--teal), #0B7A6E);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 24px 44px -18px rgba(15,158,142,.55);
    transform:rotate(-6deg);
  }
  .shield-core i{
    font-size:3.2rem;
    color:#fff;
  }
  .orbit-icon{
    position:absolute;
    width:56px; height:56px;
    border-radius:50%;
    background:#fff;
    border:1px solid var(--line);
    box-shadow:0 12px 24px -10px rgba(8,17,49,.2);
    display:flex; align-items:center; justify-content:center;
    font-size:1.3rem;
  }
  .orbit-icon.o1{ top:-10px; right:10px; color:var(--color-main); }
  .orbit-icon.o2{ bottom:0; left:-10px; color:var(--color-main-two); }
  .orbit-icon.o3{ bottom:30px; right:-20px; color:#7C3AED; }
    .hf-section{
    padding:80px 0;
  }
  .hf-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:var(--color-main-two);
    background:rgba(236,105,28,.1);
    font-weight:700;
    font-size:.85rem;
    padding:6px 16px;
    border-radius:999px;
    margin-bottom:14px;
  }
  .hf-section h2{
    font-weight:800;
    font-size:2rem;
    margin-bottom:10px;
  }
  .hf-section .sub{
    color:var(--ink-soft);
    font-size:1rem;
  }

  .hf-item{
    display:flex;
    gap:18px;
    padding:22px;
    border-radius:14px;
    height:100%;
    transition:background .25s ease, transform .25s ease, box-shadow .25s ease;
  }
  .hf-item:hover{
    background:#fff;
    transform:translateY(-4px);
    box-shadow:0 18px 34px -20px rgba(8,17,49,.28);
  }

  .hf-icon{
    flex-shrink:0;
    width:58px;
    height:58px;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.5rem;
    color:#fff;
    background:var(--accent, var(--color-main));
  }

  .hf-item h3{
    font-size:1.08rem;
    font-weight:700;
    margin-bottom:6px;
    color:var(--ink);
  }
  .hf-item p{
    font-size:.88rem;
    color:var(--ink-soft);
    line-height:1.75;
    margin:0;
  }
  .callback-cta{
    position:relative;
    max-width:1350px;
    margin:0 auto;
    
    overflow:hidden;
    background:
      radial-gradient(900px 260px at 15% 0%, rgba(60,168,224,.35), transparent 60%),
      radial-gradient(900px 260px at 90% 100%, rgba(236,105,28,.30), transparent 60%),
      linear-gradient(160deg, #060B1E 0%, var(--ink) 60%, #0A1130 100%);
    padding:64px 40px;
  }

  /* Decorative "server rack" pattern using pure CSS instead of a stock photo */
  .callback-cta::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.35;
    background-image:
      repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0px, rgba(255,255,255,.05) 1px, transparent 1px, transparent 34px),
      repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0px, rgba(255,255,255,.04) 1px, transparent 1px, transparent 90px);
    pointer-events:none;
  }
  .callback-cta::after{
    content:"";
    position:absolute;
    inset:0;
    background:
      radial-gradient(2px 2px at 12% 30%, #3ca8e0, transparent),
      radial-gradient(2px 2px at 24% 70%, #EC691C, transparent),
      radial-gradient(2px 2px at 40% 20%, #3ca8e0, transparent),
      radial-gradient(2px 2px at 60% 80%, #EC691C, transparent),
      radial-gradient(2px 2px at 78% 35%, #3ca8e0, transparent),
      radial-gradient(2px 2px at 90% 65%, #EC691C, transparent);
    opacity:.7;
    pointer-events:none;
  }

  .callback-inner{
    position:relative;
    z-index:2;
    text-align:center;
  }

  .callback-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.18);
    color:#fff;
    padding:7px 18px;
    border-radius:999px;
    font-size:.85rem;
    font-weight:700;
    margin-bottom:22px;
  }
  .callback-badge i{ color:#4ADE80; }

  .callback-inner h2{
    color:#fff;
    font-weight:800;
    font-size:2.2rem;
    max-width:760px;
    margin:0 auto 14px;
    line-height:1.5;
  }
  .callback-inner p.sub{
    color:#B9C2D9;
    font-size:1.05rem;
    max-width:560px;
    margin:0 auto 34px;
  }

  .callback-actions{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
    margin-bottom:36px;
  }
  .btn-callback-primary{
    background:var(--color-main-two);
    color:#fff;
    font-weight:700;
    padding:14px 32px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:transform .2s ease, filter .2s ease, box-shadow .2s ease;
    box-shadow:0 16px 30px -14px rgba(236,105,28,.6);
  }
  .btn-callback-primary:hover{
    color:#fff;
    transform:translateY(-3px);
    filter:brightness(1.05);
  }
  .btn-callback-secondary{
    border:1px solid rgba(255,255,255,.35);
    color:#fff;
    font-weight:700;
    padding:14px 32px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:all .2s ease;
  }
  .btn-callback-secondary:hover{
    background:#fff;
    color:var(--ink);
  }

  .callback-stats{
    display:flex;
    justify-content:center;
    gap:48px;
    flex-wrap:wrap;
    padding-top:28px;
    border-top:1px solid rgba(255,255,255,.12);
  }
  .callback-stats .stat{
    text-align:center;
    color:#fff;
  }
  .callback-stats .stat b{
    display:block;
    font-size:1.4rem;
    font-weight:800;
  }
  .callback-stats .stat span{
    color:#9AA4C0;
    font-size:.82rem;
  }
    .reviews-section{
    padding:100px 0 110px;
    position:relative;
    overflow:hidden;
    background:var(--bg);
  }
  .reviews-section::before{
    content:"";
    position:absolute;
    top:-120px; left:50%;
    transform:translateX(-50%);
    width:700px; height:700px;
    background:radial-gradient(circle, rgba(47,128,237,0.08) 0%, rgba(47,128,237,0) 70%);
    pointer-events:none;
  }

  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--blue-light);
    color:var(--blue);
    font-weight:700;
    font-size:13px;
    padding:7px 18px;
    border-radius:30px;
    margin-bottom:18px;
    letter-spacing:.3px;
  }
  .eyebrow .dot{
    width:6px;height:6px;border-radius:50%;
    background:var(--gold);
    display:inline-block;
  }

  .section-title{
    font-weight:800;
    font-size:2.6rem;
    color:var(--navy);
    margin-bottom:14px;
  }
  .section-title span{color:var(--blue);}

  .section-sub{
    color:var(--text-muted);
    font-size:1.05rem;
    max-width:560px;
    margin:0 auto;
  }

  .stats-row{
    display:flex;
    justify-content:center;
    gap:48px;
    margin:38px 0px 80px;
    flex-wrap:wrap;
  }
  .stat-item{text-align:center;}
  .stat-num{
    font-weight:800;
    font-size:1.9rem;
    color:var(--navy);
    line-height:1;
  }
  .stat-label{
    font-size:.85rem;
    color:var(--text-muted);
    margin-top:6px;
  }
  .stat-divider{
    width:1px;
    background:var(--card-border);
  }

  /* Carousel */
  .review-carousel{
    margin-top:60px;
    padding:0 10px;
  }
  .carousel-inner{overflow:visible;}

  .review-track{
    display:flex;
    gap:26px;
  }

  .review-card{
    background:#fff;
    border:1px solid var(--card-border);
    border-radius:18px;
    padding:34px 30px 28px;
    position:relative;
    flex:1;
    min-width:0;
    box-shadow:0 1px 3px rgba(11,31,58,0.04);
    transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  }
  .review-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px -14px rgba(11,31,58,0.18);
    border-color:rgba(47,128,237,0.25);
  }

  .quote-mark{
    position:absolute;
    top:22px; 
    left:26px;
    font-size:3.4rem;
    font-weight:800;
    color:#EAF2FE;
    line-height:1;
    font-family:Georgia, serif;
    user-select:none;
  }

  .review-stars{
    color:#F2A93B;
    font-size:.92rem;
    letter-spacing:2px;
    margin-bottom:14px;
  }

  .review-text{
    color:#334155;
    font-size:.98rem;
    line-height:1.85;
    margin-bottom:26px;
    min-height:110px;
  }

  .reviewer{
    display:flex;
    align-items:center;
    gap:14px;
    padding-top:20px;
    border-top:1px solid var(--card-border);
  }
  .reviewer-avatar{
    width:52px;height:52px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid var(--blue-light);
  }
  .reviewer-name{
    font-weight:700;
    color:var(--navy);
    font-size:.98rem;
    margin-bottom:2px;
  }
  .reviewer-role{
    font-size:.82rem;
    color:var(--text-muted);
  }

  .badge-verified{
    position:absolute;
    top:26px; left:0; right:0;
    text-align:left;
    padding-left:26px;
  }

  /* Controls */
  .carousel-controls{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:22px;
    margin-top:46px;
  }
  .car-btn{
    width:46px;height:46px;
    border-radius:50%;
    border:1px solid #E7EBF3;
    background:#fff;
    color:#0B1F39;
    display:flex;align-items:center;justify-content:center;
    font-size:1.1rem;
    cursor:pointer;
    transition:all .25s ease;
  }
  .car-btn:hover{
    background:#0B1F3A;
    color:#fff;
    border-color:var(--navy);
  }

  .car-dots{
    display:flex;
    gap:8px;
  }
  .car-dot{
    width:8px;height:8px;
    border-radius:50%;
    background:#D6DEEB;
    cursor:pointer;
    transition:all .3s ease;
  }
  .car-dot.active{
    width:26px;
    border-radius:6px;
    background:#2F80ED;
  }

  @media (max-width: 991px){
    .review-track{flex-wrap:nowrap;}
    .section-title{font-size:2.1rem;}
    .stats-row{gap:28px;}
  }
  
  .kd-section{
    background:
      radial-gradient(1100px 500px at 85% -10%, rgba(255,106,26,0.16), transparent 60%),
      radial-gradient(900px 500px at -10% 110%, rgba(47,168,224,0.14), transparent 60%),
      linear-gradient(180deg, #081527 0%, #0d1f3a 100%);
    padding: 64px 0 40px;
    position:relative;
    overflow:hidden;
  }
  .kd-grid-overlay{
    position:absolute; inset:0;
    background-image: linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px);
    background-size: 42px 42px;
    -webkit-mask-image: radial-gradient(1200px 620px at 50% 30%, #000 0%, transparent 75%);
            mask-image: radial-gradient(1200px 620px at 50% 30%, #000 0%, transparent 75%);
    pointer-events:none;
  }

  .kd-eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    color:#ff6a1a;
    font-weight:700; font-size:.85rem;
    letter-spacing:.3px;
    background: rgba(255,106,26,0.12);
    border:1px solid rgba(255,106,26,0.35);
    padding:6px 16px; border-radius:100px;
  }
  .kd-eyebrow i{font-size:.7rem;}

  .kd-title{
    color:#fff; font-weight:800; font-size:clamp(1.9rem, 3.2vw, 2.7rem);
    margin: 14px 0 10px;
    line-height:1.25;
  }
  .kd-title .accent{ color:#ff6a1a; }

  .kd-lead{ color:rgba(255,255,255,0.62); font-size:1.02rem; max-width:520px; margin-bottom:26px; }

  .kd-feature{
    display:flex; align-items:flex-start; gap:12px;
    padding:14px; border-radius:14px;
    background: rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.10);
  }
  .kd-feature .ic{
    width:38px; height:38px; min-width:38px; border-radius:10px;
    display:flex; align-items:center; justify-content:center;
    background: rgba(47,168,224,0.14);
    color:#2fa8e0; font-size:1rem;
  }
  .kd-feature span{ color:#e9edf5; font-weight:500; font-size:.92rem; }

  .kd-price-row{
    display:flex; align-items:center; gap:18px; margin-top:28px; flex-wrap:wrap;
  }
  .kd-price-tag .label{ color:rgba(255,255,255,0.62); font-size:.85rem; display:block; margin-bottom:2px;}
  .kd-price-tag .value{ color:#fff; font-weight:800; font-size:2.1rem; font-family:'Cairo',sans-serif;}
  .kd-price-tag .value small{ color:rgba(255,255,255,0.62); font-size:1rem; font-weight:500; }

  .kd-cta{
    background: linear-gradient(135deg, #ff6a1a, #e0540c);
    border:none; color:#fff; font-weight:700;
    padding:14px 30px; border-radius:12px; font-size:.98rem;
    display:inline-flex; align-items:center; gap:10px;
    box-shadow: 0 10px 24px -8px rgba(255,106,26,0.55);
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .kd-cta:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(255,106,26,0.65); color:#fff; }
  .kd-cta i{ transition: transform .18s ease; }
  .kd-cta:hover i{ transform: translateX(-4px); }

  /* right visual panel */
  .kd-visual{
    position:relative; height:100%; min-height:340px;
    display:flex; align-items:center; justify-content:center;
  }
  .kd-orbit{
    position:absolute; width:340px; height:340px; border-radius:50%;
    border:1px dashed rgba(255,255,255,0.14);
  }
  .kd-orbit.o2{ width:250px; height:250px; }

  .kd-panel{
    position:relative; z-index:2;
    width: min(100%, 300px);
    background: linear-gradient(160deg, #0f2745, #0b1c33);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:18px;
    padding:20px;
    box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
  }
  .kd-panel-head{ display:flex; align-items:center; gap:8px; margin-bottom:16px;}
  .kd-dot{ width:8px; height:8px; border-radius:50%; }
  .kd-panel-title{ color:#fff; font-weight:700; font-size:.85rem; margin-inline-start:auto; opacity:.75; }

  .kd-bar{
    height:9px; border-radius:6px; background: rgba(255,255,255,0.08); overflow:hidden; margin-bottom:10px;
  }
  .kd-bar > span{ display:block; height:100%; border-radius:6px; background: linear-gradient(90deg, #2fa8e0, #ff6a1a); }

  .kd-stat-grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:16px;}
  .kd-stat{
    background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.10); border-radius:10px; padding:10px;
    text-align:center;
  }
  .kd-stat b{ display:block; color:#fff; font-family:'Cairo',sans-serif; font-size:1.1rem; }
  .kd-stat small{ color:rgba(255,255,255,0.62); font-size:.72rem; }

  .kd-badge-float{
    position:absolute; z-index:3; top:-14px; left:-14px;
    background:#fff; color:#081527; font-weight:700; font-size:.78rem;
    padding:8px 14px; border-radius:100px; box-shadow:0 10px 22px -8px rgba(0,0,0,0.35);
    display:flex; align-items:center; gap:6px;
  }
  .kd-badge-float i{ color:#ff6a1a; }

  /* server rack icon column */
  .kd-rack{
    position:absolute; bottom:-6px; left:6px; z-index:2;
    display:flex; gap:5px; opacity:.9;
  }
  .kd-rack .u{
    width:9px; height:42px; background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.10);
    border-radius:3px; position:relative; overflow:hidden;
  }
  .kd-rack .u::after{
    content:''; position:absolute; top:6px; left:2px; width:4px; height:4px; border-radius:50%;
    background:#22d38a; box-shadow:0 8px 0 #22d38a, 0 16px 0 rgba(255,255,255,0.2);
    animation: kd-blink 2.4s infinite ease-in-out;
  }
  .kd-rack .u:nth-child(2)::after{ animation-delay:.4s; background:#2fa8e0; box-shadow:0 8px 0 #2fa8e0, 0 16px 0 rgba(255,255,255,0.2);}
  .kd-rack .u:nth-child(3)::after{ animation-delay:.8s; }
  .kd-rack .u:nth-child(4)::after{ animation-delay:1.2s; background:#ff6a1a; box-shadow:0 8px 0 #ff6a1a, 0 16px 0 rgba(255,255,255,0.2);}
  @keyframes kd-blink{ 0%,100%{opacity:.3;} 50%{opacity:1;} }

  /* carousel controls */
  #kdCarousel .carousel-control-prev, #kdCarousel .carousel-control-next{
    width:48px; height:48px; top:50%; transform:translateY(-50%); bottom:auto;
    background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.10); border-radius:50%; opacity:1;
  }
  #kdCarousel .carousel-control-prev{ right:-6px; left:auto; }
  #kdCarousel .carousel-control-next{ left:-6px; right:auto; }
  #kdCarousel .carousel-control-prev:hover, #kdCarousel .carousel-control-next:hover{ background: rgba(255,106,26,0.25); }
  #kdCarousel .carousel-control-prev-icon, #kdCarousel .carousel-control-next-icon{ width:18px; height:18px; }

  /* tab-style indicators (also mirrors the bottom-tab idea from the reference) */
  .kd-tabs{
    display:flex; justify-content:center; gap:10px; margin-top:44px; flex-wrap:wrap;
    position:relative; z-index:2;
  }
  .kd-tab{
    display:flex; align-items:center; gap:10px;
    background: rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.10);
    color:rgba(255,255,255,0.62);
    padding:12px 20px; border-radius:14px; cursor:pointer;
    font-weight:600; font-size:.9rem;
    transition: all .2s ease;
  }
  .kd-tab i{ font-size:1rem; }
  .kd-tab.active{
    background: linear-gradient(135deg, rgba(255,106,26,0.16), rgba(255,106,26,0.05));
    border-color: rgba(255,106,26,0.55);
    color:#fff;
  }
  .kd-tab.active i{ color:#ff6a1a; }
  .kd-tab:hover{ color:#fff; border-color: rgba(255,255,255,0.25); }

  @media (max-width: 991px){
    .kd-visual{ margin-top:36px; min-height:260px; }
    .kd-tabs{ gap:8px; }
    .kd-tab{ padding:10px 14px; font-size:.8rem; }
  }
  
  .plans-section{ padding:88px 0; }

  .section-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:#DD6B0F;
    background:rgba(245,130,31,.1);
    padding:6px 16px;
    border-radius:999px;
    margin-bottom:18px;
  }
  .section-title{
    font-weight:800;
    font-size:2.4rem;
    letter-spacing:-0.02em;
  }
  .section-sub{
    color:#67728C;
    font-size:1.05rem;
    max-width:560px;
  }

  .plan-card{
    background:#fff;
    border:1px solid #E7EAF3;
    border-radius:18px;
    padding:34px 28px;
    height:100%;
    position:relative;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .plan-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px -18px rgba(15,30,61,.18);
    border-color:rgba(47,111,237,.25);
  }
  .plan-card.featured{
    border:2px solid #F5821F;
    box-shadow:0 22px 44px -16px rgba(245,130,31,.28);
  }
  .featured-badge{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:#F5821F;
    color:#fff;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.04em;
    text-transform:uppercase;
    padding:6px 16px;
    border-radius:999px;
    white-space:nowrap;
    box-shadow:0 8px 16px -6px rgba(245,130,31,.5);
  }

  .plan-icon{
    width:56px;height:56px;
    border-radius:14px;
    display:flex;align-items:center;justify-content:center;
    background:rgba(47,111,237,.08);
    color:#2F6FED;
    font-size:1.5rem;
    margin-bottom:20px;
  }
  .plan-card.featured .plan-icon{
    background:rgba(245,130,31,.12);
    color:#DD6B0F;
  }

  .plan-name{
    font-weight:700;
    color:#2F6FED;
    font-size:1.15rem;
    margin-bottom:6px;
  }
  .plan-card.featured .plan-name{ color:#DD6B0F; }

  .plan-desc{
    color:#67728C;
    font-size:.9rem;
    min-height:42px;
  }

  .price-row{ margin:20px 0 6px; }
  .price-old{
    color:#A6AEC2;
    text-decoration:line-through;
    font-size:.9rem;
    margin-right:8px;
  }
  .price-new{
    font-weight:800;
    font-size:2rem;
    color:#0F1E3D;
  }
  .price-period{
    color:#67728C;
    font-size:.85rem;
  }
  .price-note{
    font-size:.78rem;
    color:#67728C;
    margin-bottom:22px;
  }

  .btn-plan{
    display:block;
    width:100%;
    padding:12px 0;
    border-radius:10px;
    font-weight:700;
    font-size:.95rem;
    border:none;
    color:#fff;
    background:linear-gradient(135deg, #F5821F, #DD6B0F);
    box-shadow:0 10px 20px -8px rgba(245,130,31,.55);
    transition:filter .2s ease, transform .2s ease;
  }
  .btn-plan:hover{ filter:brightness(1.06); transform:translateY(-1px); color:#fff; }

  .plan-features{
    list-style:none;
    padding:0;
    margin:26px 0 0;
  }
  .plan-features li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:.88rem;
    color:#3B4560;
    padding:8px 0;
    border-top:1px solid #F0F2F8;
  }
  .plan-features li:first-child{ border-top:none; }
  .plan-features i{
    color:#F5821F;
    font-size:.95rem;
    margin-top:2px;
  }
      .main-header .nabbar-nav .mainmenu > li > a > span {
        position: relative;
        font-family: "Tajawal", sans-serif;
    }
    .support-section{
    background:var(--kw-bg);
    padding:90px 0;
    overflow:hidden;
    direction: rtl;
    position:relative;
  }
  .support-section::before{
    content:"";
    position:absolute;
    inset-inline-start:-120px;
    top:-120px;
    width:320px;height:320px;
    border-radius:50%;
    background:radial-gradient(circle at 30% 30%, rgba(247,148,29,.14), transparent 70%);
  }

  .kw-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    font-weight:700;
    color:var(--kw-orange);
    background:rgba(247,148,29,.1);
    padding:6px 16px;
    border-radius:30px;
    margin-bottom:18px;
  }
  .kw-eyebrow::before{
    content:"";
    width:7px;height:7px;
    border-radius:50%;
    background:var(--kw-orange);
    display:inline-block;
  }

  .support-section h2{
    font-weight:900;
    font-size:2.4rem;
    color:var(--kw-navy);
    line-height:1.3;
    margin-bottom:20px;
  }
  .support-section h2 span{color:var(--kw-orange);}

  .support-section p.lead-text{
    color:var(--kw-gray);
    font-size:1.02rem;
    line-height:1.9;
    max-width:520px;
    margin-bottom:36px;
  }

  .kw-feature-row{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
  }
  .kw-feature{
    flex:1 1 150px;
    background:#fff;
    border:1px solid var(--kw-line);
    border-radius:16px;
    padding:22px 16px;
    text-align:center;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .kw-feature:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 30px -14px rgba(14,27,63,.25);
    border-color:transparent;
  }
  .kw-feature-icon{
    width:56px;height:56px;
    margin:0 auto 14px;
    border-radius:14px;
    display:flex;align-items:center;justify-content:center;
    background:linear-gradient(135deg,var(--kw-navy),var(--kw-navy-2));
    color:#fff;
  }
  .kw-feature-icon svg{width:26px;height:26px;}
  .kw-feature.accent .kw-feature-icon{
    background:linear-gradient(135deg,var(--kw-orange),var(--kw-orange-2));
  }
  .kw-feature strong{
    display:block;
    color:var(--kw-navy);
    font-weight:700;
    font-size:.98rem;
    margin-bottom:2px;
  }
  .kw-feature span{
    color:var(--kw-gray);
    font-size:.82rem;
  }
  .kw-feature a{
    color:inherit;
    text-decoration:none;
  }

  /* Illustration panel */
  .kw-visual-wrap{
    position:relative;
    max-width:460px;
    margin-inline-start:auto;
    margin-inline-end:auto;
  }
  .kw-visual-card{
    background:#fff;
    border-radius:26px;
    border:1px solid var(--kw-line);
    box-shadow:0 30px 60px -30px rgba(14,27,63,.35);
    padding:34px 28px 0;
    position:relative;
    overflow:hidden;
  }
  .kw-visual-card .skel{
    height:12px;
    border-radius:6px;
    background:#eef0f6;
    margin-bottom:10px;
  }
  .kw-badge-247{
    position:absolute;
    top:26px;
    inset-inline-end:26px;
    width:64px;height:64px;
    border-radius:50%;
    background:#fff;
    border:2px dashed var(--kw-orange);
    display:flex;align-items:center;justify-content:center;
    font-weight:900;
    color:var(--kw-navy);
    font-size:.85rem;
    animation:spin 12s linear infinite;
  }
  .kw-badge-247 span{animation:spinback 12s linear infinite;display:block;}
  @keyframes spin{to{transform:rotate(360deg);}}
  @keyframes spinback{to{transform:rotate(-360deg);}}

  .kw-agent{
    position:relative;
    display:flex;
    justify-content:center;
    margin-top:10px;
  }

  .kw-floating-chip{
    position:absolute;
    bottom:18px;
    inset-inline-start:-14px;
    background:#fff;
    border:1px solid var(--kw-line);
    border-radius:14px;
    padding:10px 16px;
    box-shadow:0 14px 30px -12px rgba(14,27,63,.3);
    display:flex;
    align-items:center;
    gap:10px;
  }
  .kw-floating-chip .dot{
    width:10px;height:10px;border-radius:50%;
    background:#22c55e;
    box-shadow:0 0 0 4px rgba(34,197,94,.18);
  }
  .kw-floating-chip small{
    display:block;color:var(--kw-navy);font-weight:700;font-size:.78rem;
  }
  .kw-floating-chip span{color:var(--kw-gray);font-size:.72rem;}

  @media (max-width: 991px){
    .support-section{padding:60px 0;}
    .support-section h2{font-size:1.9rem;}
    .kw-visual-wrap{margin-top:50px;}
  }
  @media (max-width: 575px){
    .kw-feature-row{gap:10px;}
    .kw-feature{padding:16px 10px;flex:1 1 120px;}
  }
  .kawedma-pricing *{box-sizing:border-box;}
  .kawedma-pricing h1,
  .kawedma-pricing h2,
  .kawedma-pricing h3{font-family:'cairo',sans-serif;}
  .kawedma-pricing .mono{font-family:'cairo',monospace;}

  /* ---- Top status strip: reads like a server dashboard ---- */
  .kawedma-pricing .status-strip{
    background:var(--navy);
    color:#CFE0EE;
    font-family:'cairo',monospace;
    font-size:12.5px;
    letter-spacing:.02em;
    padding:9px 24px;
    display:flex;
    gap:28px;
    justify-content:center;
    flex-wrap:wrap;
  }
  .kawedma-pricing .status-strip span{display:flex;align-items:center;gap:7px;}
  .kawedma-pricing .dot{width:7px;height:7px;border-radius:50%;background:var(--teal);box-shadow:0 0 0 3px rgba(18,165,148,.18);animation:kwd-pulse 2.2s infinite;}
  @keyframes kwd-pulse{0%,100%{opacity:1;}50%{opacity:.45;}}

  /* ---- Hero ---- */
  .kawedma-pricing .hero{
    background:linear-gradient(180deg,var(--navy) 0%, var(--navy-2) 100%);
    color:#fff;
    padding:56px 24px 90px;
    text-align:center;
    position:relative;
    overflow:hidden;
  }
  .kawedma-pricing .hero::before{
    content:'';
    position:absolute; inset:0;
    background-image:
      linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
  }
  .kawedma-pricing .hero-inner{position:relative; z-index:1; max-width:760px; margin:0 auto;}
  .kawedma-pricing .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-family:'cairo',monospace; font-size:12.5px; color:#9FD8CE;
    background:rgba(18,165,148,.12); border:1px solid rgba(18,165,148,.35);
    padding:6px 14px; border-radius:999px; margin-bottom:22px;
  }
  .kawedma-pricing .hero h1{font-size:clamp(30px,4.4vw,46px); font-weight:700; line-height:1.15; margin:0 0 16px;font-family:'cairo',monospace;}
  .kawedma-pricing .hero p{font-size:17px; color:#B9C8D9; max-width:560px; margin:0 auto; line-height:1.6;font-family:'cairo',monospace;}
  .kawedma-pricing .hero .guarantee{
    margin-top:28px; display:inline-flex; gap:10px; align-items:center;
    font-size:13.5px; color:#CFE0EE; font-family:'cairo',monospace;
  }
  .kawedma-pricing .hero .guarantee svg{flex-shrink:0;}

  /* ---- Pricing grid ---- */
  .kawedma-pricing .wrap{max-width:1280px; margin:0 auto; padding:0 24px;}
  .kawedma-pricing .grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    margin-top:-56px;
    position:relative; z-index:2;
    padding-bottom:64px;
  }
  @media (max-width:1080px){ .kawedma-pricing .grid{grid-template-columns:repeat(2,1fr);} }
  @media (max-width:620px){ .kawedma-pricing .grid{grid-template-columns:1fr;} }

  .kawedma-pricing .card{
    background:var(--card);
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:28px 24px 30px;
    display:flex; flex-direction:column;
    box-shadow:0 1px 2px rgba(15,37,64,.04);
    position:relative;
    transition:transform .18s ease, box-shadow .18s ease;
  }
  .kawedma-pricing .card:hover{transform:translateY(-4px); box-shadow:0 16px 32px rgba(15,37,64,.12);}
  .kawedma-pricing .card.popular{border:2px solid var(--orange); padding-top:24px;}
  .kawedma-pricing .badge{
    position:absolute; top:-13px; left:24px;
    background:var(--orange); color:#fff;
    font-family:'cairo',monospace; font-size:11.5px; font-weight:700;
    letter-spacing:.04em; text-transform:uppercase;
    padding:5px 12px; border-radius:999px;
  }
  .kawedma-pricing .tag{
    font-family:'cairo',monospace; font-size:11px; letter-spacing:.06em;
    text-transform:uppercase; color:var(--muted); margin-bottom:10px;
  }
  .kawedma-pricing .card h3{font-size:21px; margin:0 0 8px; font-weight:700;}
  .kawedma-pricing .card .desc{font-size:13.5px; color:var(--muted); line-height:1.55; min-height:52px; margin-bottom:18px;}

  .kawedma-pricing .price-row{margin-bottom:6px;}
  .kawedma-pricing .strike{font-family:'cairo',monospace; color:#9AA5B8; text-decoration:line-through; font-size:14px;}
  .kawedma-pricing .period-was{font-size:12.5px; color:var(--muted); margin-left:4px;}
  .kawedma-pricing .price{display:flex; align-items:baseline; gap:8px; margin:2px 0 4px;}
  .kawedma-pricing .price .amt{font-family:'cairo',monospace; font-size:38px; font-weight:700; color:var(--ink);}
  .kawedma-pricing .price .amt::after{content:'_'; color:var(--orange); animation:kwd-pulse 1s steps(2) infinite;}
  .kawedma-pricing .price .per{font-size:13.5px; color:var(--muted);}
  .kawedma-pricing .renew-note{font-size:12px; color:var(--muted); margin-bottom:20px; line-height:1.5;}

  .kawedma-pricing .cta{
    display:block; text-align:center; text-decoration:none;
    background:var(--orange); color:#fff; font-weight:600; font-size:14.5px;
    padding:13px 18px; border-radius:9px; border:none; cursor:pointer;
    margin-bottom:22px; transition:background .15s ease;
  }
  .kawedma-pricing .cta:hover{background:var(--orange-dark);}
  .kawedma-pricing .cta.ghost{background:var(--navy);}
  .kawedma-pricing .cta.ghost:hover{background:var(--navy-2);}

  .kawedma-pricing ul.features{list-style:none; margin:0; padding:0; flex:1;}
  .kawedma-pricing ul.features li{
    display:flex; align-items:flex-start; gap:9px;
    font-size:13.8px; color:#374151; padding:8px 0;
    border-top:1px solid #F0F1F5;
  }
  .kawedma-pricing ul.features li:first-child{border-top:none;}
  .kawedma-pricing .new{color:var(--ink); font-weight:600;}
  .kawedma-pricing .check{
    flex-shrink:0; width:17px; height:17px; border-radius:50%;
    background:var(--orange); display:flex; align-items:center; justify-content:center;
    margin-top:1px;
  }
  .kawedma-pricing .check.plus{background:#3ca8e0;}
  .kawedma-pricing .check svg{width:9px; height:9px;}

  /* ---- Trust strip ---- */
  .kawedma-pricing .trust{
    background:#fff; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    padding:26px 24px;
  }
  .kawedma-pricing .trust-inner{
    max-width:1100px; margin:0 auto; display:flex; justify-content:space-between;
    flex-wrap:wrap; gap:20px; text-align:center;
  }
  .kawedma-pricing .trust-item{flex:1; min-width:180px;}
  .kawedma-pricing .trust-item .num{font-family:'cairo',monospace; font-weight:700; font-size:22px; color:var(--navy);}
  .kawedma-pricing .trust-item .lbl{font-size:12.5px; color:var(--muted); margin-top:2px;}

  /* ---- Comparison footnote ---- */
  .kawedma-pricing .footnote{
    max-width:900px; margin:0 auto; padding:48px 24px 72px; text-align:center;
  }
  section.kawedma-pricing {
    direction: rtl;
     background:var(--paper);
    color:var(--ink);
    
    -webkit-font-smoothing:antialiased;
}
section.section-gap.homepage-domain-search {
    padding: 100px 0px;
    background: var(--paper);
}
  .kawedma-pricing .footnote h4{font-size:17px; margin:0 0 10px;}
  .kawedma-pricing .footnote p{font-size:14px; color:var(--muted); line-height:1.65;}
  #order-standard_cart .sub-heading {
    text-align: right !important;
    border-bottom: 2px dashed #ec691c !important;
    border-top: none !important;
    margin-top: 0px;
    margin-bottom: 20px !important;
}