:root {
  /* Brand Colors */
  --brand-dark: #020617;
  --brand-blue: #2563eb;
  --blue-400: #016ef4;
  --brand-navy: #0b1e4d;
  --heading-dark-blue: #091e42;
  --para-dark-blue: #253858;

  /* Neutral / Base Colors */
  --bg-light: #f8fafc;
  --color-white: #ffffff;
  --text-muted: #94a3b8;

  /* Transparent Brand Blue */
  --brand-blue-10: rgba(37, 99, 235, 0.1);
  --brand-blue-20: rgba(37, 99, 235, 0.2);
  /* --brand-blue-30: rgba(37, 99, 235, 0.3); */

  /* Transparent White */
  --white-05: rgba(255, 255, 255, 0.05);
  --white-07: rgba(255, 255, 255, 0.07);
  /* --white-20: rgba(255, 255, 255, 0.2); */
  --white-90: rgba(255, 255, 255, 0.9);
  --white-b3: #ffffffb3;
  /* --white-transparent: #ffffff00; */

  /* Spacing / Shadows */
  --shadow-light: rgba(0, 0, 0, 0.02);
  --shadow-blue: rgba(37, 99, 235, 0.2);
  --shadow-hero: #4d5be21a;

  /* Hero Banner / Sections */
  --bg-lavender: rgba(60, 71, 251, 0.04);
  --primary-purple: rgba(112, 101, 240, 1);
  --text-dark: #111111;
  --text-muted-dark: #555555;
  --text-slate: rgba(108, 114, 127, 1);
  --bg-blue-light: #f5faff;
  --light-blue: #d8e9ff;

  /* Product Section Colors */
  --brand-accent: #3b59ff;
  --brand-blue-secondary: #0d6efd;
  --color-black: #000000;
  --text-muted-alt: #6c757d;

  /* Comparison Card Colors */
  --border-gray: #f1f1f1;
  --border-gray-light: #f1f5f9;
  --border-blue-light: #eef2f6;
  /* --color-red: #ef4444; */
  --color-light-blue: #3b82f6;
  --text-dark-gray: #444;

  /* Trust Section Colors */
  --bg-trust-container: #f3f6ff;
  --border-trust-container: #e1e7ff;
  --text-muted-dark-alt: #666;

  /* Benefit Section Colors */
  --bg-benefit-card: rgba(247, 247, 253, 1);
  --border-benefit-card: rgba(224, 222, 247, 1);
  --bg-btn-browse: rgba(16, 10, 85, 1);
  --bg-btn-browse-hover: #1a147a;
  --footer-bg: #020310;

  /* Misc */
  --badge-text: #d3e7ff;
  /* rgba(211, 231, 255, 1) to hex for consistency */
  --color-red: #EA4545;

  /* Font Families */
  --font-dm: "DM Sans", sans-serif;
}

html,
body {
  overflow-x: hidden;
}

body {
  background-color: #fafafa;
  font-family: var(--font-dm);
}

.font-poppins {
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}

/* --- Utilities --- */
.mt50 {
  margin-top: 50px;
}

.pt-100 {
  padding-top: 80px;
}

.pb-100 {
  padding-bottom: 80px;
}

.mb-100 {
  margin-bottom: 80px;
}

.mw-85 {
  max-width: 85%;
}

.secondary-outline-btn,
.primary-btn {
  padding: 12px 30px;
  border-radius: 30px;
  transition: .3s;
}

.primary-btn {
  background: #016ef4;
  border: 1px solid #016ef4;
}

.secondary-outline-btn {
  background-color: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .2);
}

.secondary-outline-btn:hover {
  background-color: rgba(255, 255, 255, .12);
  border-color: #ffffff;
  color: #fff;
  transform: translateY(-2px);
}

.badge-soft {
  background: var(--brand-blue-10);
  color: var(--badge-text);
  border: 1px solid var(--brand-blue-20);
  font-size: 14px;
  font-weight: 400;
  padding: 10px 15px;
  border-radius: 50px;
  letter-spacing: 1px;
  width: fit-content;
}

@media (max-width: 767px) {
  .badge-soft {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
}

/* --- Navigation --- */
.navbar {
  padding: 24px 0;
}

#main-navbar.scrolled {
  background-color: var(--brand-dark) !important;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.navbar .nav-link {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.3s;
}

.navbar .nav-link:hover {
  color: var(--color-white) !important;
}

/* Dropdown indicator for desktop nav */
@media (min-width: 992px) {
  .navbar .nav-item.dropdown>.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
  }

  .navbar .nav-item.dropdown>.nav-link::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    opacity: 0.75;
    transform: translateY(-1px) rotate(45deg);
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .navbar .nav-item.dropdown.has-megamenu:hover>.nav-link::after,
  .navbar .nav-item.dropdown.has-megamenu.is-open>.nav-link::after {
    transform: translateY(1px) rotate(-135deg);
    opacity: 1;
  }
}

/* Offcanvas (mobile) - apply globally so Bootstrap's default white is overridden */
.offcanvas-mobile {
  background-color: var(--brand-dark) !important;
  color: var(--white-90) !important;
}

.offcanvas-logo {
  object-fit: contain !important;
  max-width: 100% !important;
  height: auto !important;
}

.offcanvas-scroll {
  overflow-y: auto !important;
}

/* Ensure header logos/icons are a consistent 24x24 */
#main-navbar .navbar-brand img,
#mobileOffcanvas .offcanvas-header img {
  object-fit: contain;
  max-width: 100%;
  height: auto;
}

/* Mega Menu Styles */
@media (min-width: 992px) {
  .has-megamenu .megamenu {
    width: 700px !important;
    max-width: 95vw;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    display: block !important;
    transition: all 0.3s ease;
    margin-top: -10;
    position: absolute;
    --megamenu-x: 0;
    --megamenu-y: 20px;
    transform: translateX(var(--megamenu-x)) translateY(var(--megamenu-y));
    transition:
      transform 0.25s ease,
      opacity 0.2s ease;
  }

  .has-megamenu:hover .megamenu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    --megamenu-y: 10px;
  }

  .has-megamenu.is-open .megamenu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    --megamenu-y: 10px;
  }

  /* Triangle Arrow Base */
  .has-megamenu .megamenu::before {
    content: "";
    position: absolute;
    top: -6px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 2px;
    z-index: 10;
  }

  .menu-about .megamenu {
    left: auto !important;
    right: -15px !important;
    --megamenu-x: 0 !important;
  }

  .menu-about .megamenu::before {
    right: 42px;
    left: auto;
    transform: rotate(45deg);
  }

  .menu-solutions .megamenu {
    left: 50% !important;
    right: auto !important;
    --megamenu-x: -50% !important;
  }

  .menu-solutions .megamenu::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(45deg);
  }

  /* Wide menu: anchor to the navbar and center in the viewport so it can't
     overflow the right edge on smaller desktops */
  .menu-applications {
    position: static !important;
  }

  .menu-applications .megamenu {
    left: 50% !important;
    right: auto !important;
    --megamenu-x: -50% !important;
  }

  .menu-applications .megamenu::before {
    display: none;
  }

  .menu-compute .megamenu {
    left: 0 !important;
    --megamenu-x: 0 !important;
  }

  .menu-compute .megamenu::before {
    left: 22px;
    right: auto;
    transform: rotate(45deg);
  }

  /* Frameworks menu specific alignment */
  .menu-frameworks .megamenu {
    left: 0 !important;
    --megamenu-x: 0 !important;
  }

  .menu-frameworks .megamenu::before {
    left: 22px;
    right: auto;
    transform: rotate(45deg);
  }

  /* Devops menu specific alignment */
  .menu-devops .megamenu {
    left: 0 !important;
    --megamenu-x: 0 !important;
  }

  .menu-devops .megamenu::before {
    left: 22px;
    right: auto;
    transform: rotate(45deg);
  }

  /* Database menu specific alignment */
  .menu-database .megamenu {
    left: 50% !important;
    right: auto !important;
    --megamenu-x: -50% !important;
    width: 700px !important;
    max-width: 95vw !important;
  }

  .menu-database .megamenu::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(45deg);
  }
}

@media (min-width: 992px) {

  /* Normalize perceived icon size for database/cluster menus */
  .menu-database .megamenu-item img,
  .menu-solutions .megamenu-item img {
    width: 24px !important;
    height: 24px !important;
  }
}

.megamenu-item {
  transition: all 0.2s ease;
}

.megamenu-item:hover {
  background-color: var(--brand-blue-10);
}

@media (min-width: 992px) {
  .megamenu-compute {
    width: 760px !important;
    padding: 0 !important;
  }
}

.compute-megamenu-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.compute-megamenu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid #eef2f6;
}

.compute-megamenu-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #eef2ff;
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.compute-megamenu-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  white-space: nowrap;
}

.compute-megamenu-grid {
  padding: 12px;
}

.compute-megamenu-item {
  padding: 18px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
  /* height: 100%; */
}

.compute-megamenu-item:hover {
  background: #ffffff;
  border-color: #dbe4ff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
}

.compute-megamenu-iconbox {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e7efff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compute-megamenu-iconbox img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.app-megamenu-foot {
  border-top: 1px solid rgba(3, 0, 20, 0.08);
  background: rgba(1, 110, 244, 0.03);
  padding: 12px 20px;
  border-radius: 0 0 16px 16px;
}

.megamenu-title {
  display: block;
  font-weight: 600;
  color: #111827;
  margin-bottom: 2px;
  line-height: 1.1;
  font-size: 13px;
}

.megamenu-desc {
  display: block;
  color: #6b7280;
  font-size: 0.72rem;
  line-height: 1.3;
}

/* Applications megamenu (light theme inspired) */
@media (min-width: 992px) {
  .megamenu-applications {
    width: min(1080px, calc(100vw - 48px)) !important;
    padding: 0 !important;
  }
}

/* Columns layout: sections sit side by side, so stacked-section dividers are noise */
.app-megamenu-body .row .app-megamenu-section {
  border-top: 0;
  padding-top: 2px;
}

.app-megamenu-body .row .app-megamenu-section .app-megamenu-section-title {
  white-space: nowrap;
  margin-bottom: 12px;
}

.app-megamenu-body .compute-megamenu-item {
  padding: 9px 10px;
}

.app-megamenu-body .megamenu-desc {
  line-height: 1.35;
}

.app-megamenu-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  color: #111827;
}

.app-megamenu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid #eef2f6;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.app-megamenu-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #e6f7f1;
  color: #0f766e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.app-megamenu-subtitle {
  color: #6b7280;
  font-size: 0.85rem;
}

.app-megamenu-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  white-space: nowrap;
}

.app-megamenu-body {
  padding: 12px 16px 18px;
}

.app-megamenu-section {
  padding: 10px 0 6px;
  border-top: 1px solid #eef2f6;
}

.app-megamenu-section:first-child {
  border-top: 0;
  padding-top: 2px;
}

.app-megamenu-section-title {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  color: #94a3b8;
  font-weight: 700;
  margin-bottom: 10px;
}

.plan-table-subheading {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  width: 75%;
}

.app-megamenu-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  background: #e5e7eb;
  flex-shrink: 0;
}

.app-icon-wp {
  background: #e6efff;
  color: #1e40af;
}

.app-icon-jm {
  background: #e6fff5;
  color: #0f766e;
}

.app-icon-dr {
  background: #ece9ff;
  color: #4338ca;
}

.app-icon-oc {
  background: #fff7e6;
  color: #b45309;
}

.app-icon-mg {
  background: #ffe8e8;
  color: #b91c1c;
}

.app-icon-ps {
  background: #fff3e6;
  color: #9a3412;
}

.app-icon-oc-alt {
  background: #f0fdf4;
  color: #166534;
}

.app-icon-erp {
  background: #e0f2fe;
  color: #0c4a6e;
}

.app-icon-od {
  background: #ecfeff;
  color: #0e7490;
}

.app-icon-nc {
  background: #eef2ff;
  color: #4338ca;
}

.app-icon-mm {
  background: #fef3c7;
  color: #92400e;
}

/* Frameworks megamenu (light theme inspired) */
@media (min-width: 992px) {
  .megamenu-frameworks {
    width: 900px !important;
    padding: 0 !important;
  }
}

.fw-megamenu-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  color: #111827;
}

.fw-megamenu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid #eef2f6;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.fw-megamenu-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #ece9ff;
  color: #4c1d95;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.fw-megamenu-subtitle {
  color: #6b7280;
  font-size: 0.85rem;
}

.fw-megamenu-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  white-space: nowrap;
}

.fw-megamenu-body {
  padding: 12px 16px 18px;
}

.fw-megamenu-section {
  padding: 10px 0 6px;
  border-top: 1px solid #eef2f6;
}

.fw-megamenu-section:first-child {
  border-top: 0;
  padding-top: 2px;
}

.fw-megamenu-section-title {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  color: #94a3b8;
  font-weight: 700;
  margin-bottom: 10px;
}

.fw-megamenu-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  background: #e5e7eb;
  flex-shrink: 0;
}

.fw-icon-php {
  background: #e6efff;
  color: #1e40af;
}

.fw-icon-py {
  background: #e6fff5;
  color: #0f766e;
}

.fw-icon-node {
  background: #f0fdf4;
  color: #166534;
}

.fw-icon-go {
  background: #fff7e6;
  color: #b45309;
}

.fw-icon-rb {
  background: #ffe8e8;
  color: #b91c1c;
}

.fw-icon-jv {
  background: #eef2ff;
  color: #4338ca;
}

.fw-icon-lv {
  background: #fff1f2;
  color: #9f1239;
}

.fw-icon-net {
  background: #e0f2fe;
  color: #0c4a6e;
}

.fw-icon-tc {
  background: #ecfeff;
  color: #0e7490;
}

/* DevOps megamenu (light theme inspired) */
@media (min-width: 992px) {
  .megamenu-devops {
    width: 760px !important;
    padding: 0 !important;
  }
}

.devops-megamenu-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  color: #111827;
}

.devops-megamenu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid #eef2f6;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.devops-megamenu-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fef3c7;
  color: #92400e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.devops-megamenu-subtitle {
  color: #6b7280;
  font-size: 0.85rem;
}

.devops-megamenu-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  white-space: nowrap;
}

.devops-megamenu-body {
  padding: 12px 16px 18px;
}

.devops-megamenu-section {
  padding: 10px 0 6px;
  border-top: 1px solid #eef2f6;
}

.devops-megamenu-section:first-child {
  border-top: 0;
  padding-top: 2px;
}

.devops-megamenu-section-title {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  color: #94a3b8;
  font-weight: 700;
  margin-bottom: 10px;
}

.devops-megamenu-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  background: #e5e7eb;
  flex-shrink: 0;
}

.devops-icon-dk {
  background: #e0f2fe;
  color: #0c4a6e;
}

.devops-icon-sw {
  background: #e6fff5;
  color: #0f766e;
}

.devops-icon-k8s {
  background: #ece9ff;
  color: #4338ca;
}

.devops-icon-je {
  background: #fff7e6;
  color: #b45309;
}

.devops-icon-gl {
  background: #ffe8e8;
  color: #b91c1c;
}

.devops-icon-gb {
  background: #eef2ff;
  color: #4338ca;
}

/* Database megamenu (light theme inspired) */
@media (min-width: 992px) {
  .megamenu-database {
    width: 920px !important;
    padding: 0 !important;
  }
}

.db-megamenu-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  color: #111827;
}

.db-megamenu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid #eef2f6;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.db-megamenu-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fef2f2;
  color: #9f1239;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.db-megamenu-subtitle {
  color: #6b7280;
  font-size: 0.85rem;
}

.db-megamenu-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  white-space: nowrap;
}

.db-megamenu-body {
  padding: 12px 16px 18px;
}

.db-megamenu-section {
  padding: 10px 0 6px;
  border-top: 1px solid #eef2f6;
}

.db-megamenu-section:first-child {
  border-top: 0;
  padding-top: 2px;
}

.db-megamenu-section-title {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  color: #94a3b8;
  font-weight: 700;
  margin-bottom: 10px;
}

.db-megamenu-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  background: #e5e7eb;
  flex-shrink: 0;
}

.db-icon-my {
  background: #e0f2fe;
  color: #0c4a6e;
}

.db-icon-pg {
  background: #e6f7f1;
  color: #0f766e;
}

.db-icon-ma {
  background: #f1f5ff;
  color: #4338ca;
}

.db-icon-mg {
  background: #f0fdf4;
  color: #166534;
}

.db-icon-rd {
  background: #fff7ed;
  color: #9a3412;
}

.db-icon-es {
  background: #fef3c7;
  color: #92400e;
}

.db-icon-ch {
  background: #fef2f2;
  color: #9f1239;
}

.db-icon-ix {
  background: #ecfeff;
  color: #0e7490;
}

.db-icon-kf {
  background: #eef2ff;
  color: #4338ca;
}

.db-icon-nj {
  background: #f1f5f9;
  color: #0f172a;
}

/* Solutions megamenu (light theme inspired) */
@media (min-width: 992px) {
  .megamenu-solutions {
    width: 980px !important;
    padding: 0 !important;
  }
}

.sol-megamenu-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  color: #111827;
}

.sol-megamenu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid #eef2f6;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.sol-megamenu-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #e6f7f1;
  color: #0f766e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.sol-megamenu-subtitle {
  color: #6b7280;
  font-size: 0.85rem;
}

.sol-megamenu-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  white-space: nowrap;
}

.sol-megamenu-body {
  padding: 12px 16px 18px;
}

.sol-megamenu-section {
  padding: 10px 0 6px;
  border-top: 1px solid #eef2f6;
}

.sol-megamenu-section:first-child {
  border-top: 0;
  padding-top: 2px;
}

.sol-megamenu-section-title {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  color: #94a3b8;
  font-weight: 700;
  margin-bottom: 10px;
}

.sol-megamenu-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  background: #e5e7eb;
  flex-shrink: 0;
}

.sol-icon-my {
  background: #e0f2fe;
  color: #0c4a6e;
}

.sol-icon-pg {
  background: #e6f7f1;
  color: #0f766e;
}

.sol-icon-ma {
  background: #f1f5ff;
  color: #4338ca;
}

.sol-icon-mr {
  background: #fef2f2;
  color: #9f1239;
}

.sol-icon-mg {
  background: #f0fdf4;
  color: #166534;
}

.sol-icon-es {
  background: #fef3c7;
  color: #92400e;
}

.sol-icon-rd {
  background: #fff7ed;
  color: #9a3412;
}

.sol-icon-k8s {
  background: #eef2ff;
  color: #4338ca;
}

.sol-icon-wp {
  background: #e6efff;
  color: #1e40af;
}

.sol-icon-mg2 {
  background: #ffe8e8;
  color: #b91c1c;
}

.sol-icon-app {
  background: #f1f5f9;
  color: #0f172a;
}

/* Partners megamenu (light theme inspired) */
@media (min-width: 992px) {
  .megamenu-partners {
    width: 620px !important;
    padding: 0 !important;
  }
}

.pt-megamenu-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  color: #111827;
}

.pt-megamenu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid #eef2f6;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.pt-megamenu-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #eef2ff;
  color: #4338ca;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pt-megamenu-subtitle {
  color: #6b7280;
  font-size: 0.85rem;
}

.pt-megamenu-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  white-space: nowrap;
}

.pt-megamenu-body {
  padding: 12px 16px 18px;
}

.pt-megamenu-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  background: #e5e7eb;
  flex-shrink: 0;
}

.pt-icon-af {
  background: #e6fff5;
  color: #0f766e;
}

.pt-icon-sp {
  background: #e6efff;
  color: #1e40af;
}

.pt-icon-wl {
  background: #eef2ff;
  color: #4338ca;
}

.pt-icon-tp {
  background: #fef3c7;
  color: #92400e;
}

.megamenu-tile {
  background: #ffffff;
  border: 1px solid var(--border-blue-light);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.megamenu-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.12);
  border-color: var(--brand-blue-20);
  background: #f8fbff;
}

.megamenu-tile-img {
  width: 100%;
  height: 86px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
  border: 1px solid #eef2f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.megamenu-tile-img img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.megamenu-tile h6 {
  margin-bottom: 2px;
  color: var(--text-dark);
  font-weight: 700;
}

.megamenu-tile p {
  margin-bottom: 0;
  color: var(--text-muted-alt);
  font-size: 0.85rem;
}

/* Read more clamp (benefit cards) */


.benefit-desc.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.megamenu-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-blue-10);
  border-radius: 8px;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.office-video-box img {
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.office-video-box:hover img {
  transform: scale(1.05);
}

.play-icon-circle {
  transition: all 0.3s ease;
}

.office-video-box:hover .play-icon-circle {
  transform: scale(1.1);
  background-color: var(--brand-blue) !important;
  color: #fff !important;
}

/* Mobile Mega Menu Adjustments */
@media (max-width: 991px) {
  .has-megamenu .megamenu {
    position: relative;
    width: 100% !important;
    transform: none !important;
    left: 0 !important;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    padding: 31px !important;
  }

  .megamenu-footer {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    margin-top: 15px;
  }

  .megamenu-item h6,
  .megamenu-footer h6,
  .megamenu-footer li {
    color: var(--white-90) !important;
  }
}

/* Main nav links — white and bold */
#mobileNav .nav-link {
  color: #ffffff !important;
  letter-spacing: 0.2px;
}

/* Chevron icon next to dropdown labels */
.chevron-icon {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  transition:
    transform 0.25s ease,
    color 0.2s ease;
  flex-shrink: 0;
}

.nav-link[aria-expanded="true"] .chevron-icon {
  transform: rotate(180deg);
  color: var(--color-white);
}

/* Submenu list with left blue border */
.mobile-submenu {
  border-left: 2px solid var(--color-white);
  margin: 4px 0 8px 6px;
  padding: 4px 0;
}

.mobile-submenu li a {
  display: block;
  padding: 9px 16px;
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.mobile-submenu li a:hover {
  color: #ffffff;
  padding-left: 22px;
}

/* Media query consolidation at bottom */

/* --- Buttons --- */
.hero-section .btn-primary,
.wordpress-hero-section .btn-primary {
  background-color: #016ef4;
  border: 2px solid #016ef4;
  padding: 12px 23px;
  font-weight: 400;
  border-radius: 50px;
  font-size: 18px;
}

.navbar .btn-primary {
  font-weight: 500;
  font-size: 14px;
  line-height: 27px;
  text-align: center;
  padding: 5px 24px;
  border-radius: 50px;
}

.hero-section .btn-outline-light,
.wordpress-hero-section .btn-outline-light {
  border: 2px solid #ffffff;
  padding: 12px 19px;
  font-weight: 400;
  border-radius: 50px;
}

/* Glide-over button: a cursor-tracking spotlight glides across the fill on hover */
.btn-glide {
  --mx: 50%;
  --my: 50%;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-glide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(140px circle at var(--mx) var(--my), rgba(255, 255, 255, 0.5), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn-glide:hover::after {
  opacity: 1;
}

.btn-glide:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(1, 110, 244, 0.4) !important;
}

.btn-glide-text,
.btn-glide-arrow {
  position: relative;
  z-index: 1;
}

.btn-glide-arrow {
  display: inline-flex;
  align-items: center;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-glide:hover .btn-glide-arrow {
  transform: translateX(6px);
}

.hero-section h1 {
  line-height: 58px;
}

/* --- Features --- */
.hero-section .feature-item {
  color: var(--color-white);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--white-05);
  padding: 7px 15px;
  border-radius: 50px;
  font-weight: 400;
}

/* --- Hero Section --- */
/* Diagonal Hero Section */
.hero-section {
  /* Aurora treatment: deep navy base + soft brand glows, no image asset */
  background:
    radial-gradient(1000px 520px at 12% -10%, rgba(1, 110, 244, 0.38), transparent 62%),
    radial-gradient(900px 540px at 88% 5%, rgba(124, 58, 237, 0.26), transparent 62%),
    radial-gradient(700px 420px at 50% 118%, rgba(1, 110, 244, 0.30), transparent 65%),
    linear-gradient(180deg, #030014 0%, #071238 55%, #0a1c56 100%);
  background-color: #030014;
  padding-top: 120px;
  padding-bottom: 265px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

/* Whisper-quiet dot grid, faded toward the edges so text stays clean */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(75% 70% at 50% 35%, #000 30%, transparent 78%);
  mask-image: radial-gradient(75% 70% at 50% 35%, #000 30%, transparent 78%);
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section .hero-icon-box {
  height: 20px;
  width: 20px;
}

.hero-section .hero-icon-box i {
  color: var(--color-white);
}

.hero-section .hero-para {
  width: 75%;
  font-size: 18px;
  font-weight: 400;
  color: var(--white-90);
}

/* --- Hero Illustration Components --- */
.hero-section+.home-v1-hero-illustration-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  /* Pull up into the hero's diagonal, but leave breathing room below the trust line */
  margin-top: -140px;
}

.home-v1-hero-illustration-wrap .hero-img-wrapper-v1 {
  -webkit-backdrop-filter: blur(70px);
  backdrop-filter: blur(70px);
  background-image: linear-gradient(112deg,
      var(--white-b3),
      var(--white-transparent) 40%);
  border-radius: 10px;
  padding: 2.5%;
  overflow: hidden;
}

.home-v1-hero-illustration-wrap .shadow-hero-illustration {
  z-index: -1;
  filter: blur(175px);
  background-color: var(--shadow-hero);
  position: absolute;
  inset: 0%;
}

.home-v1-hero-illustration-wrap .texture-img-hero {
  z-index: -1;
  mix-blend-mode: soft-light;
  object-fit: fill;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

/* --- Media Queries --- */

/* Mobile Phones */
@media (max-width: 576px) {
  .mt50 {
    margin-top: 10px !important;
  }

  .mw-85 {
    max-width: 100% !important;
  }

  .home-v1-hero-illustration-wrap .hero-img-wrapper-v1 {
    border-radius: 5px;
  }
}

.section-tag {
  color: var(--blue-400);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  /* letter-spacing: 1px; */
}

/* --- CARD STYLING --- */
.product-section .product-card {
  border: 2px solid transparent;
  /* Border hidden by default */
  border-radius: 20px;
  padding: 35px;
  height: 100%;
  background: var(--color-white);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 30px var(--shadow-light);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HOVER EFFECT --- */
.product-section .product-card:hover {
  border-color: var(--brand-blue-secondary);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-blue);
}

.icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--brand-blue-10);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.icon-box .feature-lucide-icon {
  color: #2563eb !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  stroke-width: 2;
}

.product-section .icon-box .feature-lucide-icon {
  stroke-width: 2.5;
}

.product-section .card-title {
  color: var(--color-black);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.product-section .card-text {
  color: var(--color-black);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 400;
}

/* Learn More Link (hidden by default, shows on hover) */
.product-section .learn-more {
  color: var(--brand-blue-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-top: 15px;
  opacity: 1;
  transition: 0.3s;
}

.product-section .view-all-link {
  color: var(--brand-accent);
  text-decoration: none;
  font-weight: 600;
  border: 0px;
  background: transparent;
}

.product-section .product-item {
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.product-section .product-item.is-hidden {
  display: none;
}

.product-section .product-item.is-reveal {
  opacity: 0;
  transform: translateY(16px);
}

.product-section .product-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Hero Banner Section --- */
.hero-banner {
  background-color: var(--bg-lavender);
  border-radius: 40px;
  padding: 109px 30px 0px 57px;
}

.hero-banner .stat-item {
  text-align: center;
  min-width: 120px;
}

.hero-banner .icon-stack {
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner .stat-number {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.hero-banner .stat-label {
  font-size: 12px;
  color: var(--text-slate);
  font-weight: 500;
}

/* Image Styling */
.hero-banner .banner-image-container {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Responsive Settings */
@media (max-width: 991px) {
  .hero-banner {
    padding: 50px 30px;
    border-radius: 25px;
    margin: 0 15px;
  }

  .hero-banner .banner-image-container {
    justify-content: center;
    margin-top: 50px;
  }

  .hero-banner .stats-row {
    justify-content: center;
  }
}

/* --- COMPARISON CARD SECTION (old way vs the HiQloud way) --- */
.comparison-section .comparison-card {
  background: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(3, 0, 20, 0.10), 0 2px 8px rgba(3, 0, 20, 0.05);
  border: 1px solid var(--border-gray);
  max-width: 1200px;
  margin: auto;
  width: min(920px, 100%);
}

.comparison-section .comp-row {
  display: flex;
  position: relative;
  border-bottom: 1px solid var(--border-gray-light);
}

.comparison-section .comp-row:last-child {
  border-bottom: none;
}

/* Left side: the old way — deliberately muted */
.comparison-section .comp-col-left {
  flex: 1;
  padding: 26px 30px 26px 36px;
  display: flex;
  align-items: center;
  background-color: #f8fafc;
  border-bottom: 1px solid #eef2f7 !important;
}

.comparison-section .comp-col-left .label-text {
  color: #64748b;
}

.comparison-section .comp-col-middle {
  flex: 1;
  padding: 26px 36px;
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 1) !important;
}

/* Right side: the HiQloud way — lifted and lit */
.comparison-section .comp-col-right {
  flex: 1.2;
  padding: 26px 26px 26px 40px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(1, 110, 244, 0.09), rgba(1, 110, 244, 0.04));
  border-bottom: 1px solid rgba(194, 221, 255, 1) !important;
  box-shadow: inset 3px 0 0 rgba(1, 110, 244, 0.55);
  transition: background 0.25s ease;
}

.comparison-section .comp-row:hover .comp-col-right {
  background: linear-gradient(90deg, rgba(1, 110, 244, 0.14), rgba(1, 110, 244, 0.06));
}

/* Transition arrow riding the column seam: old way → HiQloud way */
.comparison-section .comp-col-right {
  position: relative;
}

.comparison-section .comp-col-right::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: -17px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: #016ef4;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(1, 110, 244, 0.2);
  box-shadow: 0 6px 16px rgba(3, 0, 20, 0.12);
  z-index: 2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.comparison-section .comp-row:hover .comp-col-right::before {
  transform: translateY(-50%) translateX(5px);
  box-shadow: 0 8px 20px rgba(1, 110, 244, 0.3);
}

.comp-row:first-child .comp-col-right {
  border-radius: 18px 18px 0 0;
}

.comp-row:last-child .comp-col-right {
  border-radius: 0 0 18px 18px;
}

.comparison-section .comp-row:last-child .comp-col-right {
  border-bottom: none !important;
}

.comparison-section .icon-x {
  color: var(--color-red);
  /* Red color */
  font-size: 1.3rem;
  margin-right: 15px;
}

.hero_para {
  width: 75%;
}

.comparison-section .icon-check {
  color: var(--color-light-blue);
  /* Blue color */
  font-size: 1.3rem;
  margin-right: 15px;
}

.comparison-section .label-text {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-black);
  text-align: left;
}

.comparison-section .label-text-blue {
  color: var(--brand-blue);
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {

  .comparison-section .comp-col-left,
  .comparison-section .comp-col-right {
    padding: 14px 16px;
    border-left: none;
  }

  .comparison-section .comp-col-right {
    border-bottom: 2px solid var(--color-white);
  }
}

/* --- TECH SECTION (Logo Styling) --- */
.tech-section .logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.tech-section .logo-container .logo-item img {
  max-height: 45px;
  width: auto;
  filter: grayscale(0);
  transition: 0.3s;
}

.tech-section .logo-marquee-track {
  display: contents;
}

.tech-section .logo-group {
  display: contents;
}

.tech-section .logo-group-duplicate {
  display: none;
}

@media (max-width: 768px) {
  .tech-section .logo-container {
    gap: 30px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  }

  .tech-section .logo-container .logo-item img {
    max-height: 35px;
  }

  .tech-section .logo-marquee-track {
    display: flex;
    width: max-content;
    animation: tech-logo-marquee 22s linear infinite;
  }

  .tech-section .logo-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 30px;
    padding-right: 30px;
  }

  .tech-section .logo-group-duplicate {
    display: flex;
  }

  .tech-section .logo-item {
    flex-shrink: 0;
  }
}

@keyframes tech-logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tech-section .logo-marquee-track {
    animation: none;
  }
}

/* --- TRUST SECTION --- */
.trust-section .trust-container {
  background-color: var(--bg-trust-container);
  border-radius: 40px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-trust-container);
}

/* Globe Image (Right Side Corner) */
.trust-section .background-globe {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 400px;
  max-width: 45%;
  height: 100%;
  background-image: url("/assets/img/globe.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

/* Stats Row Styling */
.trust-section .stat-box {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.trust-section .stat-icon {
  width: 48px;
  height: 48px;
  background-color: var(--brand-blue-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-section .stat-number {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0;
  line-height: 1;
}

.trust-section .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted-dark-alt);
  margin-bottom: 0;
}

.logo-24 {
  height: 24px !important;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .trust-section .trust-container {
    padding: 40px 30px;
    border-radius: 30px;
  }

  .trust-section .background-globe {

    /* Consolidated megamenu utility classes - use these for all menus */
    @media (min-width: 992px) {
      .megamenu-top {
        padding: 24px 31px 16px 33px !important;
        background: #fff !important;
        border-top-left-radius: 0.5rem;
        border-top-right-radius: 0.5rem;
      }

      .megamenu-col {
        padding: 24px 31px 24px 33px !important;
      }

      .megamenu-col-top {
        padding: 24px 31px 0 33px !important;
      }

      .megamenu-bottom {
        padding: 24px 31px 24px 33px !important;
        background-color: rgba(250, 251, 253, 1) !important;
        border-bottom-left-radius: 0.5rem;
        border-bottom-right-radius: 0.5rem;
      }

      /* Shared item layout and icon sizing */
      .megamenu .megamenu-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 14px !important;
        padding: 12px 14px !important;
        margin-bottom: 4px !important;
      }

      .megamenu .megamenu-item .text-primary {
        width: 44px !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-top: 0 !important;
        font-size: 18px !important;
      }

      .megamenu .megamenu-item img,
      .megamenu .megamenu-item .megamenu-icon img {
        width: 28px !important;
        height: 28px !important;
        object-fit: contain !important;
      }

      /* Normalize typography and spacing for all megamenus */
      .megamenu {
        box-sizing: border-box;
        font-family: inherit;
      }

      .megamenu h6 {
        font-size: 1rem !important;
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
        font-weight: 700 !important;
        color: var(--text-dark) !important;
      }

      .megamenu p {
        margin: 0 !important;
        font-size: 0.95rem !important;
        color: var(--text-muted) !important;
        line-height: 1.4 !important;
      }

      /* Ensure list and small elements inside megamenu match */
      .megamenu .list-unstyled li,
      .megamenu .megamenu-item .small {
        font-size: 0.95rem !important;
        color: var(--text-muted) !important;
      }

      /* Force consistent width so all menus appear equal */
      .has-megamenu .megamenu {
        width: 700px !important;
        max-width: 95vw !important;
      }

      /* Inline styles moved here from templates */
      .megamenu-caption {
        font-size: 0.75rem !important;
      }

      .megamenu-subheading {
        font-size: 0.95rem !important;
      }

      .megamenu-graphic {
        margin-bottom: 12px !important;
      }

      .play-icon-size {
        width: 50px !important;
        height: 50px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
      }

      .offcanvas-mobile {
        background-color: var(--brand-dark) !important;
        width: 300px !important;
      }

      .offcanvas-logo {
        object-fit: contain !important;
        max-width: 100% !important;
        height: 24px;
      }

      .offcanvas-scroll {
        overflow-y: auto !important;
      }
    }

    opacity: 0.3;
    width: 60%;
  }
}

/* --- TESTIMONIAL SECTION --- */
.testimonial-section {
  position: relative;
  background: #f7f8fa;
  overflow: hidden;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 702px;
  background-image: url("/assets/img/testimonial-bg.png");
  background-size: contain;
  /* transform: perspective(500px) rotateX(60deg);
  transform-origin: top; */
  z-index: 0;
  background-repeat: no-repeat;
}

/* --- SCROLLING ANIMATION LOGIC --- */
.testimonial-section .scroll-container {
  height: 600px;
  /* Container height fix */
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom,
      transparent,
      black 10%,
      black 90%,
      transparent);
  -webkit-mask-image: linear-gradient(to bottom,
      transparent,
      black 10%,
      black 90%,
      transparent);
}

.testimonial-section .scroll-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Infinite Loop Animation */
@keyframes scrollUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

.testimonial-section .animate-up {
  animation: scrollUp 20s linear infinite;
}

.testimonial-section .animate-down {
  animation: scrollDown 25s linear infinite;
}

.testimonial-section .animate-up:hover,
.testimonial-section .animate-down:hover {
  animation-play-state: paused;
}

/* --- TESTIMONIAL CARD STYLING --- */
.testimonial-section .testimonial-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--border-gray-light);
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: 0.3s;
}

.testimonial-section .testimonial-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.testimonial-section .card-tagline {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
}

.testimonial-section .card-text {
  font-size: 0.95rem;
  color: var(--text-muted-dark-alt);
  line-height: 1.6;
  margin-bottom: 25px;
}

.testimonial-section .user-info img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  background: var(--border-gray);
}

.testimonial-section .user-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
  color: var(--text-dark);
}

.testimonial-section .user-handle {
  font-size: 0.85rem;
  color: rgba(110, 81, 224, 1);
  margin: 0;
}

.testimonial-section .social-icon {
  font-size: 1.2rem;
  color: var(--brand-blue-secondary);
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-trust-container);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

/* --- RESPONSIVE --- */
/* Consolidated at bottom */

/* --- BENEFIT SECTION --- */
.benefit-section .benefit-card {
  background-color: var(--bg-benefit-card);
  border: 1px solid var(--border-benefit-card);
  border-radius: 16px;
  height: 100%;
  transition: 0.3s;
}

.benefit-section .benefit-card:hover {
  box-shadow: 0 10px 30px var(--shadow-light);
  transform: translateY(-5px);
}

.benefit-section .benefit-card h5 {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Large Left Card */
.benefit-section .main-card {
  background-color: var(--bg-benefit-card);
  border: 1px solid var(--border-benefit-card);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.benefit-section .main-card div {
  padding: 40px 42px 0px 40px;
}

.benefit-section .main-card div h2 {
  font-size: 2rem;
  font-weight: 600;
}

.benefit-section .benefit-card p,
.benefit-section .main-card p {
  font-size: 1rem;
  font-weight: 400;
}

/* Dashboard Image Styling */
.benefit-section .dashboard-img-wrapper {
  background: var(--color-white);
  border-radius: 16px 0px 16px 0;
  padding: 0px 0px 0 15px !important;
  margin: 96px 0px 0 25px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.03);
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
}

.benefit-section .dashboard-img-wrapper img {
  border-radius: 10px 16px 16px 0;
  display: block;
}

.benefit-section .btn-browse {
  background-color: var(--bg-btn-browse);
  color: var(--color-white);
  border-radius: 8px;
  padding: 10px 25px;
  font-size: 0.9rem;
  transition: 0.2s;
}

.benefit-section .btn-browse:hover {
  background-color: var(--bg-btn-browse-hover);
  color: var(--color-white);
}

.benefit-section .read-more {
  color: var(--brand-blue-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- EXPERT SUPPORT SECTION --- */
.expert-support-section {
  background-color: var(--brand-dark);
  margin-top: 80px;
}

.expert-support-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8) !important;
}

.expert-support-section .btn-primary {
  background-color: var(--brand-blue-secondary);
  transition: 0.3s;
}

.expert-support-section .btn-primary:hover {
  background-color: #0b5ed7;
  transform: translateY(-2px);
}

/* Image Area and Badges */
.expert-support-section .image-area {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.expert-support-content {
  padding: 60px 0px;
}

@media (min-width: 992px) {
  .agent-img {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
  }
}

/* Floating Badges */
.expert-support-section .badge-1,
.expert-support-section .badge-2 {
  padding: 12px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.expert-support-section .badge-1:hover,
.expert-support-section .badge-2:hover {
  transform: translateY(-5px);
}

.expert-support-section .badge-1 {
  top: 30%;
  right: -2%;
}

.expert-support-section .badge-2 {
  top: 60%;
  left: -5%;
}

/* Consolidated at bottom */

.expert-support-section .icon-circle {
  width: 24px;
  height: 24px;
  background-color: #198754;
  /* Success green */
}

/* --- RESOURCE SECTION --- */
.resource-section .resource-card {
  border: none;
  background: transparent;
  transition: transform 0.3s ease;
}

.resource-section .resource-card:hover {
  transform: translateY(-8px);
}

.resource-section .resource-img-container {
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--bg-light);
  /* box-shadow: 0 10px 30px var(--shadow-light); */
  margin-bottom: 25px;
  transition: box-shadow 0.3s ease;
}

.resource-section .resource-card:hover .resource-img-container {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.resource-section .resource-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--brand-dark);
  margin-bottom: 15px;
}

.resource-section .resource-text {
  color: var(--text-muted-alt);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.resource-section .read-more-btn {
  color: var(--brand-blue-secondary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    gap 0.2s,
    color 0.2s;
}

.resource-section .read-more-btn:hover {
  color: var(--brand-blue);
  gap: 12px;
}

/* SVG Icon size alignment */
.resource-section .read-more-btn i {
  font-size: 0.8rem;
}

.resource-carousel {
  position: relative;
}

.resource-carousel-viewport {
  overflow: hidden;
}

.resource-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
}

.resource-carousel-slide {
  flex: 0 0 calc(25% - 1.125rem);
  min-width: 0;
}

@media (max-width: 991.98px) {
  .resource-carousel-slide {
    flex-basis: calc(50% - 0.75rem);
  }
}

@media (max-width: 575.98px) {
  .resource-carousel-slide {
    flex-basis: 100%;
  }
}

.resource-carousel .carousel-control-prev,
.resource-carousel .carousel-control-next {
  position: absolute;
  top: 40%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--brand-blue, #016ef4);
  box-shadow: 0 6px 18px rgba(1, 110, 244, 0.3);
  opacity: 1;
  z-index: 2;
  transition: background 0.2s ease;
}

.resource-carousel .carousel-control-prev:hover,
.resource-carousel .carousel-control-next:hover {
  background: var(--brand-blue-secondary, #0156c4);
}

.resource-carousel .carousel-control-prev {
  left: -10px;
}

.resource-carousel .carousel-control-next {
  right: -10px;
}

.resource-carousel .carousel-control-prev-icon,
.resource-carousel .carousel-control-next-icon {
  width: 1.1rem;
  height: 1.1rem;
}

/* --- MIGRATION SECTION --- */
.migration-section .check-icon {
  font-size: 1.25rem;
  color: #9cd323;
  /* Matching the previous green but could use a variable if defined */
  display: flex;
  align-items: center;
  justify-content: center;
}

.migration-section h4 {
  font-size: 1.2rem;
  color: var(--brand-dark);
}

.migration-section .fw-semibold {
  font-size: 1.05rem;
  color: #334155;
  /* Slate-700 style */
}

.migration-section .img-fluid {
  transition: transform 0.4s ease;
}

.migration-section .img-fluid:hover {
  transform: scale(1.02);
}

/* --- FAQ SECTION --- */
.faq-section .sidebar-card {
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 30px var(--shadow-light);
  background: var(--color-white);
}

.faq-section .nav-pills .nav-link {
  color: #000;
  padding: 14px 20px;
  font-weight: 600;
  border-radius: 12px;
  margin-bottom: 8px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  background: transparent;
}

.faq-section .nav-pills .nav-link.active {
  background-color: var(--brand-blue-secondary) !important;
  color: var(--color-white) !important;
  box-shadow: 0 8px 20px var(--brand-blue-20);
}

.faq-section .nav-pills .nav-link svg {
  transition: transform 0.3s ease;
  color: #000;
}

.faq-section .nav-pills .nav-link.active svg {
  transform: scale(1.1);
  color: #fff;
}

/* --- ACCORDION STYLING --- */
.faq-section .accordion-item {
  border: 1px solid var(--border-gray-light) !important;
  border-radius: 16px !important;
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.3s ease;
}

/* Applying custom gradient when open */
.faq-section .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--border-blue-light) !important;
  background: linear-gradient(243.48deg,
      var(--color-white) 33.93%,
      var(--light-blue) 85.45%);
}

.faq-section .accordion-button {
  padding: 24px 36px;
  font-weight: 700;
  font-size: 1.1rem;
  background: transparent !important;
  color: var(--text-muted-alt);
  box-shadow: none !important;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  min-height: 90px;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--brand-blue-secondary);
}

.faq-section .accordion-button::after {
  display: none;
  /* Hide default Bootstrap arrow */
}

/* Custom Icon Box for Plus/Minus */
.faq-section .faq-icon-box {
  width: 32px;
  height: 32px;
  background-color: var(--bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: var(--text-muted);
  transition: all 0.3s ease;
  position: relative;
}

.faq-section .faq-icon-box::before,
.faq-section .faq-icon-box::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  transition: all 0.3s ease;
}

/* Horizontal line (Minus) */
.faq-section .faq-icon-box::after {
  width: 12px;
  height: 2px;
}

/* Vertical line (to make it Plus) */
.faq-section .faq-icon-box::before {
  width: 2px;
  height: 12px;
}

/* When Open: Convert Plus to Minus */
.faq-section .accordion-button:not(.collapsed) .faq-icon-box {
  background-color: var(--brand-blue-secondary);
  color: var(--color-white);
}

.faq-section .accordion-button:not(.collapsed) .faq-icon-box::before {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-section .accordion-button:not(.collapsed) .faq-icon-box::after {
  background-color: var(--color-white);
}

.faq-section .accordion-body {
  padding: 0 102.58px 44px 76.42px;
  color: var(--text-muted-alt);
  line-height: 1.7;
  font-weight: 500;
}

.faq-section .info-icon {
  width: 32.42px;
  height: 32.42px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: all 0.3s ease;
  margin-right: 8px;
}

.faq-section .info-icon svg {
  width: 22px;
  height: 22px;
}

.faq-section .accordion-button:not(.collapsed) .info-icon {
  background: var(--color-white);
  color: var(--brand-blue-secondary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* --- CTA SECTION --- */
.cta-section {
  background-color: var(--bg-btn-browse);
  /* margin-top: 80px; */
}

.cta-section .text-purple-light {
  color: var(--primary-purple);
  font-size: 32px;
  font-weight: 700;
}

.cta-section .btn-deploy {
  background-color: var(--brand-blue-secondary);
  border: none;
  padding: 13px 24px;
  font-weight: 700;
  border-radius: 30px;
  transition: 0.3s;
  color: var(--color-white);
}

.cta-section .btn-deploy:hover {
  background-color: var(--brand-blue);
  color: var(--color-white);
  transform: translateY(-2px);
}

.cta-section .illustration-box img {
  max-width: 100%;
  height: 320px;
}

.heading-para {
  font-size: 20px;
  font-weight: 400;
  max-width: 991px !important;
  margin-bottom: 0px;
}

.footer-cta {
  background: #0f172a;
  border-top: 1px solid rgba(99, 102, 241, 0.25);
  border-bottom: 1px solid rgba(99, 102, 241, 0.12);
}

/* ── Newsletter strip ── */
.footer-nl {
  background: linear-gradient(135deg, #06091a 0%, #0a0f2e 50%, #06091a 100%);
  border-top: 1px solid rgba(99, 102, 241, 0.2);
  border-bottom: 1px solid rgba(99, 102, 241, 0.08);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}

.footer-nl::before {
  content: '';
  position: absolute;
  top: -60px;
  right: 15%;
  width: 320px;
  height: 160px;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.fn-title {
  color: #fff;
  font-size: 0.97rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.fn-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
}

.fn-group {
  max-width: 480px;
  margin-left: auto;
}

.fn-btn {
  background: linear-gradient(135deg, #3b5bdb, #2563eb);
  border-color: transparent;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0 20px;
  transition: opacity 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.fn-btn:hover {
  opacity: 0.9;
  color: #fff;
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.45);
}

/* ── Main footer ── */
.footer-main {
  background: #060c18;
  position: relative;
}

.footer-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
  pointer-events: none;
}

/* Brand description */
.f-brand-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer_feature {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

/* ── Nav links ── */
.f-link {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 4px 0;
  transition: color 0.2s;
}

.f-link:hover {
  color: #fff;
}

.f-link .arr {
  flex-shrink: 0;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  margin-right: 0;
  color: #4f79f6;
  font-size: 0.65rem;
  transition: max-width 0.22s ease, opacity 0.2s ease, margin-right 0.22s ease;
}

.f-link:hover .arr {
  max-width: 14px;
  opacity: 1;
  margin-right: 6px;
}

/* ── Group labels ── */
.grp {
  font-size: 14px;
  font-weight: 500;
  /* text-transform: uppercase; */
  color: #ffffffd1;
  padding: 14px 0 4px;
}

/* ── Column heading ── */
.col-head {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(99, 102, 241, 0.18);
  position: relative;
}

.col-head::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 24px;
  height: 1px;
  background: #4f79f6;
}

.main-heading {
  font-weight: 600 !important;
}

/* ── Trust pills ── */
.t-pill {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.48);
  border-radius: 6px;
  padding: 0px 0px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s, color 0.2s;
}

.t-pill:hover {
  border-color: rgba(99, 102, 241, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

.dot-green {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  flex-shrink: 0;
  animation: blink 2s infinite;
}

.dot-amber {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  flex-shrink: 0;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* ── Social buttons ── */
.s-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.22s ease;
  font-size: 0.85rem;
}

.s-btn:hover {
  border-color: rgba(99, 102, 241, 0.55);
  background: rgba(99, 102, 241, 0.12);
  color: #a5b4fc;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.2);
}

/* ── Newsletter input ── */
.n-input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-right: none !important;
  color: #fff !important;
  font-size: 0.875rem;
  padding: 0.68rem 0.85rem !important;
  border-radius: 8px 0 0 8px !important;
}

.n-input::placeholder {
  color: rgba(255, 255, 255, 0.28) !important;
}

.n-input:focus {
  border-color: rgba(99, 102, 241, 0.45) !important;
  box-shadow: none !important;
  background: rgba(255, 255, 255, 0.07) !important;
}

/* ── Inline badges ── */
.b-new {
  font-size: 0.6rem;
  font-weight: 700;
  background: rgba(37, 99, 235, 0.16);
  color: #7eaaff;
  border-radius: 20px;
  padding: 2px 8px;
  letter-spacing: 0.03em;
}

.b-hot {
  font-size: 0.6rem;
  font-weight: 700;
  background: rgba(239, 68, 68, 0.14);
  color: #fca5a5;
  border-radius: 20px;
  padding: 2px 8px;
  letter-spacing: 0.03em;
}

/* ── Bottom bar ── */
.footer-btm {
  background: #040810;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ftm-copy {
  font-size: 13px;
  color: #ffffff7a;
}

.ftm-link {
  font-size: 13px;
  color: #ffffff7a;
  text-decoration: none;
  transition: color 0.18s;
}

.ftm-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Status & DC */
.st-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  display: inline-block;
  animation: blink 2s infinite;
}

.dc-pill {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  padding: 3px 9px;
  white-space: nowrap;
}

/* Logo mark */
.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Pulse dot */
.p-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  display: inline-block;
  animation: blink 1.8s infinite;
}

/* --- CONSOLIDATED MEDIA QUERIES --- */
@media (max-width: 991px) {
  .hero_para {
    width: 100%;
  }

  /* Navbar Mobile Menu */
  .navbar-collapse {
    background-color: var(--brand-dark);
    padding: 10px 24px 20px 24px;
    border-radius: 0;
    margin: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  .navbar.menu-open {
    background-color: var(--brand-dark) !important;
    box-shadow: none !important;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-nav .nav-link {
    padding: 12px 0 !important;
    margin: 0 !important;
    border: none !important;
  }

  .navbar-nav {
    margin-top: 10px;
    gap: 0 !important;
  }

  .navbar-collapse .d-flex {
    flex-direction: column;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100%;
    margin-top: 15px;
  }

  .navbar-collapse .btn-primary {
    width: 100%;
    display: block;
  }

  .navbar-collapse .nav-link.me-2 {
    margin-right: 0 !important;
    text-align: center;
  }

  .pt-100 {
    padding-top: 50px;
  }

  .pb-100 {
    padding-bottom: 50px;
  }

  .hero-section {
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0% 100%);
    padding-bottom: 160px;
  }

  .hero-section .hero-para {
    width: 100%;
    font-size: 17px;
  }

  .hero-section+.home-v1-hero-illustration-wrap {
    margin-top: -155px;
  }

  /* Expert Support Mobile */
  .expert-support-section .badge-1 {
    right: 0;
  }

  .expert-support-section .badge-2 {
    left: 0;
  }

  .expert-support-section .agent-img {
    height: auto;
    margin-top: 0;
  }

  /* Testimonial Section Mobile */
  .testimonial-section .col-hide-tablet {
    display: none;
  }

  /* FAQ Mobile */
  .faq-section .accordion-button {
    padding: 20px;
    min-height: auto;
  }

  .faq-section .accordion-body {
    padding: 0 20px 20px 20px;
  }

  .faq-section .info-icon {
    display: none;
  }

  .section-tag {
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  .heading-para {
    font-size: 16px !important;
    line-height: 1.6;
    width: 100% !important;
  }

  .cta-section .display-4 {
    font-size: 2rem;
    font-weight: 800;
  }

  .custom-footer .footer-bottom-links {
    margin-top: 10px;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    clip-path: polygon(0 0, 100% 0, 100% 98%, 0% 100%);
    padding-top: 90px;
    padding-bottom: 80px;
  }

  .hero-section .hero-para {
    width: 100%;
    font-size: 16px;
    margin-bottom: 1.5rem !important;
  }

  .hero-section+.home-v1-hero-illustration-wrap {
    margin-top: -50px;
  }

  .d-flex.flex-wrap.justify-content-center.gap-4.mb-4 {
    gap: 10px !important;
    /* Reduce gap between service badges on mobile */
  }

  .hero-section .feature-item {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
}

/* About Us page CSS */
.about-hero-section {
  background: linear-gradient(135deg,
      var(--brand-dark) 0%,
      var(--brand-navy) 100%);
  padding: 100px 0;
}

.managed-hosting .title {
  color: var(--heading-dark-blue);
}

.managed-hosting .sub-title {
  color: var(--para-dark-blue);
}

.stat-box h3 {
  color: #016ef4;
}

.who-we-are {
  border: 1.5px solid #e0def7;
  padding: 40px 75px;
  background: #f7f7fd;
  border-radius: 50px;
}

.benefit-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 18px;
  font-size: 18px;
  color: #191a15;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  background: #016ef4;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: 13px;
  font-weight: bold;
}

/* Pricing page CSS */

.pricing-hero-section {
  background: linear-gradient(180deg, #010a31 26%, #0f17cb 100%);
  padding: 140px 0;
}

.plan-table-subheading span {
  color: var(--primary-color, #016ef4);
}

.currency-toggle {
  border: 1px solid var(--primary-color, #016ef4);
  color: var(--primary-color, #016ef4);
  border-radius: 50px;
  margin: auto;
  width: fit-content;
  padding: 6px 6px;
}

.currency-toggle button {
  color: var(--primary-blue);
  font-size: 18px;
  text-transform: capitalize;
  border: 0px;
  background: transparent;
  padding: 6px 30px;
  border-radius: 50px;
}

.currency-toggle .active {
  background-color: var(--primary-color, #016ef4);
  color: #ffffff;
}

.plan-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  box-shadow: 0px 4px 6px -4px #e2e8f0;
  box-shadow: 0px 10px 15px -3px #e2e8f0;
  border-radius: 8px;
  padding: 25px 20px;
  transition: all 0.3s ease;
}

.plan-card:hover {
  border: 1px solid #016ef4;
  box-shadow: 0px 10px 15px -3px #016ef480;
  transform: translateY(-6px);
}

.plan-card.popular {
  border: 1px solid #016ef4;
  box-shadow: 0px 10px 15px -3px #016ef480;
}

.plan-name {
  font-size: 24px;
  color: #0b100d;
}

.plan-text {
  font-size: 14px;
  color: #016ef4;
}

.price {
  font-size: 36px;
  color: #0b100d;
}

.popular::before {
  content: "Most popular";
  background: #016ef4;
  color: #ffffff;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  padding: 8px 30px;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;
}

.popular-plan-btn {
  background: #016ef4 !important;
  color: #ffffff !important;
}

.plan-btn {
  background: #bbdaff80;
  color: #016ef4;
  border: 1px solid #ddecff;
  line-height: 24px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 10px;
  border-radius: 4px;
}

.plan-btn:hover {
  background: #016ef4;
  color: #ffffff;
}

.top-feature-text {
  color: #016ef4;
}

.renewed {
  color: #8e8e8e;
  font-size: 14px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-check-icons {
  color: #016ef4;
  font-size: 15px;
}

.feature-list li {
  position: relative;
  margin-bottom: 12px;
  font-family: var(--font-dm);
  font-weight: 500;
  font-size: 14px;
  line-height: 22.5px;
  color: #0b100d;
}

/* pricing-comparison-table css */
.plan-comparison-block {
  position: relative;
  margin-top: 40px;
  background: transparent;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
}

.plan-comparison-block .comparison-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.plan-comparison-block .comparison-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  table-layout: fixed;
}

.plan-comparison-block .comparison-table th,
.plan-comparison-block .comparison-table td {
  border: 1px solid var(--border-gray-light);
}

.plan-comparison-block .comparison-table thead th {
  background: var(--color-white);
  padding: 12px 10px;
  text-align: center;
  vertical-align: middle;
  color: var(--text-dark-gray);
}

.plan-comparison-block .comparison-table thead th:first-child {
  width: 320px;
}

.plan-comparison-block .plan-head {
  padding: 10px 8px;
  font-size: 13px;
  line-height: 1.2;
}

.plan-comparison-block .plan-title {
  color: rgba(1, 110, 244, 1);
  font-weight: 600;
  text-underline-offset: 2px;
  display: block;
}

.plan-comparison-block .comparison-table thead small {
  display: block;
  color: var(--color-black);
  font-size: 11px;
  margin-top: 2px;
  font-weight: 400;
}

.plan-comparison-block .hiqcloud-logo {
  max-height: 26px;
  width: auto;
  object-fit: contain;
}

/* ── Hero dashboard preview (homepage) — mirrors the real my.hiqloud.com UI ── */
.hq-dash { display:grid; grid-template-columns:220px 1fr; background:#0b0e15; border-radius:16px; overflow:hidden; width:min(1296px,100%); font-family:inherit; text-align:left; box-shadow:0 30px 80px rgba(3,0,20,.5); border:1px solid rgba(255,255,255,.08); }

.hq-side { background:#0d1119; border-right:1px solid rgba(255,255,255,.06); padding:22px 16px; }
.hq-side-logo { padding:0 8px 14px; border-bottom:1px solid rgba(255,255,255,.06); margin-bottom:6px; }
.hq-side-logo img { height:26px; width:auto; }
.hq-side-label { font-size:.66rem; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.35); margin:14px 8px 6px; font-weight:700; }
.hq-side-item { display:flex; align-items:center; gap:12px; color:rgba(255,255,255,.6); font-size:.88rem; padding:10px 12px; border-radius:8px; }
.hq-side-item i { width:16px; text-align:center; font-size:.82rem; }
.hq-side-item.active { background:rgba(1,110,244,.16); color:#fff; }

.hq-main { padding:20px 26px 26px; min-width:0; }
.hq-topbar { display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.hq-search { flex:1; display:flex; align-items:center; gap:8px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); color:rgba(255,255,255,.4); font-size:.84rem; border-radius:9px; padding:10px 15px; }
.hq-kbd { margin-left:auto; border:1px solid rgba(255,255,255,.14); border-radius:5px; font-size:.68rem; padding:1px 6px; color:rgba(255,255,255,.45); }
.hq-team { display:flex; align-items:center; gap:8px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); color:rgba(255,255,255,.7); font-size:.84rem; border-radius:9px; padding:9px 15px; white-space:nowrap; }
.hq-team .tag { width:16px; height:16px; border-radius:4px; background:rgba(1,110,244,.35); color:#9ec8ff; font-size:.58rem; display:inline-flex; align-items:center; justify-content:center; font-weight:700; }
.hq-avatar { width:34px; height:34px; min-width:34px; border-radius:50%; background:linear-gradient(135deg,#016ef4,#0050c8); color:#fff; font-size:.6rem; font-weight:700; display:inline-flex; align-items:center; justify-content:center; }

.hq-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:18px; }
.hq-stat { display:flex; align-items:center; justify-content:space-between; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.07); border-radius:12px; padding:18px 20px; }
.hq-stat-icon { width:44px; height:44px; border-radius:11px; display:inline-flex; align-items:center; justify-content:center; font-size:1.05rem; }
.hq-stat-icon.blue { background:rgba(1,110,244,.16); color:#5ba2f7; }
.hq-stat-icon.green { background:rgba(34,197,94,.14); color:#4ade80; }
.hq-stat-icon.orange { background:rgba(249,115,22,.14); color:#fb923c; }
.hq-stat-meta { text-align:right; }
.hq-stat-meta small { display:block; color:rgba(255,255,255,.45); font-size:.8rem; }
.hq-stat-meta b { color:#fff; font-size:1.7rem; font-weight:700; line-height:1.1; }

.hq-panel { background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.07); border-radius:12px; padding:18px 22px; }
.hq-panel-title { color:#5ba2f7; font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:10px; font-weight:700; }
.hq-app { display:flex; align-items:center; justify-content:space-between; padding:12px 0; border-bottom:1px solid rgba(255,255,255,.06); }
.hq-app:last-child { border-bottom:0; padding-bottom:0; }
.hq-app-name { color:rgba(255,255,255,.88); font-size:.94rem; font-weight:500; }
.hq-app-name small { display:block; color:rgba(255,255,255,.38); font-size:.76rem; font-weight:400; }
.hq-app-status { font-size:.8rem; font-weight:600; color:#4ade80; white-space:nowrap; }
.hq-app-status.deploying { color:#facc15; }
.hq-app-status .pulse { display:inline-block; width:6px; height:6px; border-radius:50%; background:currentColor; margin-right:5px; }

@media (max-width: 767px) {
    .hq-dash { grid-template-columns:1fr; }
    .hq-side { display:none; }
    .hq-team { display:none; }
    .hq-stats { grid-template-columns:1fr; }
}

/* Outer highlight frame: gradient ring + soft glow halo behind the dashboard */
.hq-dash-frame {
    position: relative;
    isolation: isolate;
    width: min(1324px, 100%);
    padding: 14px;
    border-radius: 28px;
    background: linear-gradient(140deg, rgba(1,110,244,.55), rgba(255,255,255,.08) 38%, rgba(139,92,246,.4));
    box-shadow: 0 40px 110px rgba(1,110,244,.28);
}

.hq-dash-frame::before {
    content: "";
    position: absolute;
    inset: -55px -8px;
    z-index: -1;
    background: radial-gradient(55% 55% at 50% 35%, rgba(1,110,244,.45), transparent 70%);
    filter: blur(36px);
    pointer-events: none;
}

.hq-dash-frame .hq-dash {
    width: 100%;
    border-color: rgba(255,255,255,.12);
}

@media (max-width: 767px) {
    .hq-dash-frame { padding: 8px; border-radius: 20px; }
}

.plan-comparison-block .comparison-table .section-row th {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid var(--border-gray);
  padding: 18px 14px 10px;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-dark-gray);
  text-align: left;
  background: transparent;
}

.plan-comparison-block .comparison-table .feature-cell {
  padding: 16px 14px;
  font-size: 14px;
  color: var(--text-dark-gray);
  text-align: left;
  font-weight: 400;
  background: transparent;
}

.plan-comparison-block .comparison-table td {
  text-align: center;
  padding: 16px 10px;
  vertical-align: middle;
  background: transparent;
}

.plan-comparison-block .comparison-table .table-note {
  text-align: left;
  padding: 10px 14px 14px 42px;
  font-size: 13px;
  color: var(--text-dark-gray);
  line-height: 1.4;
  background: transparent;
}

.plan-comparison-block .check {
  color: #16a34a;
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  line-height: 1;
}

.plan-comparison-block .cross {
  color: #cbd5e1;
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  line-height: 1;
}

/* ── Comparison table: depth + highlighted HiQloud column ─────────────────── */
.plan-comparison-block {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(3, 0, 20, 0.10), 0 2px 8px rgba(3, 0, 20, 0.05);
}

.plan-comparison-block.hl-col-2 .comparison-table th:nth-child(2),
.plan-comparison-block.hl-col-2 .comparison-table td:nth-child(2),
.plan-comparison-block.hl-col-3 .comparison-table th:nth-child(3),
.plan-comparison-block.hl-col-3 .comparison-table td:nth-child(3) {
  background: linear-gradient(180deg, rgba(1, 110, 244, 0.07), rgba(1, 110, 244, 0.03));
  border-left: 1px solid rgba(1, 110, 244, 0.15);
  border-right: 1px solid rgba(1, 110, 244, 0.15);
  font-weight: 600;
}

.plan-comparison-block.hl-col-2 .comparison-table thead th:nth-child(2),
.plan-comparison-block.hl-col-3 .comparison-table thead th:nth-child(3) {
  border-top: 3px solid #016ef4;
  box-shadow: inset 0 6px 12px -8px rgba(1, 110, 244, 0.35);
}

.plan-comparison-block.hl-col-2 .comparison-table td:nth-child(2) .check,
.plan-comparison-block.hl-col-3 .comparison-table td:nth-child(3) .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #016ef4, #0050c8);
  color: #fff;
  font-size: 13px;
  box-shadow: 0 6px 14px rgba(1, 110, 244, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ── Checklist ticks: gradient + soft depth (sitewide) ────────────────────── */
.check-icon i {
  background: linear-gradient(135deg, #22c55e, #15803d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 8px rgba(34, 197, 94, 0.35));
  font-size: 1.3rem;
}

/* ── Primary CTA buttons: subtle lift ─────────────────────────────────────── */
.benefit-section .btn-primary,
.migration-section .btn-primary,
.trust-section .btn-primary {
  box-shadow: 0 10px 24px rgba(1, 110, 244, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-section .btn-primary:hover,
.migration-section .btn-primary:hover,
.trust-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(1, 110, 244, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.choose-hiqloud h3 {
  font-size: 32px;
  font-weight: 700 !important;
}

@media (max-width: 1440px) {
  .who-we-are {
    padding: 40px 40px;
  }
}

@media (max-width: 1200px) {
  .plan-comparison-block .comparison-table {
    min-width: 900px;
  }

  .plan-comparison-block .comparison-table thead th:first-child {
    width: 280px;
  }
}

@media (max-width: 991px) {
  .plan-comparison-block {
    margin-top: 28px;
  }

  .plan-comparison-block .comparison-table {
    min-width: 760px;
  }

  .plan-comparison-block .comparison-table thead th:first-child {
    width: 240px;
  }

  .plan-comparison-block .comparison-table .section-row th {
    font-size: 17px;
    padding: 16px 12px 8px;
  }

  .plan-comparison-block .comparison-table .feature-cell {
    font-size: 13px;
    padding: 14px 12px;
  }

  .plan-comparison-block .comparison-table td {
    padding: 14px 8px;
  }

  .plan-comparison-block .hiqcloud-logo {
    max-height: 28px;
  }
}

@media (max-width: 575px) {
  .plan-comparison-block .comparison-table {
    min-width: 680px;
  }

  .plan-comparison-block .comparison-table thead th {
    padding: 10px 8px;
  }

  .plan-comparison-block .plan-head {
    font-size: 12px;
    padding: 8px 6px;
  }

  .plan-comparison-block .comparison-table thead small {
    font-size: 10px;
  }

  .plan-comparison-block .comparison-table .section-row th {
    font-size: 16px;
  }

  .plan-comparison-block .comparison-table .table-note {
    padding: 10px 10px 12px 16px;
  }

  .plan-comparison-block .check,
  .plan-comparison-block .cross {
    font-size: 18px;
  }
}

/* --- Privacy Policy Page Scoped Styles --- */
.privacy-policy-page {
  overflow: visible;
}

.privacy-policy-page .content-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.privacy-policy-page .sidebar-card {
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 30px var(--shadow-light);
  background: var(--color-white);
  padding: 18px;
  position: relative;
  top: auto;
  width: 100%;
}

.privacy-policy-page .legal-sidebar {
  position: relative;
  align-self: stretch;
  overflow: visible;
}

.privacy-policy-page .legal-sidebar.is-fixed .sidebar-card {
  position: fixed;
  top: 100px;
  z-index: 10;
}

.privacy-policy-page .legal-sidebar.is-bottom .sidebar-card {
  position: absolute;
  bottom: 0;
  top: auto;
}

.privacy-policy-page .nav-legal .nav-link {
  color: var(--text-muted-dark-alt);
  padding: 8px 12px;
  font-weight: 600;
  border-radius: 10px;
  margin-bottom: 4px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  font-size: 0.82rem;
}

.privacy-policy-page .nav-legal .nav-link:hover {
  background-color: var(--bg-light);
  color: var(--brand-blue-secondary);
}

.privacy-policy-page .nav-legal .nav-link.active {
  background-color: var(--brand-blue-secondary) !important;
  color: var(--color-white) !important;
  box-shadow: 0 8px 20px var(--brand-blue-20);
}

.privacy-policy-page .nav-legal .nav-link i {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.privacy-policy-page .nav-legal .nav-link.active i {
  transform: scale(1.1);
}

.privacy-policy-page .help-card {
  background: linear-gradient(145deg, var(--brand-dark), var(--brand-navy));
  border: 1px solid var(--white-05);
  border-radius: 20px;
  padding: 25px;
  margin-top: 40px;
}

.privacy-policy-page .legal-card {
  background: linear-gradient(243.48deg,
      var(--color-white) 33.93%,
      var(--light-blue) 85.45%);
  border: 1px solid var(--border-blue-light);
  border-radius: 30px;
  padding: 30px 40px 40px;
  /* Reduced top padding from 40px to 30px */
  margin-bottom: 30px;
  scroll-margin-top: 120px;
  transition: 0.3s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.privacy-policy-page .legal-card h2:first-child,
.privacy-policy-page .legal-card h3:first-child,
.privacy-policy-page .legal-card div:first-child h3 {
  margin-top: 0 !important;
}

.privacy-policy-page .legal-card h2,
.privacy-policy-page .legal-card h3,
.privacy-policy-page .legal-card h5,
.tab-pane h2,
.tab-pane h3 {
  color: var(--brand-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.privacy-policy-page .legal-card h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  margin-top: 0;
}

.privacy-policy-page .legal-card h3 {
  font-size: 1.4rem;
  margin-top: 25px;
  margin-bottom: 15px;
}

.privacy-policy-page .legal-card p {
  color: var(--text-muted-dark-alt);
  font-size: 1rem;
  line-height: 1.7;
}

.privacy-policy-page .legal-card ul {
  list-style-type: none;
  padding-left: 20px;
}

.privacy-policy-page .legal-card li {
  color: var(--text-muted-dark-alt);
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  padding-left: 24px;
  margin-bottom: 5px;
}

.privacy-policy-page .legal-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.801 10A10 10 0 1 1 17 3.335'/%3E%3Cpath d='m9 11 3 3L22 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.privacy-policy-page .legal-card:hover {
  border-color: var(--brand-blue-secondary);
  transform: translateY(-5px);
}

.card-info-icon {
  width: 32px;
  height: 32px;
  background: var(--color-white);
  color: var(--brand-blue-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
}

.privacy-policy-page .note-box {
  background: var(--brand-blue-10);
  border-left: 4px solid var(--brand-blue);
  padding: 20px;
  border-radius: 4px 12px 12px 4px;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--badge-text);
  margin-top: 30px;
}

.privacy-policy-page .acceptance-box {
  background: linear-gradient(135deg,
      var(--brand-blue-10) 0%,
      var(--brand-blue-05) 100%);
  border: 1px solid var(--brand-blue-20);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 15px 40px rgba(1, 110, 244, 0.03);
}

/* --- CONTACT SECTION AREA (FIXED) --- */
.privacy-policy-page .contact-section-area {
  background: #f8fbff !important;
  border: 1px solid var(--border-blue-light) !important;
}

.privacy-policy-page .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.privacy-policy-page .contact-item {
  background: #ffffff !important;
  border: 1px solid #dce4ee !important;
  /* Lighter border for default state */
  border-radius: 15px;
  padding: 22px 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.privacy-policy-page .contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(1, 110, 244, 0.1);
  border-color: var(--brand-blue-secondary) !important;
}

.privacy-policy-page .contact-item i {
  font-size: 1.4rem;
  color: var(--brand-blue-secondary);
  background: var(--brand-blue-10);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 2px;
}

.privacy-policy-page .contact-label-text {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.privacy-policy-page .contact-value {
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
}

.privacy-policy-page .contact-item:hover .contact-value {
  color: var(--brand-blue-secondary);
}

/* wordpress page CSS */

.wordpress-hero-section {
  background: linear-gradient(180deg, #010a31 26%, #0f17cb 100%);
  padding: 140px 0;
}

.heading-para,
.subtitle-24 {
  font-size: 18px;
}

.feature-badge {
  background: #ffffff14;
  border-radius: 50px;
  padding: 8px 12px;
  font-size: 14px;
  letter-spacing: 0.4px;
}

.feature-bar {
  margin-top: -100px;
}

.feature-wrapper {
  background: #ffffff;
  border-radius: 40px;
  padding: 45px 38px;
  box-shadow: 0px 4px 39.5px 0px #0000000a;
}

.feature-title {
  font-size: 20px;
}

.feature-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  font-size: 30px;
}

.purple {
  background: #efe7f8;
  color: #8b5cf6;
}

.orange {
  background: #fdebdc;
  color: #f97316;
}

.blue {
  background: #e5edff;
  color: #2563eb;
}

.green {
  background: #e7f4ea;
  color: #22c55e;
}

.mini-icon {
  width: 60px;
  height: 60px;
  background: #016ef4;
  border-radius: 12px;
}

.mini-feature h6 {
  font-size: 20px;
}

/* wp-dev-section */
.wp-dev-card {
  margin-top: 80px;
  background: #000444;
}

.wp-feature-card {
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease;
  height: 100%;
}

.wp-feature-card:hover {
  transform: translateY(-5px);
}

.wp-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  margin-bottom: 1.5rem;
  /* padding: 0.6rem; */
}

.wp-card-title {
  color: #0d1b2a;
  font-weight: 700;
  font-size: 1.25rem;
}

.wp-card-text {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
}

/* USE CASE CARD */
.use-case-card {
  border: 1px solid #016ef480;
  border-radius: 48px;
  padding: 60px;
  background: #f9fbff;
  box-shadow: 0px 4px 91.7px -53px #00000040;
  margin: 0 auto;
}

/* GRID */
.use-case-grid {
  gap: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

/* ITEM */
.use-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}

/* ICON */
.icon-square img {
  width: 50px;
}

/* TEXT */
.case-content h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.case-content p {
  font-size: 16px;
  color: #040815;
  margin: 0;
}

/* VERTICAL DIVIDER */
.use-item::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 5px;
  height: 60px;
  width: 1px;
  background: #e3e3e3;
}

/* REMOVE DIVIDER AFTER EVERY 3RD ITEM */
.use-item:nth-child(2n)::after {
  display: none;
}

/* REMOVE DIVIDER LAST ITEM */
.use-item:last-child::after {
  display: none;
}

.feature-icon-box {
  width: 45px;
  height: 45px;
  background-color: var(--brand-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  padding: 6px;
}

.feature-icon-box .feature-lucide-icon {
  color: var(--color-white);
}

.choose-hiqloud-features h3 {
  font-size: 24px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .use-case-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .use-item::after {
    display: none;
  }

  .global-img {
    opacity: 0.5;
  }
}

@media (max-width: 576px) {
  .use-case-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Custom Gap Fix --- */
.row-spacing {
  margin-bottom: 63px;
  /* Exact 63px gap between 1st and 2nd row */
}

/* Vertical dividers (Desktop only) */
@media (min-width: 768px) {
  .divider-end {
    border-right: 1px solid #f0f0f0;
  }
}

/* Mobile adjust: gap between items on mobile */
@media (max-width: 767px) {
  .use-item {
    gap: 0;
  }

  .dev-choice-feature-card {
    flex: 0 0 340px;
    padding: 18px;
  }

  .choose-hiqloud-features p {
    font-size: 16px !important;
  }

  .plan-card.popular {
    margin-top: 16px;
  }

  .who-we-are {
    padding: 28px 28px;
  }

  .plan-table-subheading {
    font-size: 16px;
    width: 100%;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-wrapper {
    padding: 26px 26px;
  }

  .heading-para,
  .subtitle-24 {
    font-size: 16px;
  }

  .use-case-card {
    padding: 32px;
  }

  .row-spacing {
    margin-bottom: 30px;
  }

  .mobile-mt {
    margin-top: 30px;
  }
}

/* Lightning bolt doesn't have a box in the image, it's just the shape */
.why-choose .icon-bolt {
  background: transparent;
  box-shadow: none;
  top: -35px;
}

.why-choose .icon-bolt i {
  font-size: 4rem;
  color: #0d6efd;
  filter: drop-shadow(0 0 5px rgba(13, 110, 253, 0.5));
}

/* --- Custom page-desc Prefix Styles --- */

/* Section Background */
.dev-choice {
  background-color: #020b9e;
  padding: 80px 0;
  margin-top: 80px;
}

/* Card Styles */
.dev-choice-feature-card {
  flex: 0 0 530px;
  margin-right: 30px;
  border-radius: 8px;
  padding: 32px 32px 32px 32px;
  border: none !important;
  transition: transform 0.3s ease;
}

/* Icon Styles */
.dev-choice-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

/* Paragraph parallel align karne ke liye */
.dev-choice-page-desc-card {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
  opacity: 0.85;
}

/* Card Heading adjustments */
.dev-choice-feature-card h4 {
  font-size: 1.25rem;
  margin-top: 5px;
}

/* Variations */
.dev-choice-card-muted {
  background-color: #3c43ae;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dev-choice-card-white {
  background-color: white;
  color: #0c1c38;
}

.dev-choice-card-bright {
  background-color: #016ef4;
  color: white;
}

/* Icon circle colors */
.dev-choice-icon-circle-dark {
  background-color: #1a237e;
  color: white;
}

.dev-choice-icon-circle-light {
  background-color: #f0f4ff;
  color: #020b9e;
}

.dev-choice-icon-circle-white {
  background-color: white;
  color: #016ef4;
}

/* --- AUTO SCROLL LOGIC WITH PREFIX --- */
.dev-choice-scroll-viewport {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.dev-choice-scroll-track {
  display: flex;
  width: calc(350px * 10);
  animation: dev-choice-scroll-slow 30s linear infinite;
}

.dev-choice-scroll-track:hover {
  animation-play-state: paused;
}

@keyframes dev-choice-scroll-slow {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-350px * 3));
  }
}

@media (max-width: 768px) {
  .dev-choice-scroll-track {
    animation: dev-choice-scroll-slower 40s linear infinite;
  }

  @keyframes dev-choice-scroll-slower {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-350px * 3));
    }
  }

  .dev-choice {
    margin-top: 50px;
    padding: 50px 0;
  }
}

/* Container Card */
.cluster-info-card {
  background-color: #f7f7fd;
  border: 1.5px solid #e0def7;
  border-radius: 60px;
  /* Large rounded corners from image */
  padding: 80px 60px;
  /* Generous internal spacing */
}

/* List Item Styling */
.cluster-info-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: #191a15;
  margin-bottom: 16px;
}

.cluster-info-item:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .cluster-info-card {
    border-radius: 30px;
    padding: 40px 25px;
  }
}

/* --- VPS PLANS SECTION --- */
.vps-subtitle {
  max-width: 991px;
  margin-bottom: 48px;
}

.vps-sidebar-card {
  background: #f9fbff;
  border: 1px solid #d6e8ff;
  border-radius: 10px;
}

.sidebar-title {
  color: #000000;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  transition: all 0.3s ease;
  text-align: left;
  background: transparent;
  position: relative;
  padding: 10px 10px 10px 10px;
}

.vps-nav-pills .nav-link {
  color: #000000;

  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  transition: all 0.3s ease;
  text-align: left;
  background: transparent;
  position: relative;
}

.vps-nav-pills .nav-link::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.vps-nav-pills .nav-link.active {
  padding: 10px 10px 10px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #016ef4;
  background: #cce3ff80;
  border: 1px solid #016ef4;
  border-radius: 12px;
}

.vps-nav-pills .nav-link.active::before {
  background-color: #2563eb;
}

.vps-nav-pills .nav-link.sub-link {
  font-size: 14px;
  color: #6c6c6c;
  padding: 8px 16px 8px 24px;
  border-radius: 12px;
  background-color: transparent;
}

.vps-nav-pills .nav-link.sub-link::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.vps-nav-pills .nav-link.sub-link.active {
  padding: 10px 10px 10px 32px;
  font-size: 14px;
  font-weight: 600;
  color: #016ef4;
  background: #cce3ff80;
  border: 1px solid #016ef4;
  border-radius: 12px;
}

.vps-nav-pills .nav-link.sub-link.active::before {
  background-color: #2563eb;
  display: block;
}

.vps-nav-pills .nav-link:hover:not(.active) {
  background-color: #f8fafc;
  color: var(--text-dark);
}

.dropdown-toggle-btn {
  cursor: pointer;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.3s ease;
}

.dropdown-toggle-btn .chevron-icon {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: #6c6c6c;
}

.dropdown-toggle-btn[aria-expanded="true"] .chevron-icon {
  transform: rotate(180deg);
  color: var(--brand-blue);
}

/* Multiplier Buttons */
.multiplier-btn {
  background-color: var(--color-white);
  border: 1px solid #e2e8f0;
  color: var(--text-dark-gray);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.multiplier-btn.active {
  color: #2563eb;
  border-color: #a3c6ff;
  background-color: #eaf2ff;
}

.multiplier-btn:hover:not(.active) {
  background-color: #f8fafc;
  border-color: #cbd5e1;
}

/* Table Wrapper */
.vps-table-wrapper {
  border: 1px solid #cce0ff;
  border-radius: 12px;
  background: var(--color-white);
}

.vps-table {
  margin-bottom: 0;
}

.main-illustration {
  width: 80%;
}

.vps-table thead {
  background: #bbd9ff80;
  box-shadow: inset 0 0 0 1px #cce0ff;
  border-radius: 10px 10px 0 0;
}

.vps-table thead th {
  border: none;
  background-color: transparent;
  color: #2563eb;
  font-weight: 600;
  font-size: 14px;
  padding: 16px;
}

.vps-table thead tr {
  border-radius: 10px 0 0 0;
}

.vps-table tbody td {
  padding: 16px;
  color: #000;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid #f1f5f9;
}

.vps-table tbody tr:last-child td {
  border-bottom: none;
}

/* --- Contact Page Styles --- */
.contact-hero-section {
  background: linear-gradient(180deg, #010a31 26%, #0f17cb 100%);
  padding-top: 140px;
  padding-bottom: 150px;
}

.contact-info-card {
  background: #00000033;
  box-shadow: 0px 12px 40px 0px #040f160a;
  border-radius: 12px;
}

.contact-badge-blue {
  font-size: 14px;
  background: #004faf;
  box-shadow: 0px 12px 40px 0px #040f160a;
  border-radius: 50px;
  padding: 6px 20px;
  width: fit-content;
}

.contact-form-card {
  padding: 30px 35px;
  background: #ffffff01;
  box-shadow: 0px 4px 30px 0px #0000000f;
}

.contact-form-card h3 {
  color: #2c3165;

  font-size: 36px;
}

.contact-form-card .form-label {
  color: #2c3165;
  font-size: 12px;
}

.contact-form-card input {
  border: 1px solid #42526e33;
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  border-color: rgb(44, 49, 101);
  box-shadow: 0 0 0 0.05rem rgb(44, 49, 101);
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder,
.contact-form-card select option::placeholder {
  color: #42526eb2;
  font-size: 14px;
  font-weight: 500;
}

.contact-form-card select {
  color: #42526eb2;
  font-size: 14px !important;
}

.contact-form-card select option {
  color: #000000;
  font-size: 14px !important;
}

/* Lucide Icon Styling */
.feature-lucide-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  stroke-width: 2;
  flex-shrink: 0;
  font-size: 48px;
}

.use-item .icon-square {
  background: #2563eb;
  height: 48px !important;
  width: 48px !important;
  min-width: 45px !important;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Use Case Icons with Blue Background */
.use-item .icon-square .use-case-icon {
  color: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  line-height: 1;
}

@media(max-width: 767px) {

  .secondary-outline-btn,
  .primary-btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 14px !important;
    font-weight: 500 !important;
  }

  .hero-section h1 {
    line-height: 38px;
  }

  .benefit-section .dashboard-img-wrapper {
    margin: 25px 0px 0 25px;
  }

  .wordpress-hero-section p {
    width: 100% !important;
  }

  .wordpress-hero-section {
    padding: 75px 0;
  }

  .mini-feature h6 {
    font-size: 20px;
  }
}