: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: "DM Sans", var(--fallback-fonts);
}

/* Colors & Theme Variables (HostCreed Premium Remastered) */
:root {
  --color-main: #0A48B3;
  /* Brand Blue */
  --color-main-hover: #083A91;
  /* Darker Brand Blue */
  --color-main-two: #1A5DD4;
  /* Lighter Blue Gradient Stop */
  --color-accent: #FF3366;
  /* Vivid Accent (e.g., Sale badges) */
  --white: #fff;
  --dark-text: #051A3B;
  /* Deep Blue-Black for Text */
  --light-bg: #F4F7FB;
  /* Very Soft Blue-Grey Background */
  --bg-gradient: linear-gradient(135deg, var(--color-main) 0%, var(--color-main-two) 100%);
  --box-shadow-premium: 0px 15px 40px rgba(10, 72, 179, 0.08);
  --box-shadow-hover: 0px 20px 50px rgba(10, 72, 179, 0.12);
  --font-remixicon: remixicon;
  --font-bootstrap-icons: bootstrap-icons;
  --border-color: rgba(10, 72, 179, 0.08);
  --border-radius-card: 16px;
  --border-radius-btn: 6px;
  /* Changed from 50px to slightly rounded rectangle */
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/* ================================
    Global Element Styling
  ================================ */
.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: rgba(10, 72, 179, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.5s;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  outline: unset;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.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: 600 !important;
  line-height: 1.5;
  padding: 10px 24px;
  border-radius: 8px;
  position: relative;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  outline: unset;
  box-shadow: 0 4px 12px rgba(10, 72, 179, 0.08);
  white-space: nowrap;
}

.btns i {
  font-size: 16px;
}

.btns.pill {
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.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);
  background: var(--color-main);
  color: #fff;
}

.btns.one:hover {
  background: var(--color-main-hover);
  color: #fff;
  /* Removed transform: translateY(-2px) */
  box-shadow: 0 6px 18px rgba(10, 72, 179, 0.2);
}

.btns.two {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: transparent;
  color: #fff;
}

.btns.two:hover {
  border-color: #fff;
  background-color: #fff;
  color: var(--color-main);
  transform: translateY(-2px);
}

.btns.three {
  border-color: var(--color-main);
  color: var(--color-main);
  background: transparent;
  padding: 10px 24px;
  min-height: 44px;
}

.btns.three:hover {
  background: rgba(10, 72, 179, 0.05);
  border-color: var(--color-main-hover);
  color: var(--color-main-hover);
  /* Removed transform: translateY(-2px) */
  box-shadow: none;
}

.btns.four {
  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;
}

.topbar ul {
  display: inline-flex;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.topbar .left-topbar ul li {
  display: inline-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: #667093;
  transition: all .4s;
}

.topbar .topbar-right ul li span {
  font-size: 15px;
  color: #667093;
  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: #667093;
  font-size: 16px;
  transition: all .4s;
  margin-inline-end: 5px;
}

.topbar ul li .currency button i {
  color: #667093;
  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: #667093;
  position: relative;
  padding: 0;
}

.topbar .dropdown-btn i {
  margin-left: 5px;
  font-size: 12px;
}

.topbar .dropdown-menus {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  min-width: 220px;
  width: max-content;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  z-index: 10000;
  list-style: none;
  display: flex !important;
  flex-direction: column !important;
  display: none !important;
  /* Managed by hover/open classes below */
}

.topbar .top-bar-dropdown:hover .dropdown-menus,
.topbar .top-bar-dropdown.open .dropdown-menus {
  display: flex !important;
}

/* Fix for language dropdown which was spreading horizontally */
.topbar .dropdown-menus li {
  width: 100% !important;
  display: block !important;
  padding: 0 !important;
  border: none !important;
  float: none !important;
}

.topbar .dropdown-menus li a {
  display: flex !important;
  padding: 10px 20px !important;
  width: 100% !important;
  color: #444 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: background 0.2s;
  align-items: center;
}

.topbar .dropdown-menus li:hover {
  background-color: #f8f9fa !important;
}

.topbar .top-bar-dropdown:hover .dropdown-menus {
  display: block !important;
}

/* Enhanced Sidebar & List Items */
.list-group-item {
  border: 1px solid #edf2f7 !important;
  padding: 12px 20px !important;
  font-size: 14px;
  color: #4a5568 !important;
  transition: all 0.2s;
}

.list-group-item.active {
  background: linear-gradient(135deg, var(--color-main) 0%, #0056b3 100%) !important;
  border-color: transparent !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 10px !important;
  margin: 4px 8px;
  box-shadow: 0 8px 16px rgba(10, 72, 179, 0.25);
  display: flex !important;
  align-items: center !important;
}

.list-group-item.active i {
  color: #fff !important;
}

.list-group-item.active i {
  color: #fff !important;
}

.list-group-item i {
  width: 24px;
  font-size: 16px;
  margin-right: 12px;
  color: #718096;
}

/* Modern Knowledgebase & Ticket Departments */
.kb-category-list,
.ticket-dep-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.kb-item,
.dept-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
  text-decoration: none !important;
}

.kb-item:hover,
.dept-item:hover {
  border-color: var(--color-main);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}

/* Fix DataTables styling */
.dataTables_wrapper .dataTables_filter {
  float: right;
  margin-bottom: 25px;
}

.dataTables_wrapper .dataTables_filter input {
  width: 250px !important;
  height: 42px !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  background-color: #f7fafc !important;
  padding: 0 15px 0 35px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a0aec0'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'%3E%3C/path%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 10px center !important;
  background-size: 18px !important;
}

/* Support Ticket Layout Enhancements */
.custom-form-group .form-label {
  font-weight: 600;
  color: #4a5568 !important;
  margin-bottom: 8px;
  font-size: 14px;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  transition: 0.3s;
  z-index: 5;
}

.input-with-icon .form-control {
  padding-left: 45px !important;
}

.form-control,
.form-select {
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 12px 15px !important;
  background-color: #f8fafc !important;
  font-size: 14px !important;
  color: #2d3748 !important;
  /* Darker text for visibility */
  transition: all 0.2s !important;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #edf2f7 !important;
  color: #4a5568 !important;
  cursor: not-allowed;
  opacity: 1;
  /* Override bootstrap opacity */
  border-color: #cbd5e0 !important;
}

/* Markdown Editor Tweaks */
.md-header .btn {
  border: 1px solid #e2e8f0 !important;
  background: #fff !important;
  color: #4a5568 !important;
}

.md-header .btn.active,
.md-header .btn:hover {
  background: var(--color-main) !important;
  color: #fff !important;
}

.md-header .btn-primary {
  background: var(--color-main) !important;
  color: #fff !important;
  border-color: var(--color-main) !important;
}

.form-control:focus,
.form-select:focus {
  background-color: #fff !important;
  border-color: var(--color-main) !important;
  box-shadow: 0 0 0 4px rgba(10, 72, 179, 0.05) !important;
}

.table thead th {
  background: #f8fafc !important;
  font-weight: 700 !important;
  color: #4a5568 !important;
  border-bottom: 2px solid #e2e8f0 !important;
  padding: 15px 20px !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
}

.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;
}

/* Handled above */

.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: inline-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
------------------------------------------------------------------- */
.homepage-transparent-topbar {
  background-color: transparent !important;
  border-bottom: 1px solid rgba(10, 72, 179, 0.08) !important;
}

.homepage-transparent-header {
  background-color: transparent !important;
  border-bottom: 1px solid rgba(10, 72, 179, 0.08) !important;
}

.header-sticky.homepage-transparent-header {
  background-color: #fff !important;
}

.main-header {
  background-color: #fff;
  height: 80px;
  position: relative;
  transition: height .5s ease-in;
  border-bottom: 1px solid var(--border-color);
}

.header-sticky {
  animation: headerSticky .95s ease forwards;
  position: fixed;
  z-index: 14;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 100ms ease-in-out, background-color 200ms ease-in-out;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  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: 30px;
}

/* 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: 32px;
  }

  .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: rgb(76, 175, 80);
    color: rgb(255, 255, 255);
    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: 12px;
    padding: 32px 0px;
    position: absolute;
    top: 67px;
    left: 0px;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    box-shadow: var(--box-shadow-premium);
  }

  .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: #667093;
    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(76, 175, 80);
    color: rgb(255, 255, 255);
    -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(76, 175, 80);
    color: rgb(255, 255, 255);
    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(76, 175, 80);
    color: rgb(255, 255, 255);
    -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: 80px 0 20px;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

.main-footer .company-info .logo {
  display: inline-block;
  margin-bottom: 25px;
}

.main-footer .company-info .logo img {
  max-height: 40px;
}

.main-footer .company-info p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 25px 0;
  color: #64748b;
}

.main-footer .company-info .social-info {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.main-footer .company-info .social-info a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #0f172a;
  font-size: 16px;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.main-footer .company-info .social-info a:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: var(--color-main);
  transform: translateY(-2px);
}

.main-footer .footer-list h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 25px 0;
  color: #0f172a;
  letter-spacing: -0.3px;
}

.main-footer .footer-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-footer .footer-list ul li {
  margin-bottom: 12px;
}

.main-footer .footer-link-hover {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.main-footer .footer-link-hover:hover {
  color: var(--color-main) !important;
}

.main-footer .footer-link-hover::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--color-main);
  transition: width 0.3s ease;
}

.main-footer .footer-link-hover:hover::after {
  width: 100%;
}

.copy-right-info {
  padding: 25px 0;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.copy-right-info p {
  text-align: left;
  margin: 0;
  font-size: 14px;
  color: #94a3b8;
}

.footer-payment-methods {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.footer-payment-methods img {
  height: 25px;
  opacity: 0.8;
}

/* ============================================
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;
}

@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: #667093;
}

.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: 600;
}

.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: #667093;
  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: #667093;
}

.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: #667093;
  margin-bottom: 0;
}

.main-banner .inner-content.center p {
  text-align: center;
}

.home-banner-swiper .swiper-slide {
  height: auto;
}

.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: #667093;
  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: #667093;
}

.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;
}

.section-gap.pt-20 {
  padding-top: 20px;
}

.bg1 {
  background: #FBFBFB;
}

.bg2 {
  background: #E5F5FF;
}

.bg3 {
  background: #F7F7FF;
}

/* ----------------------------------------------------------------
    Section Header
------------------------------------------------------------------- */
.section-header {
  position: relative;
}

.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: 24px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  box-shadow: var(--box-shadow-premium);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.plans-design-one:hover {
  box-shadow: none;
  border-color: var(--border-color);
}

.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: 12px;
  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: #667093;
}

.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;
}

.plans-design-one ul li {
  position: relative;
  font-size: 16px;
  color: #081131;
  padding-left: 36px;
  line-height: 24px;
}

.plans-design-one ul li+li {
  margin-top: 12px;
}

.plans-design-one ul li i {
  position: absolute;
  left: 0;
  top: 50%;
  line-height: 0;
  font-size: 21px;
  opacity: 0.7;
}

.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 .ib-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--dark-text);
  border: 1px solid #eaebf2;
  border-radius: 50%;
  font-size: 28px;
  transition: all 0.3s ease;
}

.icon-box:hover .ib-icon {
  border-color: var(--color-main);
  color: var(--color-main);
  background: rgba(10, 72, 179, 0.04);
}

.icon-box h3 {
  font-size: 18px;
  color: var(--dark-text);
  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;
}

.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-right: 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 {
  background-color: var(--white);
  border: 1px solid #eaebf2;
  padding: 30px 24px;
  border-radius: 12px;
  position: relative;
  z-index: 10;
  box-shadow: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.service-one:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--color-main);
  background: #fcfcfd;
}

.service-one .icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--dark-text);
  font-size: 32px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.service-one:hover .icon {
  color: var(--color-main);
}

/* Large custom icon for Make your Website Fast & Protect Your Website */
.plan-description .large-feature-icon {
  width: 140px;
  height: 140px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fcfcfd;
  color: var(--color-main);
  border: 1px solid #eaebf2;
  border-radius: 24px;
  font-size: 60px;
  transition: all 0.4s ease;
  transform: rotate(-3deg);
}

.plan-description:hover .large-feature-icon {
  transform: rotate(0deg) scale(1.05);
  border-color: var(--color-main);
  background: rgba(10, 72, 179, 0.03);
}

.service-one .content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--dark-text);
}

.service-one .content p {
  font-size: 14px;
  line-height: 1.6;
  color: #667093;
  margin: 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;
}

.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: left;
  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 {
  padding: 35px 30px;
  background-color: var(--white);
  border-radius: var(--border-radius-card);
  box-shadow: 0 10px 30px rgba(10, 72, 179, 0.05);
  border: 1px solid var(--border-color);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.testimonial-card .about-author {
  margin-bottom: 20px;
}

.testimonial-card .author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 5px;
}

.testimonial-card .author-post {
  font-size: 14px;
  color: var(--color-main);
  font-weight: 500;
}

.testimonial-card .detail {
  font-size: 15px;
  line-height: 1.7;
  color: #667093;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-card .customer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(10, 72, 179, 0.08);
}

.testimonial-card .customer .img img {
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(10, 72, 179, 0.1);
}

.testimonial-card .customer .star {
  display: flex;
  flex-direction: column;
}

.testimonial-card .customer .star ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 3px;
  color: #FFA800;
  font-size: 14px;
}

.testimonial-card .customer .star p {
  margin: 5px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-text);
}

.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;
}

.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;
}

.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: 27px;
  font-weight: 600;
  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;
}

.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;
}

.login-content span {
  font-size: 12px;
  margin-top: 5px;
  font-weight: 400;
}

.login-content span label {
  border-bottom: 2px solid #0fbd91;
}

.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;
}

.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: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  border: 1px solid rgba(10, 72, 179, 0.08);
  /* Updated to softer border */
  border-radius: 12px;
  padding: 20px 15px;
  background: #f8fafc;
  transition: all 0.3s ease;
  cursor: grab;
}

.domain-tlds:active {
  cursor: grabbing;
}

.domain-tlds span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 100%;
  border-bottom: 1px solid rgba(10, 72, 179, 0.08);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.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 .swiper-wrapper {
  transition-timing-function: linear !important;
}

.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;
  }
}

/* Ensure vertical spacing between stacked plan cards on small screens (mobile)
   This mirrors the desktop gap so pricing cards don't stick together when stacked */
@media (max-width: 767px) {
  .section-gap .row>[class*="col-"] {
    margin-bottom: 20px;
  }

  /* Remove extra bottom margin inside plan card so spacing is driven by the column */
  .section-gap .plans-design-one {
    margin-bottom: 0 !important;
  }
}

/* =========================================
   UltaHost Style Minimalist Plan Card 
========================================= */
.premium-plan-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px 30px;
  border: 1px solid #eaebf2;
  transition: all 0.3s ease;
  box-shadow: none;
  height: 100%;
  text-align: center !important;
  position: relative;
  overflow: hidden;
}

.premium-plan-card:hover {
  background: #fcfcfd;
  border-color: #eaebf2;
}

.premium-plan-card .text-center {
  text-align: center !important;
  position: relative;
  z-index: 2;
}

/* Watermark Icon at top right */
.premium-plan-card .icon-wrapper {
  display: flex;
  position: absolute;
  top: -10px;
  right: -10px;
  width: 120px;
  height: 120px;
  background: transparent;
  color: var(--color-main);
  opacity: 0.04;
  align-items: flex-start;
  justify-content: flex-end;
  margin: 0;
  border-radius: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 0;
}

.premium-plan-card .icon-wrapper i {
  font-size: 100px !important;
}

.premium-plan-card:hover .icon-wrapper {
  transform: scale(1.05);
  opacity: 0.06;
}

.premium-plan-card h3 {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.premium-plan-card .plan-subtitle {
  color: #6c757d;
  font-size: 13px;
  margin-bottom: 25px;
  min-height: 40px;
  line-height: 1.6;
}

.premium-plan-card .price-wrapper {
  margin-bottom: 20px;
}

.premium-plan-card .price-wrapper h4 {
  font-size: 38px;
  color: #1a1a1a;
  font-weight: 800;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0;
  line-height: 1;
}

.premium-plan-card .price-wrapper small {
  font-size: 14px;
  color: #6c757d;
  font-weight: 500;
  margin-left: 5px;
  margin-bottom: 4px;
}

/* Outline Capsule Button */
.premium-plan-card .btns {
  border-radius: 50px;
  font-weight: 700;
  padding: 10px 15px;
  display: block;
  width: 100%;
  background: transparent !important;
  color: var(--color-main) !important;
  border: 1px solid var(--color-main) !important;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: none !important;
}

.premium-plan-card .btns:hover {
  background: var(--color-main) !important;
  color: #fff !important;
  box-shadow: none !important;
  transform: none !important;
}

.premium-plan-card .plan-features {
  padding-top: 25px;
  margin-top: 25px;
  border-top: 1px solid #eaebf2;
  list-style: none;
  padding-left: 0;
}

.premium-plan-card .plan-features li {
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

/* Minimalist Outline Icons for List Items (UltaHost Style) */
.premium-plan-card .plan-features li i,
.premium-plan-card .plan-features li svg {
  color: #4a5568;
  background: transparent;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-size: 16px;
  min-width: 20px;
  margin-top: 1px;
}

/* =========================================
   UltaHost Inspired Remaster - Features & UI
========================================= */
.ultahost-feature-text .badge-soft-primary {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(10, 72, 179, 0.08);
  color: var(--color-main);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(10, 72, 179, 0.1);
  letter-spacing: 0.5px;
}

.ultahost-feature-text h2 {
  line-height: 1.25 !important;
  color: #1a1a1a !important;
}

.ultahost-feature-text .feature-list-inline li {
  font-size: 15px;
  font-weight: 600;
  color: #4a5568;
  display: flex;
  align-items: center;
}

.ultahost-feature-text .feature-list-inline li i {
  font-size: 18px;
}

/* UI Mockups Abstract Drawing & Image Overlays */
.ultahost-ui-mockup {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ultahost-ui-mockup.with-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  max-height: 480px;
  width: 100%;
  object-fit: cover;
}

.control-mockup.with-image {
  justify-content: flex-start;
}

/* Floating Badges */
.floating-badge.badge-amd {
  position: absolute;
  top: 40px;
  left: 20px;
  width: 150px;
  animation: float-speed 5s ease-in-out infinite reverse;
  border: 1px solid #eaebf2;
}

.floating-speedometer {
  position: absolute;
  bottom: 50px;
  left: -20px;
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px 20px;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 15px 35px rgba(10, 72, 179, 0.1) !important;
  animation: float-speed 6s ease-in-out infinite;
  border: 1px solid #eaebf2;
}

.floating-speedometer .speed-arc {
  width: 120px;
  height: 60px;
  overflow: visible;
}

.floating-speedometer .needle {
  width: 4px;
  height: 35px;
  background: #a0aec0;
  position: absolute;
  top: 55px;
  left: calc(50% - 2px);
  border-radius: 2px;
  transform-origin: bottom center;
  transform: rotate(35deg);
}

.floating-protected {
  position: absolute;
  top: 30px;
  right: 20px;
  width: 160px;
  height: auto;
  padding: 30px 20px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #5044f5;
  /* UltaHost deep violet-blue */
  box-shadow: 0 20px 40px rgba(80, 68, 245, 0.3) !important;
  animation: float-up-down 5s ease-in-out infinite reverse;
}

@keyframes float-up-down {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes float-speed {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Feature Grid Cards */
.bg-light-gray {
  background-color: #fafbfc;
}

.ultahost-feature-card {
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  text-align: left !important;
}

.ultahost-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(10, 72, 179, 0.08);
  border-color: rgba(10, 72, 179, 0.1) !important;
}

.bg-soft-primary {
  background-color: rgba(10, 72, 179, 0.08);
}

/* =========================================
   USP Sections - Support & Privacy/Freedom
========================================= */

/* Freedom of Speech badge */
.badge-dark-freedom {
  display: inline-block;
  padding: 6px 16px;
  background: #1a1a2e;
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Privacy section subtle dark accent */
.usp-privacy-section {
  background: #fafbfc;
}

/* Freedom feature list items */
.freedom-feature-list .freedom-item {
  padding-bottom: 16px;
  border-bottom: 1px solid #eaebf2;
}

.freedom-feature-list .freedom-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.freedom-feature-list .freedom-icon {
  transition: transform 0.3s ease;
}

.freedom-feature-list .freedom-item:hover .freedom-icon {
  transform: scale(1.1);
}

/* Live chat bubble widget */
.chat-bubble {
  display: block;
  line-height: 1.5;
}

/* Floating badge generic (no positional — that's inline) */
.floating-badge {
  position: absolute;
  z-index: 10;
  pointer-events: none;
}

/* Ensure floating-speedometer used in support section has right animation */
.speed-mockup .floating-speedometer,
.floating-speedometer {
  z-index: 10;
}

/* =========================================
   Trust Bar (replaces old icon-box section)
========================================= */
.trust-bar-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.trust-bar-mid {
  padding: 0 30px;
  border-left: 1px solid #eaebf2;
  border-right: 1px solid #eaebf2;
}

@media (max-width: 991px) {
  .trust-bar-mid {
    padding: 0;
    border: none;
    border-top: 1px solid #eaebf2;
    border-bottom: 1px solid #eaebf2;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.trust-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(10, 72, 179, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(10, 72, 179, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-main);
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(10, 72, 179, 0.05);
}

/* =========================================
   CSS Speed Stats Mockup (Section 1)
========================================= */
.usp-alt-bg {
  background: #fafbfc;
}

.usp-css-mockup {
  position: relative;
  padding: 20px 0 20px 30px;
}

.usp-main-card {
  background: #fff;
  border: 1px solid #eaebf2;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(10, 72, 179, 0.05);
}

.usp-stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 72, 179, 0.06);
  border-radius: 50px;
  padding: 8px 16px;
  flex: 1;
}

.usp-stat-box {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  background: #fafbfc;
  border-radius: 12px;
  border: 1px solid #eaebf2;
}

.usp-float-badge {
  position: absolute;
  background: #fff;
  border: 1px solid #eaebf2;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(10, 72, 179, 0.09);
  z-index: 5;
  min-width: 140px;
  text-align: center;
}

.usp-badge-top-right {
  top: -10px;
  right: -10px;
  animation: float-speed 5s ease-in-out infinite;
}

.usp-badge-bottom-left {
  bottom: -10px;
  left: 10px;
  animation: float-speed 7s ease-in-out infinite reverse;
}

/* =========================================
   Server Dashboard Card (Speed Section)
========================================= */
.server-dash-card {
  border: 1px solid #eaebf2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(10, 72, 179, 0.07);
  background: #fff;
}

.server-dash-header {
  background: var(--color-main);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.server-dash-body {
  padding: 28px;
}

.spec-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  background: #f4f6fd;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #eaebf2;
}

.stat-box {
  border: 1px solid #eaebf2;
  border-radius: 12px;
  padding: 14px 8px;
}

/* =========================================
   UltaHost Style Feature Sections (.usp-*)
========================================= */

.usp-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
}

.usp-bg-gray {
  background: linear-gradient(180deg, #f4f8fd 0%, #ffffff 100%);
}

/* Text Side CSS */
.usp-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(10, 72, 179, 0.12), rgba(10, 72, 179, 0.02));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(10, 72, 179, 0.15);
  box-shadow: 0 4px 15px rgba(10, 72, 179, 0.05);
  color: var(--color-main, #0a48b3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.usp-badge-dark {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.usp-heading {
  font-size: 40px;
  font-weight: 800;
  color: #081131;
  line-height: 1.25;
  margin-bottom: 20px;
}

.usp-desc {
  font-size: 16px;
  color: #555e70;
  line-height: 1.8;
  margin-bottom: 30px;
}

.usp-desc strong {
  color: #081131;
}

.usp-divider {
  border-color: #eaebf2;
  margin-bottom: 30px;
  opacity: 1;
}

/* Links Grid */
.usp-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 30px;
}

@media (max-width: 991px) {
  .usp-links {
    grid-template-columns: 1fr;
  }
}

.usp-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #081131;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.usp-link i {
  color: var(--color-main, #0a48b3);
  margin-right: 12px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.usp-link span {
  margin-left: auto;
  color: #a0a6b5;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.usp-link:hover {
  color: var(--color-main, #0a48b3);
}

.usp-link:hover i {
  transform: scale(1.1);
}

.usp-link:hover span {
  color: var(--color-main, #0a48b3);
  transform: translateX(4px);
}

/* Device Side CSS */
.usp-device-wrap {
  position: relative;
  z-index: 1;
  perspective: 1000px;
}

.usp-device-frame {
  background: #f4f6fc;
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.usp-device-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

/* Floating Notifications */
.usp-notif {
  position: absolute;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.02);
  z-index: 10;
  animation: uspFloat 6s ease-in-out infinite;
  white-space: nowrap;
}

.usp-notif-dark {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 1px solid #2a2a4a;
}

.usp-notif i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(10, 72, 179, 0.06);
  border-radius: 8px;
}

.usp-notif-dark i {
  background: rgba(255, 255, 255, 0.1);
}

.usp-notif-title {
  font-size: 14px;
  font-weight: 700;
  color: #081131;
  line-height: 1.2;
  margin-bottom: 2px;
}

.usp-notif-sub {
  font-size: 11px;
  color: #7c7c80;
  font-weight: 500;
}

/* Note positions */
.usp-notif-tl {
  top: 30px;
  left: -30px;
}

.usp-notif-tr {
  top: 40px;
  right: -20px;
  animation-delay: 1s;
}

.usp-notif-bl {
  bottom: 50px;
  left: -20px;
  animation-delay: 2s;
}

.usp-notif-br {
  bottom: 40px;
  right: -30px;
  animation-delay: 0.5s;
}

/* Chat specifics */
.usp-chat {
  padding: 12px 18px;
}

.usp-chat-avatar {
  background: #eef2fd !important;
  color: var(--color-main);
  border-radius: 50% !important;
  font-size: 16px !important;
}

.usp-chat-agent {
  background: var(--color-main) !important;
  color: #fff !important;
}

@media (max-width: 991px) {
  .usp-notif {
    transform: scale(0.85);
    /* shrink slightly on mobile */
  }

  .usp-notif-tl {
    left: -10px;
  }

  .usp-notif-tr {
    right: -10px;
  }

  .usp-notif-bl {
    left: -10px;
  }

  .usp-notif-br {
    right: -10px;
  }

  .usp-heading {
    font-size: 32px;
  }
}

@keyframes uspFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

/* =========================================
   UltaHost Style Feature Cards & Reviews
========================================= */

/* Feature Cards Grid */
.uh-features-section {
  padding: 100px 0;
  background: #ffffff;
}

.uh-feature-card {
  background: #ffffff;
  border: 1px solid #eaebf2;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
}

.uh-feature-card:hover {
  box-shadow: 0 10px 30px rgba(10, 72, 179, 0.05);
  border-color: rgba(10, 72, 179, 0.08);
}

.uh-feature-icon {
  width: 54px;
  height: 54px;
  background: #f4f8fd;
  color: var(--color-main, #0a48b3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.uh-feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #081131;
  margin-bottom: 12px;
}

.uh-feature-desc {
  font-size: 15px;
  color: #6c7582;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Testimonials / Reviews Section */
.uh-reviews-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.uh-review-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(88, 86, 214, 0.1), rgba(88, 86, 214, 0.02));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(88, 86, 214, 0.15);
  color: #5856d6;
  /* Purple matching the screenshot */
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.uh-review-title {
  font-size: 44px;
  font-weight: 800;
  color: #081131;
  margin-bottom: 0;
}

.uh-btn-see-all {
  background: #4B7BFF;
  /* A soft bright blue like the screenshot */
  color: #ffffff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
}

.uh-btn-see-all:hover {
  background: #3a65e0;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(75, 123, 255, 0.3);
}

.uh-review-card {
  background: #ffffff;
  border: 1px solid #eaebf2;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.uh-review-stars {
  color: #ffb800;
  /* Rich yellow */
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.uh-review-text {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 30px;
}

.uh-review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.uh-review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: #f4f6fc;
}

.uh-review-name {
  font-size: 16px;
  font-weight: 700;
  color: #081131;
  margin-bottom: 2px;
}

.uh-review-role {
  font-size: 13px;
  color: #8c98a4;
  font-weight: 500;
}

/* =========================================
   Comparison Table
========================================= */
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  white-space: nowrap;
}

.comparison-table th,
.comparison-table td {
  padding: 24px 15px;
  vertical-align: middle;
  border-bottom: 1px solid #eaebf2;
  font-size: 15px;
}

.comparison-table thead th {
  padding-bottom: 30px;
}

.comparison-table .highlight-col {
  background: #ffffff;
  width: 220px;
  z-index: 2;
  position: relative;
}

.comparison-table thead .highlight-col::before {
  content: '';
  position: absolute;
  top: -24px;
  left: -2px;
  right: -2px;
  bottom: 0;
  border: 2px solid var(--color-main);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -15px 30px rgba(10, 72, 179, 0.08);
  z-index: -1;
  background: #fff;
  pointer-events: none;
}

.comparison-table tbody tr .highlight-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: -2px;
  right: -2px;
  bottom: 0;
  border-left: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  z-index: -1;
  background: #fff;
  pointer-events: none;
}

.comparison-table tbody tr:last-child .highlight-col::before {
  border-bottom: 2px solid var(--color-main);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 15px 30px rgba(10, 72, 179, 0.08);
}

.comparison-table .highlight-header {
  padding: 10px;
}

/* =========================================
   Custom CSS Animations for USP Sections
========================================= */

/* Common Container */
.sim-container {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
}

/* 1. Electricity / LiteSpeed */
.sim-elec-server {
  width: 120px;
  height: 160px;
  background: #ffffff;
  border-radius: 10px;
  position: relative;
  z-index: 5;
  box-shadow: 0 0 40px rgba(10, 219, 255, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 10px;
}

.sim-elec-slot {
  height: 20px;
  background: #f4f6fc;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.sim-elec-light {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0ea5e9;
  position: absolute;
  right: 10px;
  top: 6px;
  animation: blinkFast 0.5s infinite alternate;
}

.sim-elec-bolt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 4;
}

.bolt-path {
  fill: none;
  stroke: #0ea5e9;
  stroke-width: 3;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  filter: drop-shadow(0 0 8px #0ea5e9);
  animation: strikeLightning 2s linear infinite;
}

.bolt-path:nth-child(2) {
  animation-delay: 0.5s;
  stroke: #38bdf8;
}

.bolt-path:nth-child(3) {
  animation-delay: 1s;
  stroke: #bae6fd;
  stroke-width: 2;
}

.bolt-path:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes strikeLightning {
  0% {
    stroke-dashoffset: 200;
    opacity: 1;
  }

  20% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  30% {
    opacity: 0;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

@keyframes blinkFast {
  0% {
    opacity: 0.3;
    box-shadow: none;
  }

  100% {
    opacity: 1;
    box-shadow: 0 0 10px #0ea5e9;
  }
}

/* 2. Dashboard / Control */
.sim-dash {
  width: 80%;
  height: 70%;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 5;
}

.sim-dash-header {
  height: 40px;
  background: #f8fafc;
  border-bottom: 1px solid #eaebf2;
  display: flex;
  align-items: center;
  padding: 0 15px;
  gap: 8px;
}

.sim-dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}

.sim-dash-dot:nth-child(1) {
  background: #ef4444;
}

.sim-dash-dot:nth-child(2) {
  background: #eab308;
}

.sim-dash-dot:nth-child(3) {
  background: #22c55e;
}

.sim-dash-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  flex: 1;
}

.sim-dash-card {
  background: #f4f6fc;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sim-dash-bar-bg {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  margin-top: 10px;
  overflow: hidden;
}

.sim-dash-bar-fill {
  height: 100%;
  background: var(--color-main);
  width: 0%;
  border-radius: 4px;
}

.fill-1 {
  animation: loadBar 3s ease-out infinite alternate;
  background: #3b82f6;
}

.fill-2 {
  animation: loadBar 4s ease-out infinite alternate-reverse;
  background: #8b5cf6;
}

.fill-3 {
  animation: loadBar 2s ease-out infinite alternate;
  background: #10b981;
}

.fill-4 {
  animation: loadBar 3.5s ease-out infinite alternate-reverse;
  background: #f59e0b;
}

.sim-dash-gear {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  color: rgba(255, 255, 255, 0.05);
  animation: spinGear 10s linear infinite;
  pointer-events: none;
}

@keyframes loadBar {
  0% {
    width: 10%;
  }

  100% {
    width: 90%;
  }
}

@keyframes spinGear {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* 3. Support Chat */
.sim-chat-box {
  width: 300px;
  height: 380px;
  background: #f8fafc;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 5;
}

.sim-chat-header {
  background: var(--color-main);
  color: white;
  padding: 15px;
  border-radius: 16px 16px 0 0;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sim-chat-msgs {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sim-chat-msg {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 15px;
  font-size: 13px;
  opacity: 0;
  animation: popIn 0.5s ease forwards;
}

.msg-left {
  background: #e2e8f0;
  color: #333;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg-right {
  background: var(--color-main);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.msg-1 {
  animation-delay: 0.5s;
}

.msg-2 {
  animation-delay: 2.5s;
}

.msg-3 {
  animation-delay: 4.5s;
}

.sim-chat-typing {
  opacity: 0;
  align-self: flex-start;
  background: #e2e8f0;
  padding: 8px 12px;
  border-radius: 15px;
  display: flex;
  gap: 4px;
  animation: showTyping 1.5s 2s forwards, hideTyping 0.1s 4.4s forwards;
}

.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #94a3b8;
  animation: bounceDot 0.6s infinite alternate;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes showTyping {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

@keyframes hideTyping {
  to {
    display: none;
    opacity: 0;
  }
}

@keyframes bounceDot {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-4px);
  }
}

/* 4. Privacy Shield */
.sim-shield-wrap {
  position: relative;
  width: 150px;
  height: 180px;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sim-shield-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.4));
  animation: floatShield 4s ease-in-out infinite;
}

.sim-shield-scan {
  position: absolute;
  width: 120%;
  height: 4px;
  background: #10b981;
  box-shadow: 0 0 15px #10b981;
  top: 0;
  left: -10%;
  animation: scanLaser 3s linear infinite alternate;
}

.sim-shield-binary {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-family: monospace;
  color: rgba(16, 185, 129, 0.2);
  font-size: 14px;
  line-height: 1;
  overflow: hidden;
  user-select: none;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  word-break: break-all;
  animation: binaryScroll 20s linear infinite;
}

@keyframes floatShield {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes scanLaser {
  0% {
    top: -10px;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    top: 190px;
    opacity: 0;
  }
}

@keyframes binaryScroll {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0%);
  }
}

/* =========================================
   1. Brand / Clients Section
========================================= */
.uh-brands-section {
  padding: 60px 0;
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.uh-brand-trusted {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.uh-brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.uh-brand-logo {
  max-height: 35px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.uh-brand-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.brand-text {
  font-size: 20px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-text:hover {
  color: var(--color-main);
}

/* =========================================
   2. Minimal Sliding Reviews (Swiper Override)
========================================= */
.uh-reviews-section {
  padding: 100px 0;
  background-color: #ffffff;
  overflow: hidden;
  /* For swiper */
}

.uh-review-swiper {
  padding-bottom: 50px !important;
  /* Space for pagination */
}

.uh-review-card.minimal {
  padding: 35px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  /* Minimalist */
  transition: all 0.3s ease;
  height: 100%;
}

.uh-review-card.minimal:hover {
  border-color: #cbd5e1;
}

.uh-review-swiper .swiper-pagination-bullet-active {
  background-color: #0f172a;
}

/* =========================================
   3. FAQ Section
========================================= */
.uh-faq-section {
  padding: 100px 0;
  background-color: #f8fafc;
}

.uh-faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.uh-faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.uh-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.3s ease;
}

.uh-faq-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.uh-faq-btn {
  width: 100%;
  text-align: left;
  background: #ffffff;
  border: none;
  padding: 24px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #0f172a;
  font-size: 16px;
  transition: all 0.3s ease;
}

.uh-faq-btn i {
  color: #64748b;
  transition: transform 0.3s ease;
  font-size: 20px;
}

.uh-faq-btn[aria-expanded="true"] {
  color: var(--color-main);
}

.uh-faq-btn[aria-expanded="true"] i {
  transform: rotate(180deg);
  color: var(--color-main);
}

.uh-faq-body {
  padding: 0 25px 25px 25px;
  background: #ffffff;
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}

/* =========================================
   4. Full-Width CTA Section (Light / White)
========================================= */
.uh-cta-section {
  padding: 80px 0;
  background: #ffffff;
  border-top: 1px solid rgba(10, 72, 179, 0.05);
  border-bottom: 1px solid rgba(10, 72, 179, 0.05);
  position: relative;
  overflow: hidden;
  color: #0f172a;
}

.uh-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(10, 72, 179, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.uh-cta-section .container {
  position: relative;
  z-index: 2;
}

.uh-cta-heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: #0f172a;
}

.uh-cta-heading span {
  color: var(--color-main);
}

.uh-cta-sub {
  font-size: 18px;
  color: #475569;
  margin-bottom: 30px;
}

.uh-cta-btn-outline {
  background: transparent;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.uh-cta-btn-outline:hover {
  background: rgba(10, 72, 179, 0.05);
  color: var(--color-main);
  border-color: var(--color-main);
}

.uh-cta-btn-solid {
  background: var(--color-main);
  border: none;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px 0 rgba(10, 72, 179, 0.39);
}

.uh-cta-btn-solid:hover {
  background: #083c96;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(10, 72, 179, 0.5);
  transform: translateY(-2px);
}

/* =========================================
   Header Menu Hover Effect
========================================= */
.main-header .mainmenu>li>a>span {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.main-header .mainmenu>li>a:hover>span {
  color: var(--color-main) !important;
}

.main-header .mainmenu>li>a>span::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-main);
  transition: width 0.3s ease;
}

.main-header .mainmenu>li>a:hover>span::after {
  width: 100%;
}

/* =========================================
   Crypto Banner & Floating Icons
========================================= */
.uh-crypto-float-icons i {
  position: absolute;
  color: var(--color-main);
  opacity: 0.1;
  z-index: 1;
}

.uh-float-icon-1 {
  font-size: 100px;
  top: -20px;
  right: 10%;
  animation: uhFloat 8s infinite ease-in-out;
}

.uh-float-icon-2 {
  font-size: 60px;
  bottom: 10%;
  right: 25%;
  animation: uhFloat 12s infinite ease-in-out reverse;
}

.uh-float-icon-3 {
  font-size: 80px;
  top: 15%;
  right: 5%;
  animation: uhFloat 10s infinite ease-in-out;
  opacity: 0.05 !important;
}

@keyframes uhFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

.uh-crypto-btn {
  box-shadow: 0 10px 25px rgba(10, 72, 179, 0.15);
  transition: all 0.3s ease;
}

.uh-crypto-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(10, 72, 179, 0.25);
  background: var(--color-main);
}

/* =========================================
   5. Responsive Design (Mobile & Tablet)
========================================= */

/* Tablet & Mobile (Max width: 991px) */
@media (max-width: 991px) {
  .uh-feat-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .uh-review-swiper {
    padding-bottom: 50px;
  }

  .uh-crypto-row {
    padding: 40px 30px !important;
    text-align: center;
  }

  .uh-crypto-banner h2 {
    font-size: 28px !important;
  }

  .uh-crypto-banner p {
    margin: 0 auto 20px;
  }

  .uh-crypto-banner .col-lg-4.text-lg-end {
    text-align: center !important;
    margin-top: 20px !important;
  }

  .main-footer {
    padding: 50px 0 20px;
  }

  .main-footer .footer-list {
    margin-bottom: 30px;
  }

  .main-footer .footer-list.ps-lg-4 {
    padding-left: 0 !important;
  }
}

/* Mobile Devices (Max width: 767px) */
@media (max-width: 767px) {
  .container-full-mobile {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
  }

  .uh-crypto-row {
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
  }

  .uh-feat-header h2,
  .uh-review-header h2,
  .uh-faq-header h2,
  .uh-cta-heading {
    font-size: 28px !important;
  }

  .uh-feat-section,
  .uh-cta-section {
    padding: 50px 0;
  }

  .main-footer .row.align-items-center.mb-5.pb-4 {
    text-align: center;
  }

  .main-footer .company-info .logo {
    margin: 0 auto 20px;
  }

  .main-footer .row.bg-light.rounded-4.p-4 {
    text-align: center;
    padding: 20px !important;
  }

  .main-footer .input-group {
    flex-direction: column;
    gap: 10px;
  }

  .main-footer .input-group .form-control,
  .main-footer .input-group .btn {
    width: 100%;
    border-radius: 8px !important;
  }

  .copy-right-info .row.align-items-center {
    text-align: center;
  }

  .footer-payment-methods {
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
  }

  /* Domain Form Mobile fixes */
  .homepage-domain-form {
    flex-direction: column;
    border-radius: 16px !important;
    padding: 15px !important;
    gap: 10px;
  }

  .homepage-domain-form>div {
    display: none !important;
  }

  .homepage-domain-form input {
    padding: 10px !important;
    text-align: center;
  }

  .homepage-domain-form button {
    width: 100%;
    border-radius: 12px !important;
  }

  /* Hosting Plans Mobile Stacking */
  .swiper-plans .swiper-wrapper {
    flex-direction: column !important;
    transform: none !important;
  }

  .swiper-plans .swiper-slide {
    width: 100% !important;
    margin-bottom: 20px;
  }

  .swiper-plans .swiper-pagination {
    display: none !important;
  }

  /* Footer Mobile Centering */
  .main-footer .footer-list {
    text-align: center;
  }

  .main-footer .footer-list h4 span {
    left: 50% !important;
    transform: translateX(-50%);
  }

  .main-footer .footer-list .d-flex.gap-2,
  .main-footer .footer-list .d-flex.flex-column {
    justify-content: center;
    align-items: center;
  }

  .main-footer .footer-bottom-links,
  .copy-right-info p {
    text-align: center !important;
  }
}