:root {
  --color-one: #10B981;
  --color-one-hover: #059669;
  --color-two: #059669;
  --white: #fff;
  --text-color: #1A1A1A;
  --transition: all .3s ease-in-out;
}
:root {
  scroll-behavior: smooth;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #10B981 transparent;
}
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: #10B981;
}
::selection {
  background: #10B981;
}
::selection {
  color: #fff;
  text-shadow: none;
}
html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1d1e20;
  overflow-x: hidden;
}
.main-header {
  margin-top: 0 !important;
}
body .theme-gap {
  padding: 48px 0px;
}
h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}
h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}
.container {
  max-width: 1208px;
}

img {
  max-width: 100%;
  height: auto;
}
ul {
  margin: 0;
  padding: 0;
}
ul li ,a{
  list-style: none;
  text-decoration: unset;
}
/*=======extraclasses==========*/

/*===============topbar============*/

.header-top{
  background: #10B981;
  padding: 8px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.right-top-bar span{
  color: var(--white);
  font-size: 14.5px;
  font-weight: 600;
}

.top-bar-links-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.top-bar-currency-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 700;
  padding: 5px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
}
.top-bar-currency-btn:hover {
  border-color: #ffffff;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.3);
}
.top-bar {
  display: flex;
  justify-content: flex-end;
}

.top-bar-dropdown {
  position: relative;
}
.dropdown-btn {
  background-color: unset;
  border: unset;
  padding: 0;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 500;
}

.top-bar .dropdown-btn i {
  margin-left: 5px;
  font-size: 12px;
}
.dropdown-menu-two {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 0px solid #ccc;
  border-radius: 5px;
  width: 200px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
  z-index: 999999999;
  transform: translateX(-50%);
}
.top-bar-dropdown.language .dropdown-menu-two {
  max-height: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.top-bar-dropdown.notification .dropdown-menu-two {
  width: 320px;
}

.top-bar-dropdown.account .dropdown-menu-two {
  width: 200px;
}
.top-bar-dropdown .dropdown-menu-two.open {
  display: block;
}

.top-bar .dropdown-menu-two li {
  padding: 8px 15px;
  cursor: pointer;
  transition: var(--transition);
}

.top-bar .dropdown-menu-two li a {
  font-size: 15px;
  color: #000;
  transition: var(--transition);
  font-weight: 500;
}

.top-bar .dropdown-menu-two li:hover {
  background-color: var(--color-one);
  border-radius: 5px;
}
.top-bar .dropdown-menu-two li:hover a {
  color: #fff;
}

.top-bar-dropdown.account ,.top-bar-dropdown.currency{
  margin-inline-end: 15px;
}
@media (max-width: 767px) {
  
  .top-bar-dropdown .dropdown-btn {
    display: inline-block;
    width: fit-content;
    text-align: left;
  }
.top-bar .dropdown-btn i {
   margin-left: 0px; 
}
  .top-bar-dropdown.open .dropdown-menu-two {
    display: block;
  }
  .top-bar-dropdown.notification .dropdown-menu-two {
  transform: unset;
}
}

/*===============topbar============*/

/* ======================
# Header
====================== */
.main-header {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #eee;
  z-index: 999;
}
.main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: unset;
  background-color: #fff;
  animation: headerSticky .95s ease forwards;
  box-shadow: var(--bs-box-shadow) !important;
  z-index: 99;
  max-width: 100%;
}
@keyframes headerSticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.main-header > * {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-header .logo-box a.logo {
  display: block;
  position: relative;
}
.main-header .logo-box a.logo img {
  max-height: 32px;
}
.main-header .menu-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-header .menu-bar .logo-bar {
  display: none;
}
.main-header .menu-bar > ul > li.dropdown > ul {
  display: none;
}
.main-header .menu-bar {
  display: block;
  margin: 0;
}
@media (min-width:992px) {
  .main-header .menu-bar > ul {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .main-header .menu-bar > ul > li {
    display: block;
  }
  .main-header .menu-bar > ul > li > a {
    font-size: 14.5px;
    padding: 20px 11px;
    color: #525252;
    display: block;
    transition: all 0.3s;
    font-weight: 600;
    white-space: nowrap;
  }
  .main-header .menu-bar > ul > li:hover > a {
    color: var(--color-one);
  }
  .main-header .menu-bar > ul > li.dropdown {
    position: relative;
  }
  .main-header .menu-bar > ul > li.dropdown > a > svg {
    transition: transform .3s ease;
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -ms-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    width: 24px;
    height: 24px;
  }
  .main-header .menu-bar > ul > li.dropdown > a > i {
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  -webkit-text-stroke: 0.6px;
}
  .main-header .menu-bar > ul > li.dropdown:hover > a > i {
    transform: rotate(180deg);
    color: var(--color-one) !important;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }
  .main-header .menu-bar > ul > li.dropdown:hover > a > svg {
    transform: rotate(180deg);
    fill: var(--color-one) !important;
    color: var(--color-one) !important;
  }
  .main-header .menu-bar > ul > li.dropdown > ul {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    background: #fff;
    padding: 10px;
  }
  .main-header .menu-bar > ul > li.dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  /* ==== megamenu  ==== */
  .main-header .menu-bar > ul > li.dropdown.megamenu.small {
    position: static;
  }
  .main-header .menu-bar > ul > li.dropdown.megamenu > ul {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: 100vw;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-top: 1px solid #f3f4f6;
    padding: 20px 0;
    z-index: 9999;
  }
  .main-header .menu-bar > ul > li.dropdown.megamenu:hover > ul {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
  .main-header .menu-bar > ul > li.dropdown.megamenu > ul > * {
    flex-shrink: 0;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
  }
  .main-header .menu-bar > ul > li.dropdown > ul > li > a + a {
    margin-top: 10px;
  }
 /* .main-header .menu-bar > ul > li.dropdown.megamenu.small.two > ul > * {
    flex: 0 0 auto;
    width: 33%;
  }*/
  .main-header > *:has(.dropdown.megamenu.big) {
    position: relative;
  }
  .main-header .menu-bar > ul:has(.dropdown.megamenu.big) {
    position: static;
  }
  /*.main-header .menu-bar>ul:has(.dropdown.megamenu.small){
  position: relative;
}
*/
  .main-header .menu-bar > ul > li.dropdown.megamenu.big {
    position: static;
  }
  .main-header .menu-bar > ul > li.dropdown.megamenu.big ul {
    width: 100%;
  }
  .main-header .menu-bar > ul > li.dropdown.megamenu.big ul > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .main-header .menu-bar .logo-bar {
    display: none;
  }
  .main-header .menu-bar > ul > li.dropdown > ul > li.back {
    display: none;
  }
}
.main-header .menu-bar .dropdown-items {
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.main-header .menu-bar .dropdown-items:hover {
  background: rgb(0 0 0 / 3%);
}
.main-header .menu-bar .dropdown-items .icon-boxs {
  display: block;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(130deg,#ecfdf5 -10%,#fff 50%,#f0fdf4 110%);
  border-radius: 6px;
}
.main-header .menu-bar .dropdown-items .icon-boxs i {
  font-size: 24px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  color: var(--color-one);
}

.main-header .menu-bar .dropdown-items .icon-boxs svg {
  height: 24px;
  min-width: 24px;
  vertical-align: middle;
  width: 24px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.main-header .menu-bar .dropdown-items:hover .icon-boxs svg {
  fill: var(--color-one) !important;
  color: var(--color-one) !important;
}
.main-header .menu-bar .dropdown-items .content-box {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 2px;
}
.main-header .menu-bar .dropdown-items .content-box .headings {
  display: flex;
  gap: 15px;
  /* justify-content: space-between; */
}
.main-header .menu-bar .dropdown-items .content-box .headings .text {
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: #000;
  transition: all 0.5s;
}
.main-header .menu-bar .dropdown-items .content-box .headings .off-badge {
  border-radius: 6px;
  padding: 4px 12px;
  color: #000;
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  height: fit-content;
  width: fit-content;
  white-space: nowrap;
  font-weight: 600;
  line-height: 1.3;
  background: linear-gradient(130deg,#ecfdf5 -10%,#fff 50%,#f0fdf4 110%);
  border: 1px solid rgb(0 0 0 / 4%);
}
.main-header .menu-bar .dropdown-items .content-box .contents {
  font-weight: 400;
  line-height: 24px;
  display: block;
  color: #252525;
  font-size: 13px;
  opacity: .8;
}

.main-header .header-right-btns {
  display: flex;
  gap: 10px;
  align-items: center;
}
.main-header .header-right-btns .headerbtn {
  display: block;
  border: 1px solid var(--color-one);
  color: #fff;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 15px;
  background: var(--color-one);
  line-height: 1;
  transition: all 0.3s;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
}
.main-header .header-right-btns .headerbtn:hover {
  background: var(--color-one-hover);
  color: #fff;
  border-color: var(--color-one-hover);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
  transform: translateY(-1px);
}
.main-header .header-right-btns .hamburger {
  width: 40px;
  height: 40px;
  display: none;
  border-radius: 5px;
  padding: 12px 10px;
  align-self: center;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background: #000;
  border: 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.main-header .header-right-btns .hamburger span {
  height: 2px;
  width: 83.33333333%;
  background: #fff;
  transition: all 400ms ease-in-out;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.main-header .header-right-btns .hamburger span:first-child {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
  animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
}
.main-header .header-right-btns .hamburger span:nth-child(2) {
  width: 100%;
  transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
  animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
}
.main-header .header-right-btns .hamburger span:last-child {
  width: 58.33333333%;
  transition: all 100ms ease-in-out;
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
  animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
}
@keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
.main-header .menu-bar > ul > li.dropdown > ul > li.menu_img a {
  display: block;
}
.main-header .menu-bar > ul > li.dropdown > ul > li.menu_img h5 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #1d1e20;
  margin-top: 30px;
}
.main-header .menu-bar > ul > li.dropdown > ul > li.menu_img h5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header .menu-bar > ul > li.dropdown > ul > li.menu_img p {
  color: #1d1e20;
}
@media (max-width:991px) {
  .main-header .menu-bar > ul > li.dropdown > ul > li.menu_img {
    display: none;
  }
  .main-header {
    padding: 10px 0;
  }
  .main-header .header-right-btns .hamburger {
    display: flex;
  }
  .main-header .menu-bar {
    position: fixed;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 9999;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    padding: 25px;
  }
  .main-header .menu-bar.active {
    display: flex;
  }
  .main-header .menu-bar > ul {
    display: flex;
    flex-direction: column;
  }
  .main-header .menu-bar > ul > li > a {
    font-size: 16px;
    color: var(--text-color);
    display: block;
    width: 100%;
  }
  .main-header .menu-bar > ul > li + li {
    border-top: 1px solid #cecece;
  }
  .main-header .menu-bar > ul > li:nth-child(2) {
    border-top: unset;
  }
  .main-header .menu-bar > ul > li > a {
    font-size: 16px;
    padding: 10px 0;
    color: #000;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
  }
  .main-header .menu-bar > ul > li.dropdown > a > i {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    display: block;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
  }
  .main-header .menu-bar > ul > li.dropdown > ul {
    display: none;
  }
  .main-header .menu-bar > ul > li.dropdown > ul.active {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    background: #fff;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    padding: 25px;
    flex-direction: column;
  }
  .main-header .menu-bar > ul > li.dropdown > ul > li.back {
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 15px;
  }
  .main-header .menu-bar > ul > li.dropdown > ul > li.back a {
    display: block;
    font: 16px;
    font-weight: 600;
    color: var(--text-color);
  }
  .main-header .menu-bar .logo-bar {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
  }
  .main-header .menu-bar .logo-bar .logo {
    display: block;
  }
  .main-header .menu-bar .logo-bar .logo img {
    max-height: 40px;
  }
  .main-header .menu-bar .logo-bar .close-menu-btn {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border: 0;
    background: #e7e7e7;
    color: #0d0d0d;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 26px;
  }
  .main-header .menu-bar .logo-bar {
    margin-bottom: 15px;
  }
}
.main-header .menu-bar .menu-right-mob {
  display: none;
}
@media (max-width:440px) {
  .main-header .menu-bar .menu-right-mob {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .main-header .menu-bar .menu-right-mob .headerbtn {
    display: block;
    border: 2px solid #161718;
    color: #161718;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    padding: 10px 16px;
    font-size: 16px;
    background: transparent;
    line-height: 1;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    text-transform: uppercase;
    text-align: center;
  }
  .main-header .menu-bar .menu-right-mob .headerbtn:hover {
    background: var(--color-one);
    color: #fff;
    border-color: var(--color-one);
  }
  .main-header .header-right-btns > .headerbtn {
    display: none;
  }
}
/* ----------------------------------------------------------------
    button
------------------------------------------------------------------- */
.btn-theme {
  line-height: 64px;
  font-size: 17px;
  padding: 0 40px;
  display: block;
  width: fit-content;
  font-weight: 600;
  transition: var(--transition);
}
.btn-theme i{
  font-size: 13px;
  text-shadow: 1px 0px 0px currentColor;
}
.btn1{
  background-color: var(--color-one);
  border-color: var(--color-one);
  color: var(--white);
  border-radius: 16px;
}
.btn1:hover{
  opacity: 0.9;
}
.plan-btn {
  border-color: var(--color-one);
  color: var(--color-one);
  line-height: 64px;
  font-size: 18px;
  padding: 0 40px;
  border-radius: 16px;
  width: 100%;
  border: 1px solid;
  text-align: center;
}
.plan-btn:hover{
  background-color: var(--color-one);
  border-color: var(--color-one);
  color: var(--white);
  line-height: 64px;
  font-size: 18px;
  padding: 0 40px;
  border-radius: 16px;
}

.service_btn{
  border: 1px solid #10101029;
  border-radius: 16px;
  color: var(--text-color);
  text-align: center;
}
.support-btn{
  background: linear-gradient(180deg,#FBD801 0%,#DABC00 100%);
  color: #222;
  border-radius: 16px;
  font-weight: 700;
}
.support-btn:hover {
  opacity: 0.9;
}
/* ----------------------------------------------------------------
    button
------------------------------------------------------------------- */
.main-heading h1{
  font-size: clamp(28px, 3px + 5vw, 48px);
  font-weight: 700;
  line-height: 1.3;
}
.sub-heading h2{
  font-size: clamp(24px, -1px + 5vw, 44px);
  font-weight: 700;
  line-height: 1.3;
}
.sub-heading p {
  font-size: 16px;
  line-height: 2;
  opacity: .8;
  color: var(--text-color);
}
.section-gap{
  padding: 60px 0px;
}

.bg-one{
  background:#FAFAFA;
}
.radius-1{
  border-radius:20px;
}
.position-relative{
  position: relative;
}
/* ----------------------------------------------------------------
    banner
------------------------------------------------------------------- */

.hero-banner{
  padding: 60px 0px;
}

.theme-offer{
  font-size: clamp(14px, 12px + 0.5vw, 16px);
  margin-bottom: 12px;
  color: #059669;
  padding: .5rem 1rem;
  background: linear-gradient(126deg,#dcfce7 0%,#f0fdf4 20%,#f0fdf4 80%,#dcfce7 100%);
  border-radius: 21px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.theme-offer i {
  font-size: 18px;
  color: var(--color-one);
}
.theme-offer {
  font-size: 15px;
  color: var(--color-one);
  font-weight: 500;
}
.semibold{
  font-weight: 600;
}
.banner_list {
  margin-top: 14px;
  color: #1f2937;
  position: relative;
  padding-inline-start: 32px;
  font-size: 16.5px;
  font-weight: 500;
  display: block;
  line-height: 1.4;
}
.banner_list .semibold {
  font-weight: 700;
  color: #111827;
}
.banner_list::before {
  content: '';
  background-image: url('../images/check.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  display: inline-block;
  position: absolute;
  top: 1px;
  inset-inline-start: 0;
}
.price_sec {
  margin-top: 26px;
  margin-bottom: 16px;
}
.price_sec span {
  font-size: 16px;
  color: #4b5563;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.price_sec .price-value {
  font-weight: 900;
  font-size: clamp(40px, 26px + 3vw, 56px);
  margin-top: 4px;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: #111827;
}
.price_sec .price-value sub {
  font-size: 20px;
  color: #4b5563;
  font-weight: 800;
}
/* ----------------------------------------------------------------
    bannner
------------------------------------------------------------------- */
/* ----------------------------------------------------------------
    main
------------------------------------------------------------------- */
.theme-offer-2{
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #059669;
  padding: 7px 1rem;
  background: linear-gradient(126deg,#dcfce7 0%,#f0fdf4 20%,#f0fdf4 80%,#dcfce7 100%);
  border-radius: 21px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1.6;
}
.hosting-service-card{
  padding: 20px;
  border: 1px solid #00000014;
  border-radius: 22px;
}
.service-one{
  border: 1px solid #00000014;
  transition: all 0.2s;
  border-radius: 22px;
  background-color: white;
  padding: 32px;
  position: relative;
  height: 100%;
}
.service-one:hover{
  box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 6%);
  transform: translatey(2px);
}

.service-one .icon{
  width: 60px;
  height: 60px;
  background: linear-gradient(126deg,#dcfce7 0%,#f0fdf4 20%,#f0fdf4 80%,#dcfce7 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-one .icon i {
  font-size: 30px;
  color: var(--color-one-hover);
}
.service-one h4 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 15px;
  color: var(--text-color);
}
.service-one p{
  opacity: .8;
}
.price_sec_service .price {
  font-size: 22px;
  font-weight: 700;
}
.price_sec_service sub{
  font-size: 14px;
  font-weight: 500;
}
.domain-search-card {
  padding: 30px;
  margin-top: 20px;
  background: #10B981;
  border-radius: 22px;
}
.domain-search-form{
  display: flex;
  align-items: center;
  position: relative;
}
.domain-search-form .form-input{
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgb(0 0 0 / 8%);
  font-size: 14px;
  height: 54px;
  color: #434343;
  font-weight: 500;
  padding: 15px 95px 15px 40px;
  pointer-events: auto;
  width: 100%;
}
.domain-search-form .btn-go {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 50%;
  padding: 0;
  width: 46px;
  height: 46px;
  inset-inline-end: 4px;
  pointer-events: auto;
  border: unset;
  background: #059669;
}
.domain-search-form i{
  position: absolute;
  left: 15px;
  font-size: 16px;
  text-shadow: 0px 0px 0px currentColor;
  opacity: .8;
}
.btn-go i{
  font-size: 26px;
  text-shadow: 1px 0px 0px currentColor;
  color: var(--white);
  position: relative;
  left: 0;
}

.list-one{
  display: flex;
  flex-wrap: wrap;
}
.list-one li {
  font-size: 16px;
  font-weight: 600;
  width: 50%;
  line-height: 35px;
  display: flex;
}
.list-one li i{
  color: var(--color-one);
  font-size: 18px;
}
hr{
  opacity: 0.08;
}
@media(max-width:767px){
  .list-one li {
  width: 100%;
}
}

.service2 {
  border: 1px solid rgb(0 0 0 / 8%);
  box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 2%);
  transition: all 0.2s;
  border-radius: 22px;
  background-color: white;
  padding: 40px 20px 20px 20px;
  height: 100%;
  text-align: center;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    315deg,
    #ecfdf5,
    transparent 20%,
    transparent 85%,
    #ecfdf5
  );
}
.service2 h4{
  font-size: 22px;
  font-weight: 600;
}
.service2 p{
  font-size: 15px;
  color: var(--text-color);
  opacity: .8;
}
.icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #a7f3d0;
  margin: auto;
  margin-top: 0;
}

.icon-box::before{
    content: "";
    position: absolute;
    inset: -10px;
    border: 1px solid #d1fae5;
    border-radius: 50%;
}
.icon-box i{
  font-size: 30px;
  color: var(--color-one);
  line-height: 50px;
}
.support-card{
  padding: 60px 80px;
  background: linear-gradient(
    90deg,
    #059669 0%,
    #10b981 15%,
    #059669 35%,
    #10b981 55%,
    #047857 75%,
    #065f46 90%,
    #047857 100%
);
}
.support-card.two{
  background: linear-gradient(
        135deg,
        #10b981 0%,
        #059669 30%,
        #047857 65%,
        #065f46 85%,
        #059669 100%
    );
    border-radius: 24px;
}
.support-card.three {
  background: var(--color-one);
  border-radius: 24px;
}

@media(max-width:767px){
  .support-card{
  padding: 20px 30px;
}
}
.bg-img{
  position: relative;
    overflow: hidden;
    background: #fff;
    z-index: 1;
}
.bg-img::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -250px;
    top: -100px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(16, 185, 129, 0.20) 0%,
        rgba(16, 185, 129, 0.10) 35%,
        rgba(16, 185, 129, 0) 70%
    );
    z-index: -1;
}

.bg-img::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(5, 150, 105, 0.25) 0%,
        rgba(5, 150, 105, 0.10) 40%,
        rgba(5, 150, 105, 0) 75%
    );
    z-index: -1;
}
.bg-img::before,
.bg-img::after {
    filter: blur(40px);
}

.service3{
  text-align: center;
  background: rgb(16 185 129 / 2%);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
}
.service3 .icon{
  width: 56px;
  height: 56px;
  margin: auto;
  background: #ecfdf5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service3 .icon i{
  font-size: 30px;
  color: var(--color-two);
}
.service3 h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
}

.service-4 {
  border-radius: 20px;
  border: 1px solid #ffffff73;
  height: 100%;
}
.service-4 h4 {
  font-size: 22px;
  font-weight: 700;
  padding: 8px 20px;
  color: var(--white);
  border-bottom: 1px solid #ffffff73;
  text-align: center;
}
.service-4 p {
  font-size: 15px;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
}

.features-list{
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 24px;
  color: #fff;
  overflow: hidden;
}
.service-5{
  border-inline-end: 1px solid rgb(255 255 255 / 20%);
  height: 100%;
}
.service-5 h4{
  font-size: clamp(1rem,0.8438rem + 0.5vw,1.125rem);
  font-weight: 700;
  padding: 20px 24px;
  background: rgb(255 255 255 / 2%);
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}
.br-top{
  border-top: 1px solid rgb(255 255 255 / 20%);
}
.service-5 .list-two {
  margin: 0;
  padding: 0px 0px 20px 24px;
}
.service-5 .list-two li {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  font-weight: 500;
  position: relative;
  padding-inline-start: 30px;
  line-height: 30px;
}
.service-5 .list-two li::before{
    content: "\F26E"; 
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--white);
    font-size: 18px;
    position: absolute;
    left: 0;
}
.Domain-bg.bg-img::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -400px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient( circle, rgba(5, 150, 105, 0.30) 0%, rgba(5, 150, 105, 0.12) 40%, rgba(5, 150, 105, 0) 75% );
  z-index: -1;
}
.Domain-bg.bg-img::before {
  content: "";
  position: absolute;
  width: 1000px;
  height: 500px;
  left: -400px;
  top: 100px;
  border-radius: 50%;
  background: radial-gradient( circle, rgba(16, 185, 129, 0.30) 0%, rgba(16, 185, 129, 0.15) 35%, rgba(16, 185, 129, 0.05) 60%, rgba(16, 185, 129, 0) 100% );
  z-index: -1;
}
.Domain-bg{
  position: relative;
  background-image: url('../images/dots.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden !important;
}

.domain-search-form {
  position: relative;
}
.domain-search-form input {
  background: var(--white);
  padding: 20px 20px 20px 30px;
  border: 1px solid #fff;
  border-radius: 8px;
  width: 100%;
  outline: none;
}
.domain-search-form button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translatey(-50%);
}

.domain-search-form.transfer .btngrp {
  position: absolute;
  display: flex;
  right: 0;
}
.domain-search-form.transfer .select_domain{
  background: var(--color-one);
  border: 1px solid var(--color-one);
  color: var(--white);
  font-weight: 600;
  border-radius: 10px 0px 0px 10px;
  border-right: 1px solid #ffffff54;
}
.domain-search-form.transfer button{
  position: unset;
  transform: unset;
  border-radius: 0px 10px 10px 0px;
}
.domain-search-form .btn1 {
  background-color: var(--color-one);
  border-color: var(--color-one);
  color: var(--white);
  border-radius: 8px;
  border: unset;
  line-height: 50px;
}
.domain-search-form svg {
  position: absolute;
  left: 10px;
}
input{
  outline: none;
}
.trans-bottom{
  font-size: 18px;
  font-weight: 600;
}
.trans-bottom span{
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.trans-bottom span i{
  font-size: 18px;
  color: var(--color-one);
}
.trans-bottom span a{
  margin-inline-start: 10px;
  color: var(--color-one);
  text-decoration: underline;
}
@media(max-width:767px){
  .domain-search-form input {
  padding: 20px 20px 60px 30px;
}
  .domain-search-form.transfer .btngrp {
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 4px;
  justify-content: center;
}
.domain-search-form.transfer svg {
  position: absolute;
  left: 10px;
  top: 27px;
}
}
.domain-card {
  padding: 32px;
  background-color: var(--white);
  border: 1px solid #E6E6E6;
  border-radius: 16px;
  height: 100%;
}
.domain-card.popular {
  position: relative;
  border: 3px solid var(--color-one);
}
.domain-card.popular::before {
  content: "Most Popular";
  position: absolute;
  top: -15px;
  left: -3px;
  right: -3px;
  height: 44px;
  background: linear-gradient(90deg, #10B981, #059669);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px 16px 0 0;
  border: 3px solid var(--color-one);
}
.domain-card h4{
  font-size: clamp(1.875rem,1.0938rem + 2.5vw,2.5rem);
  font-weight: 700;
}
.domain-card .price-sec {
  display: flex;
  align-items: end;
  gap: 15px;
}
.ori-price{
  font-weight: 700;
  font-size: 25px;
}
.price-sec .cutted_price{
  text-decoration: line-through;
  color: #00000082;
  font-weight: 500;
}
.color-1{
  color: var(--color-one);
}
.color-2{
  color: #39C032;
}
.color-3{
  color: var(--color-two);
}
.color-4{
  color: #E46560;
}
.color-5{
  color: #E89B4F;
}
.color-6{
  color:#3FC5B6;
}


.terms__content .title {
  font-size: 18px;
  margin-bottom: 8px;
}
.terms__content p {
  margin-bottom: 32px;
}
.list_two{
  padding: 0px 20px 20px 20px;
}
.list_two li{
  margin-top: 12px;
  color: #4D4D4D;
  position: relative;
  padding-inline-start: 28px;
  font-size: 15px;
  display: block;
  color: var(--white);
}
.list_two li::before {
  content: '';
  background-image: url('../images/check2.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  top: 2px;
  inset-inline-start: 0;
}
.domain-lists {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.domain-lists li {
  background: #fff;
  border-radius: 5px;
  padding: 18px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  transition: all .5s;
}
.domain-lists li:hover h5 {
  transform: scale(1.4);
}
.domain-lists li h5 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0px;
  color: var(--color-two);
  transition: all .5s;
}
.domain-lists li p {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0px;
}
.gap-y-25 {
  gap: 25px 0;
}
.list_two.dark li{
  color: #000;
}
/* ----------------------------------------------------------------
    login css
------------------------------------------------------------------- */
.login_page {
  height: 100vh;
  align-items: center;
  display: flex;
}
.register_page {
  background: #F4F5FF;
}
.login_form {
  padding: 48px 40px;
  background-color: white;
  border: 1px solid #D8DAE0;
  border-radius: 16px;
}
.register_page .login_form {
  padding: 48px 40px;
  background-color: white;
  border: 1px solid #D8DAE0;
  border-radius: 16px;
}
.login_form label {
  margin: 20px 0px 7px 0px;
  color: #5e636e;
  font-weight: 400;
}
.login_form .checkbox{
  color: #343434;
  font-weight: 500;
}
.login_form .inputs {
  display: block;
  width: 100% !important;
  padding: .85em 1.15em !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  background-color: #fff !important;
  font-size: 18px;
  vertical-align: middle;
  height: 48px !important;
  border: 1px solid #DADCE0;
  box-sizing: border-box;
  border-radius: 15px;
}
.reset_pass {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login-btn {
  background: linear-gradient(to right, #059669 0, #10b981 100%) !important;
  transition: all 0.2s;
  border-radius: 16px;
  color: var(--white);
  text-align: center;
}
.login-btn:hover {
  opacity: 0.9;
}
@media(max-width:480px) {
  .login_form {
    padding: 30px 20px;
    background-color: white;
    border: 1px solid #D8DAE0;
    border-radius: 16px;
  }
  .register_page .login_form {
    padding: 30px 20px;
  }
}
/* ----------------------------------------------------------------
    login css
------------------------------------------------------------------- */
/* ----------------------------------------------------------------
    plan css
------------------------------------------------------------------- */
.plan-card-one {
  border-radius: 22px;
  background-color: white;
  border: 1px solid rgb(0 0 0 / 8%);
  transition: all 0.2s;
  height: 100%;
}
.plan-card-one:hover{
  background-color:#F6F6F6;
}
.popular-plan{
  padding: 4px;
  background: var(--color-one);
  border-radius: 22px;
}
.popular-plan:hover .plan-card-one{
  background: var(--white);
}
.popular_text {
  text-align: center;
  width: 100%;
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  padding: 6px;
}
.plan_title{
  padding: 24px 16px;
}
.plan-card-one h4{
  font-size: clamp(20px, 4.5px + 3.5vw, 25px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}
.plan-card-one p {
  margin-bottom: 12px;
  color: var(--text-color);
  opacity: .8;
  display: block;
}
.plan-card-one .price-sec {
  font-size: clamp(24px, 4.5px + 3.5vw, 36px);
  font-weight: 700;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 6px;
  row-gap: 4px;
  line-height: 1.1;
}
.plan-card-one sub{
  font-size: 15px;
  font-weight: 500;
  margin-right: 2px;
  bottom: 0;
}
.plan-card-one label {
  font-size: 13px;
  opacity: 0.6;
}
.plan-border {
  border-bottom: 1px solid #E6E6E6;
  width: 100%;
}
.plan-card-one ul{
  padding:24px;
}
.plan-card-one ul li {
  position: relative;
  line-height: 2;
  font-size: 16px;
  font-weight: 400;
}
.plan-card-one ul li i {
  text-shadow: 0px 0px 0px currentColor;
  font-size: 16px;
  color: #383838;
}

.plan-card-two{
    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:24px;
    padding:28px;
}
.plan-card-two h4{
  font-size: 25px;
  font-weight: 600;
}
.plan-card-two .plan_features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.plan-card-two .plan_features li {
  min-width: 150px;
}
.plan-select {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.plan-card-two .price-sec {
  font-size: clamp(22px, 4.5px + 3.5vw, 25px);
  font-weight: 700;
}
.plan-card-two .price-sec sub {
  font-size: 14px;
}
.plan-card-two .plan-btn {
  line-height: 64px;
  font-size: 18px;
  padding: 0 20px !important;
  border-radius: 16px;
   width: unset;
}
.popular-dedi-plan{
  border: 3px solid var(--color-one);
  border-radius: 26px;
  position: relative;
}
.popular-dedi-plan::before {
  content: "POPULAR";
  position: absolute;
  left: -52px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: var(--color-one);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0px 18px;
  border-radius: 8px 8px 0 0;
  text-transform: uppercase;
}
/* ----------------------------------------------------------------
    plan css
------------------------------------------------------------------- */
/* ----------------------------------------------------------------
     testimonial css
------------------------------------------------------------------- */

.testimonial-card{
  position: relative;
  border: 1px solid rgb(0 0 0 / 8%);
  box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 2%);
  transition: all 0.2s;
  border-radius: 22px;
  padding: 32px !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

.testimonial-card::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
}

.testimonial-card.one::after{
  background: linear-gradient(135deg, #F0ECFF, #fff 30%);
}

.testimonial-card.two::after{
  background: linear-gradient(315deg, #F0ECFF, #fff 30%);
}
.title h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.stars i {
  color: var(--color-one);
  font-size: 16px;
}

.message {
  margin: 20px 0;
  color: var(--text-color);
  line-height: 1.7;
  font-size: 16px;
  opacity: .9;
  font-weight: 500;
}

.author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 48px;
  height: 48px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar i {
  color: #fff;
  font-size: 18px;
}

.info h5 {
  margin: 0;
  font-size: 15px;
}

.info span {
  font-size: 13px;
  color: #888;
}
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

@media(max-width:480px){
    .card-top {
    display: block;
}
.card-top {
    display: block;
    justify-content: space-between;
    align-items: center;
}
.stars{
    margin-top: 10px;
}
.testimonial-card {
  margin: 0px 10px;
}
}
/* ----------------------------------------------------------------
     testimonial css
------------------------------------------------------------------- */
/* ----------------------------------------------------------------
    accordion
------------------------------------------------------------------- */

.faq-items .accordion{
  border: 1px solid #00000014;
  border-radius: 16px;
}
.faq-items .accordion li {
  border-bottom: 1px solid #00000014;
  margin-bottom: 0;
  overflow: hidden;
}
.faq-items .accordion li:last-child {
  border-bottom: unset;
}
.faq-items .accordion li a {
  color: rgb(54, 54, 54) !important;
  cursor: pointer;
  display: flex;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  gap: 16px;
  -moz-box-pack: justify;
  justify-content: space-between;
  line-height: 24px;
  transition: all 0.3s;
  align-items: center;
  line-height: 1.2;
  padding: 15px 24px 15px 24px;
}
.faq-items .accordion li.active:first-child a {
  background: #ecfdf5;
  color: #065f46 !important;
  border-radius: 16px 16px 0px 0px;
}
.faq-items .accordion li.active a {
  background: #ecfdf5;
  color: #065f46 !important;
}
.faq-items .accordion li a img {
  width: 25px;
  transition: all 0.3s;
}
.faq-items .accordion li.active a img {
  transform: rotate(-180deg);
}
.faq-items .accordion li p {
  display: none;
  margin-bottom: 0;
  color: rgb(54, 54, 54);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  padding: 15px 24px 15px 24px;
}

/* ----------------------------------------------------------------
    accordion
------------------------------------------------------------------- */
/* ----------------------------------------------------------------

    03. Scroll top button

------------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  inset-inline-end: 10px;
  bottom: -40px;
  z-index: 99999;
  background: rgb(255, 255, 255);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: all 0.5s;
  cursor: pointer;
  border: 0;
  outline: unset;
  box-shadow: 0 2px 10px rgb(0 0 0 / 10%);
}

.scroll-top i {
  font-size: 30px;
  color: #3a3a3a;
  line-height: 0;
}
.scroll-top:hover {
  box-shadow: 0 2px 20px rgb(0 0 0 / 10%);
  transform: translateY(-5px);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 67px;
}


/* ----------------------------------------------------------------
   contact us
------------------------------------------------------------------- */
.contact-form {
  box-shadow: 0px 0px 120px 0px rgb(0 0 0 / 12%);
  padding: 32px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}
.contact-form label{
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 16px;
  display: block;
  text-align: start;
}

.contact-form .input_one{
  display: block;
  width: 100%;
  padding:10px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #3d3d3d;
  border-radius: 16px;
  border: 1px solid rgb(0 0 0 / 8%);
}

.flex-card{
  display: flex;
  align-items: start;
  gap: 20px;
}

/* ----------------------------------------------------------------
    Footer
------------------------------------------------------------------- */
.logo_footer img{
  max-height: 32px;
}

.social-links ul{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
}
.social-links ul li a{
  width: 35px;
  height: 35px;
  color: #212529;
  border: 1px solid;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .4s;
}
.social-links ul li a svg {
  width: 22px;
  transition: all .4s;
}
.social-links ul li a:hover {
  background:#212529;
}
.social-links ul li a:hover svg {
  fill: #fff;
}
.logo_footer ,.social-links{
  padding: 35px 0px;
}
.footer_links{
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.footer_link_title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
  color: #000;
}
.footer_link_list li a ,.footer_policies ul li a{
  color: #21250B;
  opacity: 0.75;
  transition: all 0.3s;
  font-size: 15px;
  margin-top: 12px;
  display: block;
}
.footer_link_list li a:hover ,.footer_policies ul li a:hover{
  opacity: 1;
}
.footer_policies ul{
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer_copyright{
  padding: 30px 0px;
  margin-top: 30px;
  border-top: 1px solid #eee;
  color: #21250B;
  opacity: 0.75;
  transition: all 0.3s;
  font-size: 15px;
  display: block;
}
.payment{
  padding: 30px 0px;
  margin-top: 30px;
  border-top: 1px solid #eee;
}
.payment ul{
  display: flex;
  align-items: center;
  gap: 8px;
}
@media(max-width:767px){
  .logo_footer ,.social-links{
    padding: 15px 0px;
    text-align: center;
  }
  .social-links ul {
    justify-content: center !important;
  }
  .footer_policies ul {
    justify-content: center !important;
    gap: 8px 14px !important;
  }
  .payment ul {
    justify-content: center !important;
    gap: 6px !important;
  }
  .footer_copyright p {
    text-align: center !important;
  }
}
/* ----------------------------------------------------------------
    Footer
------------------------------------------------------------------- */

/* ----------------------------------------------------------------
    Topbar Knowledgebase & Currency Switcher
------------------------------------------------------------------- */
.top-bar-kb-link {
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-inline-end: 18px;
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease-in-out;
}
.top-bar-kb-link:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #fff !important;
}
.top-bar-dropdown.currency .dropdown-btn {
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 600;
  color: #fff;
  transition: all 0.2s ease-in-out;
}
.top-bar-dropdown.currency .dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}
.top-bar-dropdown.currency .dropdown-menu-two {
  width: 170px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border: 1px solid #e5e7eb;
}
.top-bar-dropdown.currency .dropdown-menu-two li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #1f2937;
}

/* ----------------------------------------------------------------
    Knowledgebase Custom Styles
------------------------------------------------------------------- */
.kb-hero-search {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.kb-search-input {
  width: 100%;
  padding: 18px 24px 18px 54px;
  font-size: 17px;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  color: #1f2937;
  outline: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}
.kb-search-input:focus {
  border-color: var(--color-one);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}
.kb-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--color-one);
  pointer-events: none;
}
.kb-cat-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 30px 24px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.kb-cat-card:hover {
  border-color: var(--color-one);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.12);
}
.kb-cat-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #ecfdf5;
  color: var(--color-one);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.kb-credential-box {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 14px 18px;
  margin: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.kb-credential-box code {
  font-size: 15px;
  font-weight: 600;
  color: #065f46;
  font-family: monospace;
}
.btn-copy {
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid #10b981;
  background: #fff;
  color: #10b981;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-copy:hover {
  background: #10b981;
  color: #fff;
}
.kb-quick-link {
  color: #10b981;
  font-weight: 600;
  text-decoration: underline;
}

/* ----------------------------------------------------------------
    Policy & Legal Pages Styles
------------------------------------------------------------------- */
.policy-container {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}
.policy-section {
  margin-bottom: 36px;
}
.policy-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ecfdf5;
}
.policy-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-top: 18px;
  margin-bottom: 10px;
}
.policy-section p, .policy-section li {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 12px;
}
.policy-section ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.policy-section ul li {
  list-style: disc;
}
.policy-highlight-box {
  background: #ecfdf5;
  border-left: 4px solid #10b981;
  padding: 18px 24px;
  border-radius: 0 12px 12px 0;
  margin: 20px 0;
}
.policy-highlight-box p {
  margin-bottom: 0;
  color: #065f46;
  font-weight: 500;
}
@media (max-width: 767px) {
  .policy-container {
    padding: 24px;
  }
}

/* ----------------------------------------------------------------
    UltaHost Style Currency Selector Modal
------------------------------------------------------------------- */
.currency-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.currency-modal-backdrop.open {
  display: flex;
}
.currency-modal-content {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  animation: modalScaleUp 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes modalScaleUp {
  from { opacity: 0; transform: scale(0.95) translateY(15px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.currency-modal-header {
  padding: 24px 30px 16px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.currency-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.currency-modal-close {
  background: #f3f4f6;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.2s ease;
}
.currency-modal-close:hover {
  background: #e5e7eb;
  color: #111827;
}
.currency-search-wrap {
  padding: 0 30px 18px 30px;
  position: relative;
}
.currency-search-input {
  width: 100%;
  padding: 13px 20px 13px 44px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  background: #fafafa;
  transition: all 0.2s ease;
}
.currency-search-input:focus {
  background: #ffffff;
  border-color: var(--color-one);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.currency-search-wrap i {
  position: absolute;
  left: 46px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 16px;
}
.currency-grid-body {
  padding: 4px 30px 30px 30px;
  overflow-y: auto;
  max-height: 60vh;
}
.currency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .currency-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .currency-grid {
    grid-template-columns: 1fr;
  }
}
.currency-card-item {
  padding: 13px 18px;
  border-radius: 10px;
  border: 1px solid #f3f4f6;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.18s ease;
  font-size: 14.5px;
  font-weight: 600;
  color: #1f2937;
}
.currency-card-item:hover {
  background: #f0fdf4;
  border-color: var(--color-one);
  color: #065f46;
  transform: translateY(-1px);
}
.currency-card-item.active {
  background: #ecfdf5;
  border-color: var(--color-one);
  color: #059669;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}
.currency-card-item .curr-name {
  display: inline-block;
}
.currency-card-item .curr-symbol {
  color: #6b7280;
  font-weight: 600;
  font-size: 14px;
}
.currency-card-item.active .curr-symbol {
  color: #059669;
}

/* ----------------------------------------------------------------
    Knowledgebase Modern Sidebar & 100+ Q&A Layout
------------------------------------------------------------------- */
.kb-sidebar-container {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 991px) {
  .kb-sidebar-container {
    grid-template-columns: 1fr;
  }
}
.kb-sidebar-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 100px;
}
.kb-sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  padding: 8px 12px 14px 12px;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.kb-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kb-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
}
.kb-nav-item i {
  margin-right: 10px;
  font-size: 16px;
  color: #9ca3af;
  transition: all 0.2s ease;
}
.kb-nav-item .badge-count {
  background: #f3f4f6;
  color: #6b7280;
  font-size: 11.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}
.kb-nav-item:hover {
  background: #f0fdf4;
  color: #065f46;
  border-color: rgba(16, 185, 129, 0.2);
}
.kb-nav-item:hover i {
  color: var(--color-one);
}
.kb-nav-item.active {
  background: #ecfdf5;
  color: #059669;
  border-color: var(--color-one);
  font-weight: 700;
}
.kb-nav-item.active i {
  color: #059669;
}
.kb-nav-item.active .badge-count {
  background: var(--color-one);
  color: #ffffff;
}

.kb-content-area {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.kb-category-section {
  display: none;
}
.kb-category-section.active {
  display: block;
  animation: fadeIn 0.25s ease;
}
.kb-category-header {
  padding-bottom: 16px;
  margin-bottom: 22px;
  border-bottom: 2px solid #ecfdf5;
}
.kb-category-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}
.kb-category-header p {
  color: #6b7280;
  font-size: 14.5px;
  margin: 0;
}

.kb-faq-item {
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  margin-bottom: 12px;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.2s ease;
}
.kb-faq-item:hover {
  border-color: #d1fae5;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.06);
}
.kb-faq-question {
  padding: 16px 20px;
  font-size: 15.5px;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  background: #ffffff;
  transition: all 0.2s ease;
}
.kb-faq-question:hover {
  color: var(--color-one);
}
.kb-faq-question i {
  font-size: 14px;
  transition: transform 0.2s ease;
  color: #9ca3af;
}
.kb-faq-item.open .kb-faq-question {
  background: #f9fafb;
  color: var(--color-one);
}
.kb-faq-item.open .kb-faq-question i {
  transform: rotate(180deg);
  color: var(--color-one);
}
.kb-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  color: #4b5563;
  font-size: 14.5px;
  line-height: 1.75;
}
.kb-faq-item.open .kb-faq-answer {
  padding: 16px 20px 20px 20px;
  max-height: 800px;
}
.kb-badge-pay {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  background: #ecfdf5;
  color: #059669;
  margin-right: 6px;
}

/* ----------------------------------------------------------------
    Footer Contact Boxes Line (WhatsApp, Info & Support Emails)
------------------------------------------------------------------- */
.footer-contact-bar {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px 28px;
  margin-bottom: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.contact-box-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
  border-radius: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.contact-box-item:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
}
.contact-box-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.28);
}
.contact-box-icon.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.28);
}
.contact-box-info h5 {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 2px 0;
}
.contact-box-info p {
  font-size: 15.5px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.contact-box-item:hover .contact-box-info p {
  color: var(--color-one);
}

/* ----------------------------------------------------------------
    About Us CEO & Founder Section
------------------------------------------------------------------- */
.ceo-profile-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}
.ceo-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 20px auto;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid #ecfdf5;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
}
.ceo-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.ceo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
  font-weight: 700;
  font-size: 13.5px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
}
.ceo-profile-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}
.ceo-profile-card p.title {
  color: #059669;
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 16px;
}
.ceo-quote {
  font-style: italic;
  color: #4b5563;
  font-size: 14.5px;
  line-height: 1.7;
  background: #f9fafb;
  border-left: 3px solid #10b981;
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  text-align: left;
  margin-bottom: 16px;
}

/* ----------------------------------------------------------------
    Header Currency Selector Button (Beside Client Login)
------------------------------------------------------------------- */
.currency-header-btn {
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  color: #1f2937 !important;
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  white-space: nowrap !important;
  flex-shrink: 0;
}
.currency-header-btn:hover {
  background: #f0fdf4;
  border-color: var(--color-one);
  color: var(--color-one) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

/* ----------------------------------------------------------------
    Hero Section Large Starting Price
------------------------------------------------------------------- */
.price_sec {
  margin-top: 24px;
  margin-bottom: 14px;
}
.price_sec > span {
  font-size: 16px !important;
  color: #4b5563 !important;
  font-weight: 700 !important;
  text-transform: capitalize;
  display: block;
  margin-bottom: 4px;
}
.price_sec .price-value {
  font-size: clamp(40px, 26px + 3vw, 54px) !important;
  font-weight: 900 !important;
  color: #111827 !important;
  line-height: 1.1;
  margin-top: 2px;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  letter-spacing: -0.5px;
}
.price_sec .price-value sub {
  font-size: 19px !important;
  color: #4b5563 !important;
  font-weight: 700 !important;
  bottom: 0;
}
.price_sec .save-badge {
  background: #ecfdf5;
  color: #059669;
  font-size: 14px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.35);
  margin-left: 8px;
  vertical-align: middle;
}

/* ----------------------------------------------------------------
    Trustpilot & Google Review Badges
------------------------------------------------------------------- */
.review-badges-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}
.review-badge-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}
.review-badge-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: #10b981;
}
.review-badge-card .review-icon {
  font-size: 22px;
  display: flex;
  align-items: center;
}
.review-badge-card.trustpilot .review-icon {
  color: #00b67a;
}
.review-badge-card.google .review-icon {
  color: #ea4335;
}
.review-badge-card .review-content h6 {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 2px 0;
}
.review-badge-card .stars-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-badge-card.trustpilot .stars-rating i {
  color: #00b67a;
  font-size: 13px;
}
.review-badge-card.google .stars-rating i {
  color: #fbbc04;
  font-size: 13px;
}
.review-badge-card .score-text {
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  margin-left: 4px;
}

.review-source-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.review-source-badge.trustpilot {
  background: #ecfdf5;
  color: #00b67a;
  border: 1px solid rgba(0, 182, 122, 0.25);
}
.review-source-badge.google {
  background: #fef2f2;
  color: #ea4335;
  border: 1px solid rgba(234, 67, 53, 0.25);
}
.testimonial-card .card-top .title h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0;
}

/* ----------------------------------------------------------------
    Monthly / Yearly Billing Cycle Toggle Switch
------------------------------------------------------------------- */
.billing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 35px auto;
}
.toggle-cycle-btn {
  font-size: 15.5px;
  font-weight: 700;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.toggle-cycle-btn.active {
  color: #111827;
}
.billing-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  margin: 0;
}
.billing-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.billing-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e5e7eb;
  transition: 0.3s;
  border-radius: 30px;
  border: 1.5px solid #d1d5db;
}
.billing-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 2.5px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
}
.billing-switch input:checked + .billing-slider {
  background-color: var(--color-one);
  border-color: var(--color-one);
}
.billing-switch input:checked + .billing-slider:before {
  transform: translateX(23px);
}
.yearly-badge-save {
  background: #dcfce7;
  color: #15803d;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
  margin-left: 6px;
  border: 1px solid rgba(22, 163, 74, 0.3);
  vertical-align: middle;
}
.yearly-badge-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  margin-left: 8px;
  vertical-align: middle;
  align-self: center;
  flex-shrink: 0;
}
.yearly-domain-pill {
  display: inline-flex;
  align-items: center;
  background: #dcfce7;
  color: #15803d;
  font-size: 12.5px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 7px;
  border: 1.5px solid rgba(22, 163, 74, 0.45);
  letter-spacing: 0.2px;
  white-space: nowrap;
  line-height: 1.2;
}
.yearly-domain-pill i {
  color: #16a34a !important;
  font-size: 13px;
}
.yearly-save-pill {
  display: inline-flex;
  align-items: center;
  background: #dcfce7;
  color: #15803d;
  font-size: 12.5px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 7px;
  border: 1.5px solid rgba(22, 163, 74, 0.45);
  letter-spacing: 0.2px;
  white-space: nowrap;
  line-height: 1.2;
}
.yearly-save-pill i {
  color: #16a34a !important;
  font-size: 13px;
}
.social-links ul {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}
.social-links ul li a {
  border: 1.5px solid #10b981 !important;
  color: #10b981 !important;
  background: #f0fdf4 !important;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.social-links ul li a:hover {
  background: #10b981 !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}
.plan_features li i,
.list-one li i,
.plan-card-one .plan_features li i {
  color: #10b981 !important;
  font-size: 1.05rem;
  display: inline-block;
  vertical-align: middle;
}
.scroll-top, #scrolltoTop {
  display: none !important;
}
.main-header .logo-box a.logo img {
  max-height: 40px !important;
  width: auto;
}
.logo_footer a img, .logo_footer img {
  max-height: 44px !important;
  width: auto;
}

/* ================================================================
   MOBILE-ONLY RESPONSIVENESS & ZERO-OVERFLOW FIXES
   Strictly scoped to mobile & tablet screens (max-width: 991px).
   Desktop (min-width: 992px) is 100% untouched!
   ================================================================ */

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Header & Navigation on Mobile & Tablet */
  .main-header {
    padding: 10px 0 !important;
    overflow: visible !important;
  }
  .main-header .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
  }
  .main-header .header-right-btns > .headerbtn {
    display: none !important;
  }
  .main-header .header-right-btns {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
  }
  .currency-header-btn {
    padding: 6px 10px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }
  .main-header .header-right-btns .hamburger {
    display: flex !important;
    width: 38px !important;
    height: 38px !important;
    padding: 10px 8px !important;
  }
  /* Mobile Menu Drawer Reset */
  .main-header .menu-bar {
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  .main-header .menu-bar .container,
  .main-header .menu-bar .row {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .main-header .menu-bar .col-md-4 {
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    list-style: none !important;
  }
}

@media (max-width: 767px) {
  /* Hide giant background glow blobs on mobile to prevent 1000px bleed */
  .Domain-bg.bg-img::after,
  .Domain-bg.bg-img::before,
  .bg-img::after,
  .bg-img::before {
    display: none !important;
  }

  /* Plan Cards & Pricing Badges on Mobile (Exact desktop style: right next to price, stacked vertically) */
  .plan-card-one {
    border-radius: 18px !important;
  }
  .plan-card-one > div:first-child {
    padding: 22px 16px 14px 16px !important;
  }
  .plan-card-one .price-sec {
    font-size: clamp(22px, 5.5vw, 30px) !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
  }
  .yearly-badge-stack {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 3px !important;
    margin-left: 8px !important;
    margin-top: 0 !important;
    width: auto !important;
    flex-shrink: 0 !important;
    vertical-align: middle !important;
  }
  .yearly-domain-pill,
  .yearly-save-pill {
    display: inline-flex !important;
    align-items: center !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    padding: 2px 7px !important;
    border-radius: 6px !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
  }
  .yearly-domain-pill i,
  .yearly-save-pill i {
    font-size: 11px !important;
  }
  .billing-toggle-wrapper {
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 25px !important;
  }

  /* Footer Layout on Mobile */
  .footer_links .row > div {
    margin-bottom: 20px;
  }
  .footer-contact-bar .contact-box-item {
    margin-bottom: 8px;
  }
  .footer_policies ul {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px 14px !important;
  }
  .payment ul {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px !important;
  }
  .footer_copyright p {
    text-align: center !important;
  }
}

@media (max-width: 576px) {
  .main-header .logo-box a.logo img {
    max-height: 32px !important;
  }
  .currency-header-btn {
    padding: 5px 8px !important;
    font-size: 12px !important;
  }
  .currency-header-btn i.bi-currency-exchange {
    font-size: 13px !important;
  }

  /* Domain & AI Search Form Responsive Layout */
  .domain-search-form {
    display: flex !important;
    flex-direction: column !important;
    padding: 10px !important;
    border-radius: 12px !important;
    position: relative !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }
  .domain-search-form i.bi-search,
  .domain-search-form i.bi-robot,
  .domain-search-form svg {
    position: absolute !important;
    left: 20px !important;
    top: 26px !important;
    transform: translateY(-50%) !important;
  }
  .domain-search-form input.inputs,
  .domain-search-form input[name="domain"],
  .domain-search-form #aiIdeaInput {
    width: 100% !important;
    padding: 12px 12px 12px 42px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
  }
  .domain-search-form button,
  .domain-search-form button.btn-theme,
  .domain-search-form #aiSubmitBtn {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 10px !important;
    justify-content: center !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
    line-height: normal !important;
    height: auto !important;
  }
}