:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #3b3b3b;
  --heading-color: #292929;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #0d0d0d;
  --link-color: #65c081;
  --header-bg-color: #ffffff;
  --font-family: "Roboto", Arial, sans-serif;
  --nav-link-color: #141414;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color) !important;
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
h1 {
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
  font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}

section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}

h2,
h3 {
  color: var(--heading-color) !important;
}

.content-area a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}

.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}

.sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}

.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}

.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}

.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}

.sidebar-page-list li a:hover {
  padding-left: 11px;
}

.error_page {
  min-height: 70vh;
}

.footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}

.footer a {
  text-decoration: none;
  color: var(--link-color) !important;
}

.navbar {
  background-color: var(--header-bg-color) !important;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.hero-section {
  padding: 115px 0 25px 0;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}
.hero-section.gradient-bg {
  background: linear-gradient(
    135deg,
    var(--hero-gradient1),
    var(--hero-gradient2)
  );
}

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

.navbar-light .navbar-nav .nav-link {
  color: var(--nav-link-color, #141414) !important;
}

.navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
/* Mobile nav */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(
      in srgb,
      var(--header-bg-color) 65%,
      transparent
    );
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 7px 0;
  }

  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }

  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}

@media screen and (min-width: 1199.98px) {
  .dropdown-menu {
    top: 100%;
    left: 50% !important;
    transform: translateX(-50%);
  }
}

.navbar .dropdown-toggle::after {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}

.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}

.custom-dropdown .dropdown-item i {
  width: 16px;
  color: #6c757d;
  transition: color 0.3s ease;
}

.custom-dropdown .dropdown-item:hover i {
  color: #fff;
}

.dropdown-menu {
  opacity: 0;
  transition: all 0.3s ease;
  display: block;
  visibility: hidden;
}

.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

@media (min-width: 1199.98px) {
  .custom-dropdown {
    max-width: 200px;
  }
}

@media (max-width: 1199.98px) {
  .custom-dropdown {
    display: none;
    background: #f8f9fa;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    border-top: 1px solid #dee2e6;
  }

  .custom-dropdown .dropdown-item:hover {
    margin: 0;
    border-radius: 0;
    transform: none;
  }
}

.dropdown-menu:hover,
.dropdown:hover .dropdown-menu {
  display: block !important;
  visibility: visible;
  opacity: 1;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #91919131 !important;
}

.floating-rounded-navbar {
  background-color: var(--header-bg-color) !important;
  position: fixed !important;
  top: 15px !important;
  left: 7px !important;
  right: 7px !important;
  width: calc(100% - 11px) !important;
  z-index: 2000;
  border-radius: 21px;
  transition: all 0.3s ease;
}

@media (max-width: 1199.98px) {
  .floating-rounded-navbar .navbar-collapse {
    top: 85px !important;
  }
}

.navbar-brand {
  margin-right: 0 !important;
}

.contact-container {
  width: 500px;
  margin: 100px auto 35px;
  padding: 15px 21px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  color: black !important;
}

@media screen and (max-width: 768px) {
  .contact-container {
    width: 100%;
    padding: 15px;
  }
}
.contact-header {
  text-align: center;
  margin-bottom: 20px;
}

.contact-header i {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 10px;
}

.email-link {
  display: block;
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  color: #0d6efd;
  text-decoration: none;
}
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--link-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--footer-bg-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--link-color), transparent 20%);
  color: var(--footer-bg-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
.hosting-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 15px;
  border: 1px solid #ddd;
}

.hosting-table th,
.hosting-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.hosting-table th {
  background-color: #f3f4f6;
  font-weight: bold;
}

.hosting-table tr:nth-child(even) {
  background-color: #fafafa;
}

.hosting-table tr:hover {
  background-color: #eef2ff;
}

.hosting-table .center {
  text-align: center;
}

.hosting-table .badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.85em;
  font-weight: 600;
}

.hosting-table .yes {
  background-color: #dcfce7;
  color: #166534;
}

.hosting-table .no {
  background-color: #fee2e2;
  color: #991b1b;
}

.hosting-table caption {
  caption-side: top;
  text-align: left;
  font-weight: bold;
  padding: 8px 0;
}
.table-container {
  width: 100%;
  overflow-x: auto; /* Enables horizontal scroll */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}
.table-container::-webkit-scrollbar {
  height: 6px;
}
.table-container::-webkit-scrollbar-thumb {
  background-color: #32a852;
  border-radius: 3px;
}
.table-container::-webkit-scrollbar-track {
  background: #e6f4ea;
}
.heading {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #147c87 0%, #0c6142 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    #147c87,
    #0c6142,
    transparent
  );
  border-radius: 2px;
}

.heading:hover::after {
  width: 100%;
  transition: width 0.3s ease;
}
.colored {
  background: linear-gradient(135deg, #147c87 0%, #0c6142 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cust-bg {
  background: linear-gradient(135deg, #f5faf6 0%, #c3e2d8 100%);
  border-left: 5px solid #65c081;
  border-radius: 12px;
  padding: 21px;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
  position: relative;
  overflow: hidden;
}

.cust-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cust-bg h2 {
  color: #667eea;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.cust-bg p {
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.cust-bg:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
  transition: all 0.3s ease;
}
.img_el {
  padding: 60px 0;
  position: relative;
  margin-top: 17px;
}
.img_el:before {
  content: "";
  background: color-mix(in srgb, #00000091, transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 17px;
}
.img_el .img_el-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/word-press-hosting.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  border-radius: 17px;
}
.img_el .container {
  position: relative;
  z-index: 3;
}
.img_el .container h2,
.img_el .container p {
  color: white !important;
}
.img_el .container h3 {
  color: #ef8a54;
}
.type {
  padding-left: 1.5rem;
  border-left: 3px solid #147c87;
  margin-bottom: 1rem;
  background-color: #f8fdfb;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  clear: none;
}

.type::before {
  content: "▸";
  position: absolute;
  left: 0.5rem;
  color: #147c87;
  font-size: 1.2rem;
  font-weight: bold;
}

.type:hover {
  border-left-color: #0c6142;
  background-color: #edf7f3;
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(20, 124, 135, 0.1);
}

/* Ensure floated image doesn't get covered */
@media (min-width: 768px) {
  .type {
    display: flow-root;
  }
}

.glossary h2 {
  color: #147c87;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
}

.glossary h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #147c87, transparent);
  border-radius: 2px;
}

.glossary p:first-of-type {
  text-align: center;
  font-style: italic;
  color: #5a5a5a;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.glossary p:not(:first-of-type):not(:last-of-type) {
  padding: 0.75rem 1.25rem;
  background-color: #ffffff;
  border-left: 4px solid #147c87;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.glossary p:not(:first-of-type):not(:last-of-type):hover {
  border-left-color: #0c6142;
  transform: translateX(5px);
  box-shadow: 0 4px 10px rgba(20, 124, 135, 0.1);
}

.glossary p:last-of-type {
  text-align: center;
  margin-top: 1.5rem;
  font-style: italic;
  color: #5a5a5a;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}
.table-cust {
  margin: 1.25rem auto 0;
  overflow-x: auto; /* allows horizontal scroll on small screens */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.table-cust table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  border: 1px solid #dee2e6;
  background-color: #fff;
}

.table-cust th,
.table-cust td {
  border: 1px solid #dddddd;
  padding: 15px 10px;
}

.table-cust th {
  font-weight: bold;
  background-color: #f8f8f8;
  color: #2a2a2a;
}

.table-cust td {
  color: #555;
}

.table-cust tr:hover {
  background-color: rgba(208, 183, 134, 0.1); /* subtle accent highlight */
}

/* Responsive horizontal scroll for small screens */
@media (max-width: 768px) {
  .table-wrapper {
    min-width: 100%;
  }
}
.comparison-label {
  font-weight: 700;
  color: #147c87;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
  overflow: hidden;
  clear: none;
}

.comparison-label::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: #0c6142;
  font-size: 1rem;
}

.comparison-content {
  background: linear-gradient(135deg, #f8fdfb 0%, #edf7f3 100%);
  border-left: 4px solid #147c87;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  line-height: 1.7;
  box-shadow: 0 2px 6px rgba(20, 124, 135, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  clear: none;
}

.comparison-content:hover {
  border-left-color: #0c6142;
  transform: translateX(3px);
  box-shadow: 0 4px 10px rgba(20, 124, 135, 0.12);
}
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #e8e8e8;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #147c87;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(20, 124, 135, 0.15) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-brand {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #147c87 0%, #65c081 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-description {
  color: #b8b8b8;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-heading {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #147c87;
}

.footer-links {
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #147c87;
}

.footer-links a:hover {
  color: #147c87;
  padding-left: 20px;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-contact p {
  color: #b8b8b8;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-contact i {
  color: #147c87;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #b8b8b8;
  font-size: 0.9rem;
}

.footer-tagline {
  color: #b8b8b8;
  font-size: 0.9rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-brand,
  .footer-heading {
    text-align: center;
  }

  .footer-description {
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }
}
.footer img {
  filter: brightness(0) invert(1);
}
