/* ============================================================
   JOMETECH HOSTING — MAIN STYLESHEET
   Updated: 2026
   
   Changes from audit:
   ✅ Brand colors corrected to match logo guidelines
   ✅ Expanded design tokens (grays, shadows, typography)
   ✅ Added :focus-visible accessibility styles
   ✅ Added prefers-reduced-motion support
   ✅ Removed unnecessary !important overrides
   ✅ Fixed duplicate .headerbtn definitions
   ✅ Added full typography scale (h1–h6)
   ✅ Replaced ~55 hardcoded colors with tokens
   ✅ Added semantic color tokens (text-muted, border, surface)
   ✅ Improved naming consistency notes
============================================================ */


/* ============================================================
   1. DESIGN TOKENS & ROOT VARIABLES
============================================================ */

:root {
  /* ── Brand Colours (from official brand guidelines) ── */
  --color-one:        #0000CC;
  --color-one-dark:   #0000A3;
  --color-one-light:  #3333D6;
  --color-two:        #FE2D2B;
  --color-two-dark:   #CB2422;
  --color-two-light:  #FE5756;
  --color-brand-gray: #EAEDEF;
  --white:            #fff;
  --black:            #000;

  /* ── Neutral / Gray Scale ── */
  --gray-50:   #fafbff;
  --gray-100:  #f4f5ff;
  --gray-150:  #EAEDEF;
  --gray-200:  #d5dfff;
  --gray-300:  #d8dae0;
  --gray-400:  #cdcedd;
  --gray-500:  #888faa;
  --gray-600:  #6d7081;
  --gray-700:  #505151;
  --gray-800:  #343f52;
  --gray-900:  #1d1e20;
  --gray-950:  #161718;

  /* ── Semantic Colours ── */
  --text-primary:   var(--gray-900);
  --text-secondary: var(--gray-700);
  --text-muted:     var(--gray-600);
  --text-light:     var(--gray-500);

  --bg-body:        var(--white);
  --bg-surface:     var(--gray-50);
  --bg-surface-alt: var(--gray-100);
  --bg-muted:       var(--color-brand-gray);

  --border-default: var(--gray-200);
  --border-light:   var(--gray-400);
  --border-muted:   var(--gray-300);

  --color-success:  #16a34a;
  --color-warning:  #d97706;
  --color-danger:   #dc2626;

  /* ── Border Radius Scale ── */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  /* ── Spacing Scale ── */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  48px;
  --space-xl:  56px;
  --space-2xl: 72px;

  /* ── Typography Scale ── */
  --font-family:    'DM Sans', sans-serif;
  --font-size-xs:   12px;
  --font-size-sm:   14px;
  --font-size-base: 16px;
  --font-size-md:   18px;
  --font-size-lg:   20px;
  --font-size-xl:   24px;
  --font-size-2xl:  28px;
  --font-size-3xl:  36px;
  --font-size-4xl:  48px;
  --font-size-5xl:  52px;

  --leading-tight:   1.2;
  --leading-snug:    1.3;
  --leading-normal:  1.5;
  --leading-relaxed: 1.625;

  /* ── Shadows ── */
  --shadow-xs:  0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm:  0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md:  0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg:  0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl:  0 20px 45px rgba(0, 0, 0, 0.12);
  --shadow-2xl: 0 25px 60px rgba(0, 0, 0, 0.18);

  /* ── Transitions ── */
  --transition:      all .3s ease-in-out;
  --transition-fast: all .15s ease-in-out;
  --transition-slow: all .5s ease-in-out;

  /* ── Scroll ── */
  scroll-behavior: smooth;
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ============================================================
   2. GLOBAL RESET & BASE
============================================================ */

* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-one) transparent;
}
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--color-one);
  border-radius: var(--radius-full);
}
::selection {
  background: var(--color-one);
  color: var(--white);
  text-shadow: none;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 24px;
  color: var(--text-primary);
  overflow-x: hidden;
  padding-top: 0;
}

body .theme-gap {
  padding: var(--space-lg) 0;
}

/* ── Typography Scale ── */
h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  line-height: var(--leading-tight);
}
h2 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  line-height: var(--leading-tight);
}
h3 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  line-height: var(--leading-snug);
}
h4 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  line-height: var(--leading-snug);
}
h5 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  line-height: var(--leading-snug);
}
h6 {
  font-size: var(--font-size-md);
  font-weight: 600;
  line-height: var(--leading-normal);
}

.container {
  max-width: 1208px;
}

a {
  text-decoration: none;
}
a:hover {
  color: var(--color-one);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}


/* ============================================================
   3. ACCESSIBILITY — FOCUS STYLES
============================================================ */

:focus-visible {
  outline: 2px solid var(--color-one);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--color-one);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}

/* Remove default outline when using mouse */
:focus:not(:focus-visible) {
  outline: none;
}

/* High-contrast focus for dark backgrounds */
.jt-modern-hero :focus-visible,
.bg-theme-dark :focus-visible,
.bg-theme :focus-visible,
.bg-dark1 :focus-visible {
  outline-color: var(--white);
}


/* ============================================================
   4. UTILITY CLASSES
============================================================ */

.color-one   { color: var(--color-one); }
.color_1     { color: var(--gray-950); }
.color_2     { color: var(--text-primary); }
.bg_1        { background: var(--gray-100); }
.bold        { font-weight: 700; }

.mb--1 { margin-bottom: 10px; }
.mb--2 { margin-bottom: 20px; }
.mb--3 { margin-bottom: 30px; }
.gap-bottom { margin-bottom: var(--space-lg); }

.bg10           { background: #1f1346; }
.bg-theme       { background: var(--color-one); }
.bg-theme-two   { background: #1f1346; }
.bg-theme-dark  { background: var(--black); }
.bg-dark1       { background: var(--gray-950); }
.bg-theme-light { background: var(--gray-200); }
.bg-theme-light.two { background-color: var(--gray-50); }
.bg-none        { background: none; }
.bglight        { background: #8c85ff; }
.br-1           { border-radius: var(--radius-xl); }
.fs-24          { font-size: var(--font-size-xl); }

.text-white p,
.text-white li { color: var(--white); }


/* ============================================================
   5. BUTTONS
   Single authoritative definition for each button type.
============================================================ */

/* --- Primary CTA: RED filled --- */
.theme_btn_one {
  align-items: center;
  background-color: var(--color-two);
  border: 2px solid var(--color-two);
  border-radius: var(--radius-sm);
  color: var(--white);
  display: flex;
  justify-content: center;
  line-height: 1;
  min-height: 48px;
  padding: 12px 48px;
  position: relative;
  text-align: center;
  transition: var(--transition);
  width: fit-content;
  font-weight: 600;
}
.theme_btn_one:hover {
  background-color: var(--color-two-dark);
  border-color: var(--color-two-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(254, 45, 43, 0.3);
}

/* --- Outline: BLUE border --- */
.plan_btn_one {
  align-items: center;
  background: transparent;
  border: 2px solid var(--color-one);
  border-radius: var(--radius-sm);
  color: var(--color-one);
  cursor: pointer;
  display: flex;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 48px;
  padding: 12px 48px;
  text-align: center;
  transition: var(--transition);
}
.plan_btn_one:hover {
  background-color: var(--color-one);
  color: var(--white);
}

/* --- Filled RED --- */
.plan_btn_two {
  align-items: center;
  background-color: var(--color-two);
  border: 2px solid var(--color-two);
  border-radius: var(--radius-sm);
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 48px;
  padding: 12px 48px;
  text-align: center;
  transition: var(--transition);
}
.plan_btn_two:hover {
  background-color: var(--color-two-dark);
  border-color: var(--color-two-dark);
}

/* --- Link: BLUE text arrow --- */
.link_btn {
  align-items: center;
  color: var(--color-one);
  display: flex;
  font-weight: 700;
  gap: 4px;
  width: max-content;
}
.link_btn:hover {
  color: var(--color-two);
}

/* --- Search: WHITE with BLUE text --- */
.search_btn {
  align-items: center;
  background-color: var(--white);
  border: 2px solid var(--white);
  border-radius: var(--radius-sm);
  color: var(--color-one);
  display: flex;
  justify-content: center;
  line-height: 1;
  min-height: 48px;
  padding: 12px 48px;
  text-align: center;
  transition: var(--transition);
  width: fit-content;
}
.search_btn:hover {
  background-color: var(--color-brand-gray);
  border-color: var(--color-brand-gray);
}


/* ============================================================
   6. PROMO BAR
============================================================ */

.promo-bar {
  background-color: var(--gray-800);
  display: block;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  width: 100%;
}
.promo-bar h3 {
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}
.promo-bar h3 strong {
  color: var(--white);
  font-weight: 600;
}
.promo-bar h3 a {
  border: 1px dashed var(--gray-300);
  border-radius: 30px;
  color: var(--white);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-inline-start: 10px;
  padding: 5px 15px;
}
.promo-bar .close-btn-bar {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.promo-bar.closed { display: none; }

@media (max-width: 575px) {
  .promo-bar { padding-right: 35px; }
}


/* ============================================================
   7. HEADER & NAVIGATION
============================================================ */

.main-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all .35s ease;
  width: 100%;
  z-index: 999;
}

.main-header.sticky {
  animation: headerSticky .95s ease forwards;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  height: unset;
  left: 0;
  max-width: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}

@keyframes headerSticky {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

.main-header > * {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.main-header > .container {
  gap: 30px;
  margin: 0 auto;
  max-width: 1320px;
  padding-left: 20px;
  padding-right: 20px;
}

.main-header .logo-box {
  flex-shrink: 0;
  margin-right: 20px;
}
.main-header .logo-box a.logo {
  display: block;
  position: relative;
}
.main-header .logo-box a.logo img,
.main-header .logo-box img {
  max-height: 46px;
  transition: all .35s ease;
}

/* SCROLLED STATE */
.main-header.elite-scrolled {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  padding: 4px 0;
}
.main-header.elite-scrolled .logo-box img {
  max-height: 36px;
}
.main-header.elite-scrolled .menu-bar > ul > li > a {
  font-size: 15px;
  padding: 8px 10px;
}

.main-header .menu-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-header .menu-bar { display: block; margin: 0; }

/* ── Header Right Buttons (single definition) ── */
.main-header .header-right-btns {
  align-items: center;
  display: flex;
  gap: 10px;
}
.main-header .header-right-btns .headerbtn {
  background: transparent;
  border: 2px solid var(--gray-950);
  border-radius: var(--radius-sm);
  color: var(--gray-950);
  display: block;
  font-size: var(--font-size-base);
  line-height: 1;
  padding: 10px 16px;
  text-transform: uppercase;
  transition: var(--transition);
}
.main-header .header-right-btns .headerbtn:hover {
  background: var(--color-one);
  border-color: var(--color-one);
  color: var(--white);
}

/* ── Hamburger ── */
.main-header .header-right-btns .hamburger {
  align-self: center;
  background: var(--black);
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  height: 40px;
  justify-content: space-between;
  padding: 12px 10px;
  transition: all 500ms ease;
  width: 40px;
}
.main-header .header-right-btns .hamburger span {
  background: var(--white);
  height: 2px;
  transition: all 500ms ease;
  width: 83.33%;
}
.main-header .header-right-btns .hamburger span:first-child {
  animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
}
.main-header .header-right-btns .hamburger span:nth-child(2) {
  animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
  width: 100%;
}
.main-header .header-right-btns .hamburger span:last-child {
  animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
  width: 58.33%;
}
@keyframes burger-hover {
  0%   { width: 100%; }
  50%  { width: 50%; }
  100% { width: 100%; }
}

/* ── Desktop Navigation (1200px+) ── */
@media (min-width: 1200px) {
  .main-header {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .main-header > .container {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }

  .main-header .menu-bar {
    flex-grow: 1;
    display: flex;
    justify-content: center;
  }

  .main-header .menu-bar > ul {
    align-items: center;
    display: flex;
    gap: 32px;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .main-header .menu-bar > ul > li { display: block; }

  .main-header .menu-bar > ul > li > a {
    color: var(--text-primary);
    display: block;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 0;
    position: relative;
    transition: var(--transition-slow);
  }

  /* Underline animation */
  .main-header .menu-bar > ul > li > a::after {
    background: var(--color-one);
    bottom: 6px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transition: 0.35s ease;
    width: 0%;
  }
  .main-header .menu-bar > ul > li:hover > a::after,
  .main-header .menu-bar > ul > li.active > a::after {
    width: 100%;
  }

  .main-header .menu-bar > ul > li:hover > a,
  .main-header .menu-bar > ul > li.active > a {
    color: var(--color-one);
  }

  .main-header .menu-bar > ul > li.dropdown { position: relative; }

  .main-header .menu-bar > ul > li.dropdown > a > svg {
    height: 24px;
    transition: transform .3s ease;
    width: 24px;
  }
  .main-header .menu-bar > ul > li.dropdown > a > i {
    display: inline-block;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: all .3s ease;
  }
  .main-header .menu-bar > ul > li.dropdown:hover > a > i {
    color: var(--color-one);
    transform: rotate(180deg);
  }
  .main-header .menu-bar > ul > li.dropdown:hover > a > svg {
    color: var(--color-one);
    fill: var(--color-one);
    transform: rotate(180deg);
  }

  .main-header .menu-bar > ul > li.dropdown > ul {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: block;
    left: 0;
    min-width: 300px;
    opacity: 0;
    padding: 14px;
    position: absolute;
    top: 100%;
    transition: var(--transition);
    visibility: hidden;
    z-index: 999;
  }
  .main-header .menu-bar > ul > li.dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
  }

  /* Megamenu */
  .main-header .menu-bar > ul > li.dropdown.megamenu.small { position: static; }
  .main-header .menu-bar > ul > li.dropdown.megamenu > ul {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-top: calc(-1 * var(--bs-gutter-y));
    width: 100%;
  }
  .main-header .menu-bar > ul > li.dropdown.megamenu > ul > * {
    flex-shrink: 0;
    margin-top: var(--bs-gutter-y);
    max-width: 100%;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    width: 100%;
  }
  .main-header .menu-bar > ul > li.dropdown.megamenu.small > ul {
    left: 50%;
    transform: translateX(-50%);
  }
  .main-header .menu-bar > ul > li.dropdown.megamenu.small.one > ul {
    left: unset;
    transform: unset;
    width: fit-content;
  }
  .main-header .menu-bar > ul > li.dropdown > ul > li > a + a { margin-top: 10px; }
  .main-header .menu-bar > ul > li.dropdown.megamenu.small.two > ul > * {
    flex: 0 0 auto;
    width: 33%;
  }
  .main-header .menu-bar > ul > li.dropdown.megamenu.small.one > ul > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .main-header > *:has(.dropdown.megamenu.big) { position: relative; }
  .main-header .menu-bar > ul:has(.dropdown.megamenu.big) { position: static; }
  .main-header .menu-bar > ul > li.dropdown.megamenu.big { position: static; }
  .main-header .menu-bar > ul > li.dropdown.megamenu.big ul { width: 100%; }
  .main-header .menu-bar > ul > li.dropdown.megamenu.big ul > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .main-header .menu-bar .logo-bar { display: none; }
  .main-header .menu-bar > ul > li.dropdown > ul > li.back { display: none; }

  /* Desktop header buttons refinement */
  .main-header .header-right-btns {
    gap: 12px;
    margin-left: 20px;
  }
  .main-header .header-right-btns .headerbtn {
    border-width: 1px;
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    padding: 8px 16px;
  }
}

/* ── Dropdown items ── */
.main-header .menu-bar .dropdown-items {
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  transition: var(--transition);
}
.main-header .menu-bar .dropdown-items:hover { background: var(--gray-100); }
.main-header .menu-bar .dropdown-items .icon-boxs {
  display: block;
  min-width: 24px;
}
.main-header .menu-bar .dropdown-items .icon-boxs i {
  color: var(--text-primary);
  font-size: var(--font-size-xl);
  transition: var(--transition);
}
.main-header .menu-bar .dropdown-items:hover .icon-boxs i { color: var(--color-one); }
.main-header .menu-bar .dropdown-items .icon-boxs svg {
  height: 24px;
  min-width: 24px;
  transition: var(--transition);
  vertical-align: middle;
  width: 24px;
}
.main-header .menu-bar .dropdown-items:hover .icon-boxs svg {
  color: var(--color-one);
  fill: var(--color-one);
}
.main-header .menu-bar .dropdown-items .content-box {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 2px;
}
.main-header .menu-bar .dropdown-items .content-box .headings {
  display: flex;
  gap: 15px;
}
.main-header .menu-bar .dropdown-items .content-box .headings .text {
  color: var(--text-primary);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 24px;
  transition: var(--transition-slow);
}
.main-header .menu-bar .dropdown-items .content-box .headings .off-badge {
  align-items: center;
  background-color: var(--gray-100);
  border: 0;
  border-radius: 6px;
  color: var(--color-one);
  display: inline-flex;
  font-size: var(--font-size-xs);
  font-weight: 600;
  height: fit-content;
  line-height: var(--leading-snug);
  padding: 4px 8px;
  white-space: nowrap;
  width: fit-content;
}
.main-header .menu-bar .dropdown-items .content-box .contents {
  color: var(--text-muted);
  display: block;
  font-weight: 400;
  line-height: 24px;
}
.main-header .menu-bar .dropdown-items:hover .content-box .headings .text { color: var(--color-one); }

.main-header .menu-bar > ul > li.dropdown > ul > li.menu_img a { display: block; }
.main-header .menu-bar > ul > li.dropdown > ul > li.menu_img h5 {
  align-items: center;
  color: var(--text-primary);
  display: flex;
  font-size: var(--font-size-md);
  font-weight: 700;
  justify-content: space-between;
  line-height: 24px;
  margin-top: 30px;
}
.main-header .menu-bar > ul > li.dropdown > ul > li.menu_img p { color: var(--text-primary); }

/* ── Mobile Navigation ── */
@media (max-width: 1199px) {
  .main-header .menu-bar > ul > li.dropdown > ul > li.menu_img { display: none; }
  .main-header { padding: 10px 0; }
  .main-header .header-right-btns .hamburger { display: flex; }
  .main-header .menu-bar {
    background: var(--white);
    display: none;
    flex-direction: column;
    height: 100vh;
    justify-content: space-between;
    left: 0;
    max-height: 100vh;
    min-height: 100vh;
    overflow-y: auto;
    padding: 25px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
  }
  .main-header .menu-bar.active { display: flex; }
  .main-header .menu-bar > ul { display: flex; flex-direction: column; }
  .main-header .menu-bar > ul > li > a {
    align-items: center;
    color: var(--black);
    display: flex;
    font-size: var(--font-size-base);
    font-weight: 500;
    justify-content: space-between;
    padding: 10px 0;
    width: 100%;
  }
  .main-header .menu-bar > ul > li + li { border-top: 1px solid var(--gray-300); }
  .main-header .menu-bar > ul > li:nth-child(2) { border-top: unset; }
  .main-header .menu-bar > ul > li.dropdown > a > i {
    display: block;
    transform: rotate(-90deg);
    transition: var(--transition);
  }
  .main-header .menu-bar > ul > li.dropdown > ul { display: none; }
  .main-header .menu-bar > ul > li.dropdown > ul.active {
    background: var(--white);
    display: flex;
    flex-direction: column;
    height: 100vh;
    left: 0;
    max-height: 100vh;
    min-height: 100vh;
    overflow-y: auto;
    padding: 25px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
  }
  .main-header .menu-bar > ul > li.dropdown > ul > li.back {
    border-bottom: 1px solid var(--gray-300);
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .main-header .menu-bar > ul > li.dropdown > ul > li.back a {
    color: var(--text-primary);
    display: block;
    font-size: var(--font-size-base);
    font-weight: 600;
  }
  .main-header .menu-bar .logo-bar {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 15px;
  }
  .main-header .menu-bar .logo-bar .logo { display: block; }
  .main-header .menu-bar .logo-bar .logo img { max-height: 40px; }
  .main-header .menu-bar .logo-bar .close-menu-btn {
    background: var(--color-brand-gray);
    border: 0;
    border-radius: var(--radius-xs);
    color: var(--gray-950);
    font-size: 26px;
    height: 40px;
    line-height: 40px;
    width: 40px;
  }
}

.main-header .menu-bar .menu-right-mob { display: none; }
@media (max-width: 440px) {
  .main-header .menu-bar .menu-right-mob {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .main-header .menu-bar .menu-right-mob .headerbtn {
    background: transparent;
    border: 2px solid var(--gray-950);
    border-radius: var(--radius-sm);
    color: var(--gray-950);
    display: block;
    font-size: var(--font-size-base);
    line-height: 1;
    padding: 10px 16px;
    text-align: center;
    text-transform: uppercase;
    transition: var(--transition);
  }
  .main-header .menu-bar .menu-right-mob .headerbtn:hover {
    background: var(--color-one);
    border-color: var(--color-one);
    color: var(--white);
  }
  .main-header .header-right-btns > .headerbtn { display: none; }
}


/* ============================================================
   8. HERO SECTION
============================================================ */

.jt-modern-hero {
  animation: heroGradient 12s ease infinite;
  background: linear-gradient(120deg, #000099, #020617, var(--color-one));
  background-size: 300% 300%;
  overflow: hidden;
  padding-bottom: 80px;
  position: relative;
}

@keyframes heroGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.jt-modern-hero::before {
  background: rgba(0, 0, 204, 0.25);
  content: "";
  filter: blur(140px);
  height: 600px;
  position: absolute;
  right: -150px;
  top: -200px;
  width: 600px;
  z-index: 0;
}

.jt-modern-hero .container {
  position: relative;
  z-index: 2;
}

/* Hero text */
.jt-modern-hero .mainheading h1 {
  color: var(--white);
  font-size: var(--font-size-5xl);
  font-weight: 700;
  line-height: var(--leading-tight);
}
.jt-modern-hero .mainheading p {
  color: #cbd5f5;
  font-size: var(--font-size-md);
}
.jt-modern-hero .home_list li    { color: #dbeafe; }
.jt-modern-hero .btns_label      { color: #cbd5f5; }
.jt-modern-hero .price-sec label { color: #cbd5f5; }
.jt-modern-hero .text-content    { color: #60a5fa; font-weight: 700; }

/* Hero image card */
.jt-modern-hero .col-lg-5 { position: relative; }
.jt-modern-hero .col-lg-5::before {
  background: rgba(0, 0, 204, 0.35);
  content: "";
  filter: blur(120px);
  height: 280px;
  left: 50%;
  position: absolute;
  top: 30%;
  transform: translate(-50%, -50%);
  width: 280px;
  z-index: 0;
}
.jt-modern-hero .col-lg-5 img {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  padding: 12px;
  position: relative;
  transition: .4s ease;
  z-index: 2;
}
.jt-modern-hero .col-lg-5 img:hover { transform: translateY(-6px); }

@media (max-width: 992px) {
  .jt-modern-hero .mainheading h1 { font-size: 34px; }
}


/* ============================================================
   9. DOMAIN SEARCH BAR
============================================================ */

.hg-domain-search-wrapper {
  margin: 0;
  max-width: 1200px;
  padding: 0;
}

.hg-domain-search-form {
  align-items: center;
  background: linear-gradient(135deg, var(--color-one), var(--color-one-dark));
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding: 14px 22px;
}

.hg-prefix        { color: #e0e7ff; font-size: 1.1rem; font-weight: 600; padding-right: 16px; user-select: none; }
.hg-prefix-bold   { color: var(--white); font-weight: 700; }

.hg-www-box {
  align-items: center;
  background-color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  display: flex;
  margin-right: 10px;
  padding: 6px;
}
.hg-www {
  background: var(--color-one);
  border-radius: 10px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 12px;
}

.hg-domain-input {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  color: var(--white);
  flex: 1;
  font-size: 1rem;
  min-width: 220px;
  outline: none;
  padding: 12px 18px;
  transition: var(--transition);
}
.hg-domain-input::placeholder { color: rgba(255, 255, 255, 0.9); }
.hg-domain-input:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.25);
}

.hg-domain-btn {
  align-items: center;
  background-color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  color: var(--color-one);
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  font-weight: 700;
  height: 44px;
  justify-content: center;
  margin-left: 12px;
  padding: 6px 18px;
  transition: var(--transition);
}
.hg-domain-btn:hover,
.hg-domain-btn:focus {
  background-color: var(--color-two);
  color: var(--white);
  transform: scale(1.06);
}
.hg-domain-btn svg { height: 22px; margin-right: 6px; width: 22px; }

.hg-domain-ext-list { display: flex; }
.hg-domain-ext {
  border: 2px dashed rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  color: var(--white);
  cursor: pointer;
  font-size: 0.95rem;
  margin-left: 10px;
  padding: 6px 14px;
  transition: var(--transition);
}
.hg-domain-ext:hover {
  background: var(--white);
  color: var(--color-one);
}

.hg-offer {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 18px;
  margin-inline-start: 12px;
  text-align: left;
}

@media (min-width: 1400px) {
  .hg-domain-search-wrapper { max-width: 1750px; }
  .hg-prefix      { font-size: 1.3rem; }
  .hg-domain-input { font-size: 1.2rem; }
  .hg-domain-btn  { font-size: 1.1rem; }
  .hg-domain-ext  { font-size: 1rem; }
  .hg-offer       { font-size: 1rem; }
}
@media (min-width: 1600px) {
  .hg-prefix       { font-size: 1.4rem; }
  .hg-domain-input { font-size: 1.3rem; }
}
@media (max-width: 768px) {
  .hg-domain-search-form {
    align-items: stretch;
    flex-direction: column;
    height: auto;
    padding: 10px;
  }
  .hg-prefix, .hg-www-box, .hg-domain-input,
  .hg-domain-btn, .hg-domain-ext-list, .hg-offer {
    margin: 5px 0;
    text-align: center;
    width: 100%;
  }
  .hg-www-box     { justify-content: center; }
  .hg-domain-input { border-radius: 10px; padding: 8px; }
  .hg-domain-btn  { border-radius: 10px; margin-left: 0; }
  .hg-domain-ext-list { flex-wrap: wrap; justify-content: center; }
  .hg-domain-ext  { margin: 5px; }
  .hg-offer       { text-align: center; }
}


/* ============================================================
   10. HOMEPAGE BANNER & HERO TEXT COMPONENTS
============================================================ */

.homepage-banner { padding: 36px 0 96px; }

.mainheading p {
  font-size: var(--font-size-lg);
  line-height: 32px;
}
.subheading p {
  color: var(--text-primary);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 24px;
  margin-top: var(--space-md);
}
.home_list.one {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.home_list.one li {
  color: var(--text-secondary);
  font-weight: 600;
  margin-inline-end: 10px;
}
.home_list.one li:last-child { margin-inline-end: 0; }
.home_list li {
  align-items: start;
  color: var(--text-primary);
  display: flex;
  font-size: var(--font-size-base);
  font-weight: 400;
  gap: 5px;
  line-height: 24px;
  text-align: start;
}
.price-sec { margin: 24px 0; }
.price-sec h4 {
  align-items: baseline;
  color: var(--color-one);
  display: flex;
  font-size: var(--font-size-4xl);
  font-weight: 700;
  line-height: 56px;
}
.price-sec h4 span {
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 24px;
}
.price-sec label {
  font-size: var(--font-size-lg);
  font-weight: 700;
  line-height: 32px;
}
.btns_label {
  display: flex;
  font-size: var(--font-size-base);
  gap: 4px;
  margin-top: 20px;
}
.text-slides {
  color: var(--color-one);
  display: block;
  height: 1.5em;
  overflow: hidden;
  position: relative;
}
.text-slides .text-content {
  left: 0;
  position: absolute;
  top: 0;
  transition: var(--transition-slow);
  white-space: nowrap;
}
.homepage-top-heading {
  font-size: var(--font-size-lg);
  font-weight: 700;
  line-height: 32px;
}
.homepage-top-heading span {
  background: var(--color-one);
  border-radius: 5px;
  color: var(--white);
  padding: 2px 5px;
}
.text-gray {
  color: var(--text-muted);
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
}
.icon_2 img { margin-bottom: 20px; max-height: 45px; }

.domain-lists {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.domain-lists li {
  background: var(--white);
  border-radius: 5px;
  box-shadow: var(--shadow-lg);
  padding: 18px;
  transition: var(--transition-slow);
}
.domain-lists li:hover h5 { transform: scale(1.4); }
.domain-lists li h5 {
  color: var(--color-one);
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  transition: var(--transition-slow);
}
.domain-lists li p {
  font-size: var(--font-size-md);
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
}
.gap-y-25 { gap: 25px 0; }


/* ============================================================
   11. PRODUCT / SERVICE CARDS
============================================================ */

/* Service card 01 */
.service-01 {
  border: 1px dashed var(--border-light);
  border-radius: 10px;
  display: block;
  flex: 1 1 0%;
  height: 100%;
  padding: var(--space-md);
  position: relative;
  transition: border 0.2s ease-in, box-shadow 0.2s ease-in, transform 0.3s ease;
  width: 100%;
}
.service-01:hover {
  border: 1px dashed var(--color-one);
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}
.service-01 .icon { margin-bottom: 18px; }
.service-01 .icon > .inner {
  align-items: center;
  background-color: var(--gray-50);
  border: dashed 1px var(--color-one);
  border-radius: 50%;
  display: flex;
  height: 50px;
  justify-content: center;
  padding: 10px;
  transition: 0.2s;
  width: 50px;
}
.service-01 .icon > .inner i {
  color: var(--color-one);
  font-size: 25px;
  line-height: 0;
}
.service-01 h3 {
  color: var(--gray-800);
  font-size: var(--font-size-lg);
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 15px;
  transition: color 0.2s;
}
.service-01:hover h3 { color: var(--color-one); }
.service-01 p {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
}
.service-01 .starting-price {
  color: var(--color-one);
  display: block;
  font-size: var(--font-size-base);
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 0;
}
.service-01 a {
  display: block;
  font-size: var(--font-size-base);
  font-weight: 600;
  line-height: 22px;
}
.service-01:hover a span { text-decoration: underline; }
.service-01 a i { margin-inline-start: 5px; transition: all 0.2s; }
.service-01:hover a i { margin-inline-start: 8px; }

/* Popular plan badge */
.popular-plan {
  background: linear-gradient(180deg, var(--gray-50), var(--white));
  border: 2px solid var(--color-one);
}
.popular-badge {
  background: var(--color-two);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  position: absolute;
  right: 20px;
  top: -12px;
}
.starting-price { display: block; font-size: 1.4rem; font-weight: 700; }
.old-price      { margin-right: 6px; opacity: 0.6; }
.discount-badge {
  background: var(--color-one);
  border-radius: 10px;
  color: var(--white);
  display: inline-block;
  font-size: 0.75rem;
  margin-top: 6px;
  padding: 4px 10px;
}

/* Service card 02 */
.service-02 {
  border: 1px solid var(--border-default);
  border-radius: 10px;
  display: block;
  flex: 1 1 0%;
  height: 100%;
  padding: var(--space-md);
  text-align: center;
  transition: border 0.2s ease-in, box-shadow 0.2s ease-in;
  width: 100%;
}
.service-02 h3 {
  color: #2e1b6a;
  font-size: 60px;
  font-weight: 600;
}

/* Card styles */
.card-style-one {
  background-color: #2e1b60;
  border-radius: var(--radius-lg);
  color: white;
  height: 100%;
  padding: var(--space-md);
}
.card-style-one h3 {
  color: var(--white);
  font-size: var(--font-size-md);
  font-weight: 700;
  line-height: 24px;
}
.card-style-one p { color: var(--white); }

.icon-box {
  align-items: center;
  background: var(--color-one);
  border-radius: 6px;
  display: flex;
  height: 40px;
  justify-content: center;
  margin-bottom: 15px;
  width: 40px;
}
.icon-box svg { height: 24px; min-width: 24px; vertical-align: middle; width: 24px; }

.card-style-two {
  background: #8c85ff;
  border-radius: var(--radius-xl);
  height: 100%;
  padding: 40px;
}
.card-style-two h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  line-height: 32px;
}

.card-style-three {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  height: 100%;
  padding: var(--space-md);
  position: relative;
}
.card-style-three .icon { margin-bottom: 24px; }
.card-style-three .icon img { max-height: 30px; }
.card-style-three h4 { font-size: var(--font-size-xl); font-weight: 700; line-height: 32px; }
.card-style-three .card-three-link { bottom: 10px; position: absolute; right: 32px; }
.card-three-link img { max-height: 24px; }

.card-style-four {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  height: 100%;
  padding: var(--space-md);
}
.card-style-four .icon { margin-bottom: 24px; }
.card-style-four .icon img { max-height: 30px; }
.card-style-four h4 { font-size: var(--font-size-xl); font-weight: 700; line-height: 32px; }
.card-style-four p  { min-height: auto; }
.card-style-four.second {
  background: #e9eeff;
  transition: var(--transition);
}
.card-style-four.second:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.card-style-five {
  background: var(--white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: var(--space-md);
  text-align: left;
  transition: var(--transition);
}
.card-style-five:hover { background: var(--gray-50); }
.card-style-five h5 { font-size: var(--font-size-md); font-weight: 700; line-height: 24px; margin-bottom: 0; }

.card-style-six {
  background: var(--white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  padding: var(--space-md);
  text-align: left;
  transition: var(--transition);
}
.card-style-six:hover { background: var(--gray-50); }

.icon-boxs {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.head-2 {
  color: var(--text-light);
  font-size: var(--font-size-base);
  font-weight: 700;
  line-height: 24px;
}


/* ============================================================
   12. SWIPER SLIDERS
============================================================ */

.swiper .swiper-pagination {
  margin-top: 30px;
  position: relative;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--white);
  border: 1px solid var(--color-one);
  height: 12px;
  opacity: 1;
  width: 12px;
}
.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-one);
}

.swiper-homepage-product .swiper-arrows {
  display: flex;
  gap: 15px;
  justify-content: end;
  position: absolute;
  right: 4px;
  top: -15px;
}
.swiper-homepage-product .swiper-arrows a {
  align-items: center;
  background-color: var(--color-one);
  border: medium;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: 25px;
  height: 42px;
  justify-content: center;
  position: relative;
  transition: var(--transition);
  transform-style: preserve-3d;
  width: 42px;
}
.swiper-homepage-product .swiper-arrows a::before {
  background-color: var(--gray-500);
  border-radius: 50%;
  bottom: -4px;
  content: "";
  height: 120%;
  left: -4px;
  opacity: 0;
  position: absolute;
  transition: var(--transition);
  transform: translateZ(-1px);
  width: 120%;
  z-index: -1;
}
.swiper-homepage-product .swiper-arrows a:hover::before { opacity: 0.3; }
.swiper-homepage-product .swiper-arrows a.swiper-button-disabled {
  background-color: var(--gray-50);
  border: 1px solid var(--color-brand-gray);
  color: var(--gray-400);
  cursor: auto;
}
.swiper-homepage-product .swiper-arrows a.swiper-button-disabled::before { content: unset; }

.swiper-homepage-product.two .swiper-wrapper {
  align-items: stretch;
  display: flex;
}
.swiper-homepage-product.two .swiper-slide {
  display: flex;
  height: auto;
}

.swiper-arrows {
  display: flex;
  gap: 20px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.swiper-arrows a {
  background: var(--gray-100);
  border-radius: 50%;
  padding: 10px;
}
.p-relative { position: relative; }


/* ============================================================
   13. TABS
============================================================ */

.tab-section { padding: 40px 0; }

.tab-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tab-btn {
  background: var(--gray-100);
  border: 0;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  flex-direction: row;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  padding: 10px 24px;
  text-align: left;
}
.tab-btn.active {
  background-color: var(--gray-200);
  color: var(--color-one);
}

.tab-content { border-radius: var(--radius-xl); padding: 0; }
.tab-content .tab-pane        { display: none; }
.tab-content .tab-pane.active { display: block; }

.bg-theme-dark {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.bg-theme-dark::after {
  background: linear-gradient(307deg, rgba(98, 61, 230, 0) 66.68%, rgba(0, 0, 204, 0.94) 129.81%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.tab-section .section-title h4          { font-size: 19px; }
.tab-section .feature-style-two h5      { font-size: var(--font-size-sm); line-height: 20px; margin: 0; }
.tab-section .feature-style-one         { background: var(--white); padding: 5px; }
.tab-section .feature-style-one h4      { font-size: 15px; }
.tab-section .feature-style-one p       { font-size: 13px; }
.feature-style-three.tabs-img img       { max-width: 100%; }
.feature-style-three.tabs-img h5        { font-size: 17px; }


/* ============================================================
   14. PLANS / PRICING
============================================================ */

.plan-style-one {
  background-color: var(--gray-50);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  margin-top: 40px;
  padding: 47px 31px;
}
.plan-style-one.card_1 {
  border: 2px solid var(--color-one);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 47px 31px;
}
.plan-style-one.card_1.card_2 {
  border: 2px solid #5daef4;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.plan-style-one h5 { font-size: var(--font-size-lg); font-weight: 700; line-height: 32px; margin-bottom: 8px; }
.plan_subheading   { display: block; font-size: var(--font-size-sm); min-height: 48px; }
.price_section     { align-items: center; display: flex; min-height: 32px; }
.cutted_price      { font-size: var(--font-size-sm); line-height: 24px; text-decoration-line: line-through; }
.price_section .offer {
  background-color: #b7fdb1;
  border-radius: var(--radius-full);
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: 700;
  line-height: 24px;
  margin-left: 8px;
  padding: 4px 12px;
  white-space: nowrap;
}
.plan_text       { font-size: var(--font-size-sm); line-height: 24px; }
.plan-style-one .price-sec { margin: 24px 0 0; }
.plan_btn_block label { font-size: var(--font-size-xs); font-weight: 400; line-height: 16px; margin: 16px 0 32px; }
.plan-border     { border-top: 1px solid var(--border-default); margin-bottom: var(--space-md); width: 100%; }

.plan-style-one ul li {
  font-size: var(--font-size-sm);
  line-height: 24px;
  list-style: none;
  padding-left: 24px;
  position: relative;
  text-align: start;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-color: var(--text-muted);
  text-underline-position: under;
}
.plan-style-one ul li:not(:last-child) { margin-bottom: 12px; }
.plan-style-one ul li::before {
  background-image: url('../images/check.svg');
  background-repeat: no-repeat;
  background-size: 16px 16px;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 16px;
}
.plan-style-one ul li.light_list::before {
  background-image: url('../images/dash.svg');
}
.light_list { color: var(--text-muted); }

.plan_top_box {
  background-color: var(--color-one);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  color: var(--white);
  font-size: var(--font-size-sm);
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 0;
  padding: 8px 24px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
.plan_top_box.two { background-color: #5daef4; color: unset; }
.plan_bottom { margin-top: 24px; text-align: center; }
.plan_bottom a { font-size: var(--font-size-sm); font-weight: 700; line-height: 24px; }
.plan_payment {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: var(--space-md) 16px 0;
}
.plan_payment img { height: 24px; width: 176px; }
.toggle-features {
  color: var(--color-one);
  display: flex;
  font-weight: 600;
  justify-content: center;
  margin-top: 10px;
}


/* ============================================================
   15. TESTIMONIALS
============================================================ */

.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 230px;
  position: relative;
  width: 100%;
}
.user-info {
  background-color: var(--gray-100);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  padding: 20px var(--space-md);
}
.testimonial-content { padding: 20px var(--space-md); }
.testimonial-content .review-text { flex: 1 0 auto; }
.user-info img {
  border-radius: 50%;
  height: 64px;
  margin-inline-end: 11px;
  width: 64px;
}
.user-details h4 { font-size: var(--font-size-md); font-weight: 700; line-height: 24px; }
.user-details p  { font-size: var(--font-size-sm); line-height: 24px; }
.testimonialreview {
  align-items: center;
  display: flex;
  gap: 5px;
  margin: 18px 0;
}
.testimonialreview img       { max-width: 18px; }
.rating_box .testimonialreview img { max-width: 20px; }
.rating_box { padding: 30px 0; }
.rating_box label { font-size: var(--font-size-xs); line-height: 16px; }

.read-more       { color: var(--color-one); font-weight: 700; }
.read-more:hover { color: var(--color-one-dark); }
.last_border     { border-left: 1px solid var(--border-muted); padding-inline-start: 30px; }

.testimonilas-card-two {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.testimonial-image { width: 30%; }
.testimonial-text  { width: 68%; }
.testimonilas-card-two p {
  color: var(--text-primary);
  font-size: var(--font-size-xl);
  font-weight: 400;
  line-height: 43px;
  margin-bottom: 8px;
  margin-top: 8px;
  padding-top: 8px;
}
.testimonial-link {
  color: var(--color-one-dark);
  font-weight: 700;
  padding-bottom: 12px;
  padding-top: 20px;
}
.tetimonilas-ownor h3    { font-size: var(--font-size-lg); font-weight: 700; }
.tetimonilas-ownor label { color: var(--text-primary); font-size: var(--font-size-sm); }

.video-thumbnail {
  border-radius: var(--radius-lg);
  max-width: 340px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.video-thumbnail img { border-radius: var(--radius-lg); display: block; width: 100%; }
.play-button {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url('../images/play.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 60px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
}
.video-thumbnail.unset .play-button { display: none; }
.testi-footer { align-items: center; display: flex; justify-content: space-between; }

@media (max-width: 992px) {
  .testimonilas-card-two { display: block; }
  .testimonial-text { width: 100%; }
}


/* ============================================================
   16. FAQ ACCORDION
============================================================ */

.faq-items .accordion li {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  margin-bottom: 8px;
  overflow: hidden;
  padding: 24px;
}
.faq-items .accordion li a {
  align-items: center;
  color: rgb(54, 54, 54);
  cursor: pointer;
  display: flex;
  font-size: var(--font-size-base);
  font-style: normal;
  font-weight: 600;
  gap: 16px;
  justify-content: space-between;
  line-height: var(--leading-tight);
  transition: var(--transition);
}
.faq-items .accordion li.active a { color: var(--color-one); }
.faq-items .accordion li a img    { transition: var(--transition); width: 25px; }
.faq-items .accordion li.active a img { transform: rotate(-180deg); }
.faq-items .accordion li p {
  color: rgb(54, 54, 54);
  display: none;
  font-size: var(--font-size-base);
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
  margin-top: 16px;
}

/* Bootstrap accordion overrides */
.accordion .accordion-item {
  background: var(--white);
  border: 0;
  border-radius: .5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}
.accordion .accordion-button {
  background-color: var(--white);
  border: 0;
  border-radius: .5rem;
  color: var(--black);
  display: flex;
  font-size: var(--font-size-base);
  overflow-anchor: none;
  padding: 14px;
  position: relative;
  text-align: left;
  transition: all .4s ease;
  width: 100%;
}
.accordion .accordion-body { padding: 14px; }
.accordion .accordion-body .w-5 i { color: #45c4a0; font-size: var(--font-size-md); }
.accordion .accordion-button:focus  { box-shadow: unset; outline: 0; z-index: 3; }
.accordion-button:not(.collapsed)   { background-color: unset; box-shadow: unset; color: unset; }
.accordion .accordion-button.collapsed::before {
  content: "\f4fe";
  font-family: "bootstrap-icons";
  font-size: var(--font-size-md);
  margin-right: 10px;
  transition: transform 0.3s ease;
}
.accordion .accordion-button:not(.collapsed)::before {
  content: "\f2ea";
  font-family: "bootstrap-icons";
  font-size: var(--font-size-md);
  margin-right: 10px;
  transition: transform 0.3s ease;
}
.accordion .accordion-button::after { content: unset; }
.accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}


/* ============================================================
   17. DOMAIN PAGE
============================================================ */

.domain-banner { padding: 50px 0; }

.domain-search-form { position: relative; }
.domain-search-form input {
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  width: 100%;
}
.domain-search-form button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.domain-search-form .select_domain {
  background: var(--white);
  border: unset;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  height: 66px;
  padding: 20px;
  position: absolute;
  right: 17%;
  width: 12%;
}
.domain-search-form.transfers input  { width: 70%; }
.domain-search-form.transfers button {
  height: 66px;
  padding: 20px 30px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(0%);
  width: 16%;
}

@media (max-width: 776px) {
  .domain-search-form.transfers .select_domain {
    background: var(--white);
    border: unset;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    height: 66px;
    padding: 20px;
    position: absolute;
    right: 0%;
    width: 18%;
  }
  .domain-search-form.transfers input  { width: 80%; }
  .domain-search-form.transfers button {
    margin-top: 10px;
    position: unset;
    transform: unset;
    width: 20%;
  }
}
@media (max-width: 480px) {
  .domain-search-form.transfers .select_domain {
    border: unset;
    height: 66px;
    margin-top: 10px;
    padding: 20px;
    position: unset;
    width: 100%;
  }
  .domain-search-form.transfers input  { width: 100%; }
  .domain-search-form.transfers button {
    margin-top: 10px;
    position: unset;
    transform: unset;
    width: 100%;
  }
}

.domain-card {
  background-color: var(--white);
  border: 1px solid var(--color-one);
  border-radius: var(--radius-lg);
  height: 100%;
  padding: var(--space-md);
}
.domain-card .domain-icon { max-height: 100px; max-width: 150px; min-height: 100px; min-width: 150px; }
.domain-card .domain-icon img { max-height: 100px; width: auto; }

.check3 li {
  line-height: 30px;
  list-style: none;
  padding-left: 24px;
  position: relative;
}
.check3 li::before {
  background-image: url('../images/check2.svg');
  background-repeat: no-repeat;
  background-size: 16px 16px;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 16px;
}


/* ============================================================
   18. MISCELLANEOUS COMPONENTS
============================================================ */

input::placeholder { color: var(--text-muted); }

.search-bar { position: relative; }
.search-bar .inputs {
  background-color: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  display: block;
  line-height: 24px;
  outline: 1px solid var(--border-muted);
  padding: 11px 14px 11px 52px;
  transition: border .3s ease, outline .3s ease;
  width: 100%;
}
.search-bar .search-icon {
  left: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.video_sec {
  border-radius: 5px;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
}
.video_sec iframe {
  border: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.titanmail-video {
  background-color: var(--gray-50);
  border: 15px solid rgba(196, 192, 192, 0.5);
  border-radius: 5px;
  overflow: hidden;
}
.titanmail-video video {
  background-color: var(--black);
  border: none;
  display: flex;
  height: 100%;
  width: 100%;
}

.banner-up                  { position: relative; z-index: 1; }
.banner-up > .container     { margin-top: -70px; }
.feature-box {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 30px 20px;
  text-align: center;
}
.feature-box img    { margin-bottom: 15px; max-height: 60px; }
.feature-box h4     { font-size: var(--font-size-md); font-weight: 600; margin-bottom: 0; text-align: center; }
.feature-box a      { color: #524972; display: block; font-size: var(--font-size-base); text-align: center; }
.feature-box a:hover { color: var(--color-one); }

.custom-card-block {
  background: var(--white);
  border: 1px solid var(--color-one);
  border-radius: 6px;
  padding: 30px;
}
.cloud-package__box {
  border: 1px dashed var(--border-muted);
  border-radius: .25rem;
  padding: 10px;
}
.account-eidt label { color: var(--text-secondary); font-weight: 500; margin-bottom: 10px; margin-top: 10px; }
.custom-card-block .form-control {
  border-color: var(--color-brand-gray);
  box-shadow: none;
  height: calc(2.56em + .75rem + 2px);
  padding: .75rem 15px;
}
.custom-card-block textarea.form-control { height: auto; }

.head_top {
  background: #2f1c6a;
  border-radius: var(--radius-full);
  color: var(--color-one);
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 4px 12px;
  text-align: center;
  text-transform: uppercase;
  width: fit-content;
}
.head_top.two {
  background: var(--gray-200);
  color: var(--black);
}
@media (max-width: 480px) {
  .head_top.two { display: flex; justify-content: center; text-align: center; }
}

.subheading.two h5 {
  align-items: center;
  column-gap: 8px;
  display: flex;
  flex-wrap: wrap;
  font-size: var(--font-size-lg);
  justify-content: center;
  padding-bottom: var(--space-lg);
}
.subheading.two h5 img { height: 40px; max-width: 40px; min-width: 24px; }

.btn.btn-dark:hover {
  background: linear-gradient(136deg, #025aa5 40%, #6233f1 100%);
  border-color: #045aa5;
  color: var(--black);
}


/* ============================================================
   19. LOGIN / REGISTER PAGES
============================================================ */

.login_page  { align-items: center; background: var(--gray-100); display: flex; height: 100vh; }
.register_page { background: var(--gray-100); }
.login_form,
.register_page .login_form {
  background-color: white;
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.login_form label { margin: 20px 0 7px; }
.login_form .inputs {
  background-color: var(--white);
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-sm);
  box-sizing: border-box;
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 400;
  height: 48px;
  line-height: 1.25;
  padding: .85em 1.15em;
  vertical-align: middle;
  width: 100%;
}
.reset_pass { align-items: center; display: flex; justify-content: space-between; }

@media (max-width: 480px) {
  .login_form,
  .register_page .login_form { padding: 30px 20px; }
}


/* ============================================================
   20. TOP BAR
============================================================ */

.topbar { background: rgba(0, 0, 204, 0.07); }
.top-bar-support { align-items: center; display: flex; gap: 20px; }
.top-bar-support a { color: var(--black); font-size: var(--font-size-sm); font-weight: 500; }
.top-bar { display: flex; justify-content: flex-end; }
.top-bar-dropdown { position: relative; }

.dropdown-btn {
  align-items: center;
  background-color: unset;
  border: unset;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  font-size: var(--font-size-sm);
  font-weight: 500;
  padding: 6px 15px;
}
.top-bar .dropdown-btn i { font-size: var(--font-size-xs); margin-left: 5px; }

.dropdown-menu-two {
  background-color: var(--white);
  border: 0;
  border-radius: 5px;
  box-shadow: var(--shadow-md);
  display: none;
  left: 0;
  padding: 10px;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
  width: 200px;
  z-index: 999999999;
}
.top-bar-dropdown.language   .dropdown-menu-two { max-height: 300px; overflow: auto; }
.top-bar-dropdown.notification .dropdown-menu-two { width: 320px; }
.top-bar-dropdown.account    .dropdown-menu-two { width: 200px; }
.top-bar-dropdown .dropdown-menu-two.open { display: block; }
.top-bar .dropdown-menu-two li { cursor: pointer; padding: 8px 15px; transition: var(--transition); }
.topbar .dropdown-menu-two li a { color: var(--black); font-size: 15px; transition: var(--transition); }
.topbar .dropdown-menu-two li:hover { background-color: var(--color-one); border-radius: 5px; }
.topbar .dropdown-menu-two li:hover a { color: var(--white); }

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


/* ============================================================
   21. FOOTER
============================================================ */

.footer { padding-top: var(--space-xl); }
.footer .footer-nav h4 { display: block; font-size: var(--font-size-md); line-height: 24px; text-transform: uppercase; }
.footer .footer-nav li a {
  color: var(--gray-950);
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 8px;
  padding-inline-end: 8px;
  transition: var(--transition);
}
.footer .footer-nav li a:hover { color: var(--color-one); }
.footer .logo img { max-height: 40px; }
.footer .social-icon { justify-content: end; }
.footer .social-icon ul { display: flex; gap: 15px; justify-content: end; text-align: end; }
.footer .social-icon ul li a { display: block; height: 32px; width: 32px; }
.footer .payment ul { display: flex; flex-wrap: wrap; gap: 10px; }
.footer .payment ul li { height: 40px; width: 60px; }
.footer .payment ul li img {
  border: 1px solid var(--border-default);
  border-radius: 6px;
  height: 40px;
  width: 60px;
}
.footer .payment_2 { align-items: start; display: flex; flex-wrap: wrap; gap: 20px; }
.footer_bottom ul { display: flex; flex-wrap: wrap; }
.footer_bottom ul li { margin-inline-end: 15px; }
.footer_bottom ul li a { color: var(--gray-950); font-size: var(--font-size-sm); font-weight: 400; line-height: 24px; transition: var(--transition); }
.footer_bottom ul li a:hover { color: var(--color-one); }
.footer_copyright {
  align-items: center;
  border-top: 1px solid var(--border-default);
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding: 20px 0;
}
.footer_copyright p { color: var(--gray-950); font-size: var(--font-size-sm); font-weight: 400; line-height: 24px; }

@media (max-width: 767px) {
  .footer .social-icon { display: flex; justify-content: start; margin-top: 20px; }
}


/* ============================================================
   22. SKIP LINK & HEADER ACCESSIBILITY ADDITIONS
============================================================ */

/* Skip-to-content link — visible only on keyboard focus */
.skip-link {
  background: var(--color-one);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: var(--font-size-sm);
  font-weight: 700;
  left: -9999px;
  padding: 10px 20px;
  position: absolute;
  top: auto;
  z-index: 100000;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* Dropdown CTA heading inside menu images (replaces <h5>) */
.dropdown-cta-heading {
  align-items: center;
  color: var(--text-primary);
  display: flex;
  font-size: var(--font-size-md);
  font-weight: 700;
  justify-content: space-between;
  line-height: 24px;
  margin-top: 30px;
}
.dropdown-cta-heading svg {
  height: 20px;
  width: 20px;
}


/* ============================================================
   23. HOMEPAGE ADDITIONS
============================================================ */

/* ── Screen Reader Only (accessibility utility) ── */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* ── Trust Stats Section ── */
.bg-theme-light.two .col-6 h3,
.bg-theme-light.two .col-md-3 h3 {
  color: var(--color-one);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.bg-theme-light.two .col-6 p,
.bg-theme-light.two .col-md-3 p {
  color: var(--gray-700);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .bg-theme-light.two .col-6 h3,
  .bg-theme-light.two .col-md-3 h3 {
    font-size: 28px;
  }
}

/* ── Accessible Tab Buttons ── */
.tab-btn[role="tab"][aria-selected="true"] {
  background-color: var(--gray-200);
  color: var(--color-one);
}
.tab-btn[role="tab"][aria-selected="false"] {
  background: var(--gray-100);
  color: var(--text-primary);
}
.tab-btn[role="tab"]:focus-visible {
  outline: 2px solid var(--color-one);
  outline-offset: 2px;
}

/* ── Accessible Tab Panels ── */
.tab-content .tab-pane[role="tabpanel"] {
  display: none;
}
.tab-content .tab-pane[role="tabpanel"].active {
  display: block;
}

/* ── FAQ Accordion Accessibility ── */
.faq-items .accordion li a[role="button"] {
  cursor: pointer;
}
.faq-items .accordion li a[role="button"]:focus-visible {
  outline: 2px solid var(--color-one);
  outline-offset: -2px;
  border-radius: var(--radius-sm);
}
.faq-items .accordion li a[aria-expanded="true"] {
  color: var(--color-one);
}
.faq-items .accordion li a[aria-expanded="true"] img {
  transform: rotate(-180deg);
}

/* ── Domain Extension Buttons (keyboard accessible) ── */
.hg-domain-ext[role="button"]:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.15);
}

/* ── SVG Icon Utility (replaces inline styles) ── */
.h-svgo-icon {
  display: inline-block;
  vertical-align: middle;
}
.card-style-one .h-svgo-icon {
  fill: var(--white);
  color: var(--white);
}
.testimonilas-card-two .h-svgo-icon,
.swiper-arrows .h-svgo-icon {
  fill: var(--color-one);
  color: var(--color-one);
}

/* ── FAQ Internal Links ── */
.faq-items .accordion li p a {
  color: var(--color-one);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 3px;
}
.faq-items .accordion li p a:hover {
  color: var(--color-one-dark);
  text-decoration-style: solid;
}

/* ── Swiper Arrow Accessibility ── */
.swiper-arrows a[role="button"]:focus-visible {
  outline: 2px solid var(--color-one);
  outline-offset: 2px;
  border-radius: 50%;
}
.swiper-homepage-product .swiper-arrows a[role="button"]:focus-visible {
  outline-color: var(--white);
}

/* ── Section Heading Subtext ── */
.section-heading p {
  color: var(--text-muted);
  font-size: var(--font-size-base);
  line-height: 24px;
  margin-top: 8px;
}

/* ── Footer Text Fix ── */
.footer.bg_1 p,
.footer.bg_1 a,
.footer.bg_1 li a,
.footer.bg_1 .footer-nav li a,
.footer.bg_1 .footer_bottom ul li a,
.footer.bg_1 .footer_copyright p {
  color: #a0a3b5;
}
.footer.bg_1 .footer-nav h4,
.footer.bg_1 .bold.color_1 {
  color: #fff;
}
.footer.bg_1 .footer-nav li a:hover,
.footer.bg_1 .footer_bottom ul li a:hover {
  color: #fff;
}

/* ── Dark Footer (MilesWeb Style) ── */
.footer.bg_1 {
  background: #0a0e27 !important;
}
.footer.bg_1 .footer-nav h4,
.footer.bg_1 .bold.color_1 {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
}
.footer.bg_1 .footer-nav h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: #0000CC;
  border-radius: 2px;
}
.footer.bg_1 p,
.footer.bg_1 a,
.footer.bg_1 li a,
.footer.bg_1 .footer-nav li a,
.footer.bg_1 .footer_bottom ul li a,
.footer.bg_1 .footer_copyright p {
  color: #8b8fa3;
}
.footer.bg_1 .footer-nav li a:hover,
.footer.bg_1 .footer_bottom ul li a:hover,
.footer.bg_1 a:hover {
  color: #fff;
}
.footer.bg_1 .social-icon ul li a svg {
  fill: #8b8fa3;
}
.footer.bg_1 .social-icon ul li a:hover svg {
  fill: #fff;
}
.footer.bg_1 .footer_copyright {
  border-top-color: rgba(255,255,255,0.08);
}
.footer.bg_1 .footer_bottom ul li a {
  color: #8b8fa3;
}
.footer.bg_1 .payment_2 span {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.1) !important;
  color: #c4c7d4 !important;
}
.footer.bg_1 .logo img {
  filter: brightness(0) invert(1);
}
