/*
Theme Name: SCube
Theme URI: https://scube.com
Author: SCube
Author URI: https://scube.com
Description: A lightweight, performance-optimized starter theme by SCube.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: scube
Tags: blog, custom-menu, featured-images, full-width-template, threaded-comments, translation-ready
*/

/* ROOT TOKENS */

:root {
  /* Brand primary */
  --color-primary: #00ffff;
  --color-secondary: #006680;

  --color-primary-gradient-1: #009092;
  --color-primary-gradient-2: #12263a;
  --color-primary-gradient-3: #0e4355;

  --color-secondary-gradient-1: #00ffff;
  --color-secondary-gradient-2: #006680;
  --color-secondary-gradient-3: #00ffff;

  --gradient-primary: linear-gradient(
    135deg,
    var(--color-primary-gradient-1) 0%,
    var(--color-primary-gradient-2) 52%,
    var(--color-primary-gradient-3) 100%
  );

  --gradient-secondary: linear-gradient(
    135deg,
    var(--color-secondary-gradient-1) 0%,
    var(--color-secondary-gradient-2) 52%,
    var(--color-secondary-gradient-3) 100%
  );

  /* Accent */
  --color-accent-purple: #b907f4;

  /* Secondary palette */
  --color-midnight-blue: #8aa0b5;
  --color-white: #ffffff;

  /* Neutral palette */
  --color-black: #212121;
  --color-darkest-grey: #26262c;
  --color-dark-grey: #383844;
  --color-mid-dark-grey: #63626a;
  --color-mid-grey: #8e8d96;
  --color-outline-grey: #d5d5d6;
  --color-light-grey: #e4e4e4;
  --color-background-grey: #f4f4f4;
  --color-table-grey: #f9f9f9;

  /* Semantic green */
  --color-lighter-sem-green: #f2fbf6;
  --color-green-hover: #def4e8;
  --color-green: #46b881;
  --color-dark-green: #00783f;

  /* Semantic amber */
  --color-light-amber: #fff8f3;
  --color-amber-hover: #ffe2cd;
  --color-amber: #f09932;
  --color-dark-amber: #bf6700;

  /* Semantic red */
  --color-light-sem-red: #fff6f6;
  --color-red-hover: #ffe7e7;
  --color-red: #ec4c47;
  --color-dark-red: #d70d00;

  /* Theme base */
  --bg-body: #1e1e40;
  --bg-surface: #ffffff;
  --text-primary: #ffffff;
  --text-secondary: #d5d5d6;
  --text-muted: #8e8d96;
  --text-dark: #212121;
  --color-text: #0ff;
  --color-bg: rgba(255, 255, 255, 0.15);

  /* Fonts */
  --font-heading: "Syne", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Typography: mobile */
  --h1-size-mobile: 3rem;
  --h1-line-mobile: 3.5rem;

  --h2-size-mobile: 2.25rem;
  --h2-line-mobile: 2.75rem;

  --h3-size-mobile: 1.75rem;
  --h3-line-mobile: 2.25rem;

  --h4-size-mobile: 1.5rem;
  --h4-line-mobile: 2rem;

  --h5-size-mobile: 1.25rem;
  --h5-line-mobile: 1.75rem;

  --h6-size-mobile: 1.125rem;
  --h6-line-mobile: 1.625rem;

  --body-size-mobile: 1.125rem;
  --body-line-mobile: 1.75rem;

  --body-compact-size: 1rem;
  --body-compact-line: 1.5rem;

  --label-size-mobile: 0.875rem;
  --label-line-mobile: 1.375rem;

  /* Typography: tablet */
  --h1-size-tablet: 4.5rem;
  --h1-line-tablet: 5.125rem;

  --h2-size-tablet: 3.5rem;
  --h2-line-tablet: 4.125rem;

  --h3-size-tablet: 2.75rem;
  --h3-line-tablet: 3.375rem;

  --h4-size-tablet: 2.125rem;
  --h4-line-tablet: 2.75rem;

  --h5-size-tablet: 1.75rem;
  --h5-line-tablet: 2.375rem;

  --h6-size-tablet: 1.125rem;
  --h6-line-tablet: 1.625rem;

  /* Typography: desktop */
  --h1-size-desktop: 5.625rem;
  --h1-line-desktop: 5.625rem;

  --h2-size-desktop: 4.5rem;
  --h2-line-desktop: 5.25rem;

  --h3-size-desktop: 3.5rem;
  --h3-line-desktop: 4.25rem;

  --h4-size-desktop: 2.75rem;
  --h4-line-desktop: 3.5rem;

  --h5-size-desktop: 2.25rem;
  --h5-line-desktop: 3rem;

  --h6-size-desktop: 1.25rem;
  --h6-line-desktop: 1.75rem;

  --body-size-desktop: 1.25rem;
  --body-line-desktop: 1.875rem;

  --label-size-desktop: 0.875rem;
  --label-line-desktop: 1.375rem;

  --default-letter-spacing: 0;

  /* Layout */
  --container-max-width: 90rem;
  --container-padding-desktop: 3.125rem;
  --container-padding-tablet: 2rem;
  --container-padding-mobile: 1.5rem;

  --section-gap-desktop: 3.625rem;
  --section-gap-tablet: 2.5rem;
  --section-gap-mobile: 1.25rem;

  /* Radius */
  --radius-xs: 0.5rem;
  --radius-sm: 0.75rem;
  --radius-md: 1.125rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --radius-pill: 62.4375rem;

  /* Shadows */
  --shadow-sm: 0 0.25rem 0.625rem rgba(18, 18, 18, 0.05);
  --shadow-md: 0 0.5rem 1.5rem rgba(18, 18, 18, 0.08);

  /* Transition */
  --transition-base: 0.3s ease;

  /* Buttons */
  --button-height: 3.5rem;
  --button-padding-x: 1.5rem;

  /* Gaps */
  --gap-4: 0.25rem;
  --gap-8: 0.5rem;
  --gap-12: 0.75rem;
  --gap-16: 1rem;
  --gap-20: 1.25rem;
  --gap-24: 1.5rem;
  --gap-32: 2rem;
  --gap-40: 2.5rem;
  --gap-48: 3rem;
  --gap-58: 3.625rem;
  --gap-64: 4rem;
}

.row.no-gutter {
  margin-left: 0;
  margin-right: 0;
}

.row.no-gutter > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

/* FONT FACE */
@font-face {
  font-family: "Inter";
  src:
    url("/wp-content/themes/scube/fonts/Inter-Regular.woff2") format("woff2"),
    url("/wp-content/themes/scube/fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("/wp-content/themes/scube/fonts/Inter-Medium.woff2") format("woff2"),
    url("/wp-content/themes/scube/fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Syne";
  src:
    url("/wp-content/themes/scube/fonts/Syne-Regular.woff2") format("woff2"),
    url("/wp-content/themes/scube/fonts/Syne-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Syne";
  src:
    url("/wp-content/themes/scube/fonts/Syne-SemiBold.woff2") format("woff2"),
    url("/wp-content/themes/scube/fonts/Syne-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* RESET / BASE */
html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg-body);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--body-size-desktop);
  line-height: var(--body-line-desktop);
  letter-spacing: var(--default-letter-spacing);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition:
    color var(--transition-base),
    opacity var(--transition-base);
}

a:hover,
a:focus {
  color: var(--color-primary-gradient-1);
}

p,
.body-compact {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--body-compact-size);
  line-height: var(--body-compact-line);
  letter-spacing: var(--default-letter-spacing);
}

.body-large p,
.body-large {
  font-size: var(--body-size-desktop);
  line-height: var(--body-line-desktop);
}

p {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

li {
  color: var(--text-primary);
  font-size: var(--body-size-desktop);
  line-height: var(--body-line-desktop);
}

small,
.label-text,
.form-text,
.tag-text {
  font-size: var(--label-size-desktop);
  line-height: var(--label-line-desktop);
  font-weight: 400;
}

strong,
b {
  font-weight: 700;
  color: var(--text-primary);
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6,
.heading-font {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  letter-spacing: var(--default-letter-spacing);
  color: var(--text-primary);
}

h1,
.heading-1 {
  font-size: var(--h1-size-desktop);
  line-height: var(--h1-line-desktop);
  font-weight: 600;
}

h2,
.heading-2 {
  font-size: var(--h2-size-desktop);
  line-height: var(--h2-line-desktop);
  font-weight: 400;
}

h3,
.heading-3 {
  font-size: var(--h3-size-desktop);
  line-height: var(--h3-line-desktop);
  font-weight: 400;
}

h4,
.heading-4 {
  font-size: var(--h4-size-desktop);
  line-height: var(--h4-line-desktop);
  font-weight: 400;
}

h5,
.heading-5 {
  font-size: var(--h5-size-desktop);
  line-height: var(--h5-line-desktop);
  font-weight: 400;
}

h6,
.heading-6 {
  font-size: var(--h6-size-desktop);
  line-height: var(--h6-line-desktop);
  font-weight: 400;
}

/* 5. LAYOUT / CONTAINER / SECTION  */
.container,
.container-fluid,
.site-container,
.layout-container,
.brand-container {
  padding-left: var(--container-padding-desktop);
  padding-right: var(--container-padding-desktop);
  max-width: var(--container-max-width);
}

.section {
  padding-top: var(--section-gap-desktop);
  padding-bottom: var(--section-gap-desktop);
}

.section-top {
  padding-top: var(--section-gap-desktop);
}

.section-bottom {
  padding-bottom: var(--section-gap-desktop);
}

.section-gap {
  margin-top: var(--section-gap-desktop);
}

.section-gap-bottom {
  margin-bottom: var(--section-gap-desktop);
}

.highlight {
  color: var(--text-primary);
}

/* BUTTONS */
.btn,
button,
input[type="submit"],
input[type="button"],
.wp-block-button__link {
  transition:
    background var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.btn-primary,
button.btn-primary,
.wp-block-button__link.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--button-height);
  padding: 0 var(--button-padding-x);
  border: 0.0625rem solid var(--color-accent-purple);
  border-radius: var(--radius-pill);
  background: var(--color-accent-purple);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  cursor: pointer;
}

a.btn.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* fixes double button issue */

  background: var(--color-accent-purple);
  color: var(--color-white);
  border: 0.0625rem solid var(--color-accent-purple);
  border-radius: var(--radius-pill);

  padding: 0.5rem 1.3125rem;
  cursor: pointer;
  z-index: 1;
}

.btn-icon {
  width: 16px;
  height: 1rem;
  margin-left: 0.5rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.btn-primary::after {
  background: var(--color-text);
}

a.btn.btn-primary:hover {
  border: 0.0625rem solid var(--color-text);
}

.btn-primary .btn__text-inner:last-child img {
  filter: invert(1);
}

.btn {
  --transition: 0.5s;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 0.625rem;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}

/* Diamond wipe layer */
.btn::after {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 200%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: 0% 0%;
  rotate: 45deg;
  transition: var(--transition);
}

.btn__text {
  display: block;
  position: relative;
  z-index: 1;
}

.btn__text-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0rem;
  transition: var(--transition);
}

.btn__text-inner:last-child {
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
}

/* Primary */
.btn-primary {
  background: #000;
  border: 0.125rem solid #000;
}

.btn-primary::after,
.btn-outline::after {
  background: var(--color-text);
}

.btn-primary .btn__text-inner:first-child {
  color: #fff;
}

.btn-primary .btn__text-inner:last-child,
.btn-outline .btn__text-inner:last-child {
  color: #000;
}

/* Outline */
.btn-outline {
  background: transparent;
  border: 0.125rem solid #000;
}

.btn-outline .btn__text-inner:first-child {
  color: #fff;
}

/* Hover */
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: #fff;
  }

  .btn-outline:hover {
    background: #000;
  }

  .btn:hover::after {
    translate: -50% -50%;
  }

  .btn:hover .btn__text-inner:first-child {
    translate: 0 -100%;
  }

  .btn:hover .btn__text-inner:last-child {
    translate: -50% -100%;
  }
}

.btn-outline,
button.btn-outline,
.wp-block-button__link.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--button-height);
  padding: 0 var(--button-padding-x);
  border: 0.0625rem solid var(--color-primary);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
}

a.btn.btn-outline {
  padding: 0.625rem 1.625rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(0.1562rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: 145px;
  height: 2.625rem;
}

.btn-white,
button.btn-white,
.wp-block-button__link.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height);
  padding: 0 var(--button-padding-x);
  border: 0.0625rem solid var(--color-white);
  border-radius: var(--radius-pill);
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
}

/* FORMS */
label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: var(--label-size-desktop);
  line-height: var(--label-line-desktop);
  color: var(--text-primary);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
select,
textarea {
  width: 100%;
  min-height: 3.5rem;
  padding: 0.875rem 1rem;
  border: 0.0625rem solid var(--color-outline-grey);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--body-compact-size);
  line-height: var(--body-compact-line);
}

textarea {
  min-height: 8.75rem;
  resize: vertical;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.1875rem rgba(0, 255, 255, 0.12);
}

/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: transparent;
  transition: background 0.3s ease;
}

#header.scrolled {
  /*   background: var(--bg-body); */
  backdrop-filter: blur(10px);
  background-color: rgba(221, 221, 221, 0);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  padding-top: 1.625rem;
  padding-bottom: 1.625rem;
}

.site-header__branding {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  display: block;
  width: auto;
  max-height: 2.25rem;
}

.site-logo--text {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 600;
}

.mobile-menu__logo svg path:last-of-type,
.site-logo svg path:last-of-type {
  fill: white;
  fill-opacity: 0;
  stroke: white;
  stroke-width: 0.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =============================================
   SITE NAV — RESET & HORIZONTAL LAYOUT
============================================= */

.site-nav {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav > li {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.3125rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-base);
}

.site-header__actions {
  gap: 0.9375rem;
  display: inline-flex;
}

.site-header__actions a.btn.btn-primary,
.site-header__actions a.btn.btn-outline {
  padding: 0px 1.3125rem;
  height: 2.625rem;
  width: auto;
}
.site-header__actions a.btn.btn-outline {
  display: none;
}

.site-header__actions a.btn.btn-primary .btn__text-inner img {
  height: 20px;
  width: 20px;
  flex: 1;
}

.site-nav > li > a:hover,
.site-nav > li:hover > a,
.site-nav > li.current-menu-item > a,
.site-nav > li.current-menu-parent > a,
.site-nav > li.current-menu-ancestor > a {
  color: var(--color-white);
}

.site-nav li {
  position: relative;
  z-index: 99;
}

.site-nav > li::after,
.mega-menu__col-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3125rem;
  width: 100%;
  /* ← always 100% (of inline-block = text width) */
  height: 0.0625rem;
  background-color: var(--color-white);
  transform: scaleX(0);
  /* ← hidden by default */
  transform-origin: left;
  transition: transform 0.3s ease;
  /* ← animate transform, not width */
}

.site-nav > li:hover::after,
.mega-menu__col-links li a:hover::after {
  /* ← a:hover, not li:hover */
  transform: scaleX(1);
}

/* Chevron */
.nav-chevron {
  display: inline-block;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.site-nav > li.has-mega-menu:hover .nav-chevron,
.site-nav > li.has-mega-menu:focus-within .nav-chevron {
  transform: rotate(180deg);
}

/* =============================================
   MEGA MENU DROPDOWN — full width panel
============================================= */

.mega-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  margin-top: 4.375rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.5rem);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
  padding-top: 3.75rem;
}

.site-nav > li.has-mega-menu:hover .mega-menu,
.site-nav > li.has-mega-menu:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Solid dark panel — NO backdrop blur on page content */
.mega-menu__inner {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 4.0625rem 4.75rem;
  background: #0c1b35;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.06);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.7);
}

/* ── Purple heading + full-width rule ── */
.mega-menu__header-row {
  margin-bottom: 2.875rem;
  padding-bottom: 1.8125rem;
  border-bottom: 0.0625rem solid #63626a;
}

.mega-menu__label {
  color: var(--color-accent-purple);
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 3rem;
}

/* ── Column grid ── */
.mega-menu__cols {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

/* Each depth-1 item = one column */
.mega-menu__col {
  flex: 1;
  padding: 0 2rem 0 0;
}

.mega-menu__col:last-child {
  padding-right: 0;
  border-right: none;
}

.mega-menu__col + .mega-menu__col {
  padding-left: 2rem;
}

/* Column heading (e.g. "Digital Development") */
.mega-menu__col-heading {
  margin-bottom: 1.875rem;
}

.mega-menu__col-heading a {
  display: block;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.875rem;
  text-decoration: none;
  transition: color var(--transition-base);
}

.mega-menu__col-heading a:hover {
  color: var(--color-primary);
}

/* Links under each column heading */
.mega-menu__col-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.3438rem;
}

.mega-menu__col-links li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-menu__col-links li a {
  display: inline-block;
  padding: 0rem;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: normal;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

.mega-menu__col-links li a:hover {
  color: var(--color-white);
}

.mega-menu__col-links li a.is-active {
  color: var(--color-primary);
}

/* No overlay / no blur behind dropdown */
.mega-overlay {
  display: none;
}

/* =============================================
   MOBILE MENU PANEL
============================================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  z-index: 200;
  background-image: url("/wp-content/uploads/2026/04/mega-menu-bg-scaled.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #0d1a33;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-menu-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

.mobile-menu__panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-menu__panel.mobile-menu__panel--sub.is-active .mobile-menu__header {
  justify-content: end;
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1.5rem;
  flex-shrink: 0;
}

.mobile-menu__logo img {
  width: 110px;
  height: auto;
}

.mobile-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 2.25rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--transition-base);
  padding: 0;
  background: #cccccc00;
}

.mobile-menu__back {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: color var(--transition-base);
}

.mobile-menu__back:hover {
  color: var(--color-white);
}

.mobile-menu__nav {
  flex: 1;
  padding: 0.4375rem 0 0;
}

.mobile-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu__item {
  border-bottom: 0.0312rem solid #63626a;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu__item {
  margin: 0 1.5rem;
}

.mobile-menu__item .mobile-menu__link {
  padding-left: 0;
  padding-right: 0;
}

.mobile-menu__item:last-child {
  border-bottom: 0;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5625rem 1.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: normal;
  font-weight: 400;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: color var(--transition-base);
}

.mobile-menu__link:hover {
  color: var(--color-white);
}

.mobile-menu__chevron {
  flex-shrink: 0;
}

.mobile-menu__sub-label {
  padding: 1rem 1.25rem 0.5rem;
  margin: 0;
  color: var(--color-accent-purple);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

.mobile-menu__list--sub .mobile-menu__item {
  border-bottom: 0.0625rem solid #63626a;
}

.mobile-menu__list--sub .mobile-menu__item.is-active .mobile-menu__link--sub {
  color: var(--color-primary);
}

.mobile-menu__link--sub {
  display: block;
  width: 100%;
  padding: 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition-base);
}

.mobile-menu__link--sub:hover {
  color: var(--color-primary);
}

.mobile-menu__sub-parent {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.07);
}

.mobile-menu__sub-parent-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9375rem 1.25rem;
  background: none;
  border: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  text-align: left;
  transition: color var(--transition-base);
}

.mobile-menu__sub-parent-btn:hover {
  color: var(--color-white);
}

.mobile-menu__footer {
  padding: 1.25rem 1.25rem 1.875rem;
  margin-top: auto;
  flex-shrink: 0;
}

.mobile-menu__sub-parent {
  display: none;
}

.mobile-menu__footer-link:hover {
  color: var(--color-white);
}

.mega-menu__col-links li a:hover,
.mega-menu__col-links li a:active {
  color: var(--color-primary);
}

.mobile-menu__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.3125rem;
}

.mobile-menu__footer-links li {
  padding-bottom: 1.5rem;
}

.mobile-menu__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition-base);
}

/* Accordion sections */
.mobile-menu__section {
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__section:last-of-type {
  border-bottom: none;
}

.mobile-menu__section-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.8125rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  text-align: left;
  transition: color var(--transition-base);
}

.mobile-menu__section-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: rgba(255, 255, 255, 0.5);
}

.mobile-menu__section.is-open .mobile-menu__section-chevron {
  transform: rotate(180deg);
  color: var(--color-white);
}

.mobile-menu__section-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.mobile-menu__section.is-open .mobile-menu__section-body {
  max-height: 37.5rem;
}

.mobile-menu__section-links {
  margin: 0;
  padding: 0 0 0.625rem 0;
  list-style: none;
}

.mobile-menu__panel--sub .mobile-menu__close {
  display: none;
}

.mobile-menu__section-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu__section-links li a {
  display: block;
  padding: 0.6875rem 2.25rem 0.6875rem 2.25rem;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-base);
}

.mobile-menu__section-links li a:active {
  color: var(--color-primary);
}

.mobile-menu__section-links li a:hover {
  color: var(--color-white);
}

.mobile-menu__section-links li a.is-active {
  color: var(--color-primary);
}

.mobile-menu__socials a:hover {
  color: var(--color-white);
}

/* =============================================
   RESPONSIVE
============================================= */

.menu-toggle {
  display: none;
}

/* Header end */
/* Footer start */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 4.6875rem 0 1.875rem;
  background-color: #1b0d4d;
  background-image: url("/wp-content/uploads/2026/03/footer-bg-1.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.site-footer__row {
  row-gap: 2rem;
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
}

.site-footer__logo-text {
  display: inline-flex;
  align-items: center;
}

.site-footer__logo img,
.site-footer__logo svg {
  display: block;
  width: 160px;
  height: auto;
}

.site-footer__logo svg path {
  fill: white;
  fill-opacity: 0;
  stroke: white;
  stroke-width: 0.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__col {
  width: 100%;
}

.site-footer__title {
  margin: 0 0 0.875rem;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: 500;
}

.site-footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__menu li a {
  margin: 0 0 0.375rem;
  font-size: 1rem;
  line-height: normal;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__menu li {
  margin: 0 0 0.4375rem;
}

.site-footer__menu li:last-child {
  margin-bottom: 0;
}

.site-footer__menu a:hover {
  color: var(--color-accent-purple);
}

.site-footer__copyright {
  margin: 0;
  color: var(--color-white);
  font-size: 1rem;
  line-height: normal;
  font-weight: 400;
}

.site-footer__col p {
  margin-bottom: 0.6875rem;
  color: #fafafa;
  line-height: normal;
  font-family: var(--font-heading);
}

.site-footer__row {
  gap: 1.5625rem;
  row-gap: 6.0625rem;
}

/* =============================================
   MOBILE — section headings inside sub-panel
============================================= */
.mobile-menu__link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__link--parent {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.mobile-menu__section {
  border-bottom: 0.0625rem solid #63626a;
  padding: 0.75rem 0;
}

.mobile-menu__section:last-of-type {
  border-bottom: none;
}

.mobile-menu__section-heading {
  padding: 0.75rem 1.25rem 0.375rem;
}

.mobile-menu__footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  gap: 1rem;
}

.mobile-menu__footer-link {
  display: block;
  padding: 0.6875rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  text-decoration: none;
  transition: color var(--transition-base);
  font-weight: 400;
}

.mobile-menu__footer-links li a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.mobile-menu__footer-links li a:hover {
  opacity: 1;
}

.mobile-menu__section-heading a {
  display: block;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--transition-base);
}

.mobile-menu__section-heading a:hover {
  color: var(--color-primary);
}

.mobile-menu__list--sub {
  padding-bottom: 0.5rem;
}

.mobile-menu__list--sub .mobile-menu__item {
  border-bottom: none;
}

.mega-menu__inner {
  background-image: url(/wp-content/uploads/2026/04/mega-menu-bg-scaled.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.5rem;
}

/* Footer end */
/* Hero Banner */
.hero-home__wrap {
  padding-top: 4.375rem;
  padding-bottom: 0.5rem;
}

.hero-home__buttons {
  margin-top: 1.875rem;
  gap: 1.5rem;
  display: flex;
}

/* ── HERO SECTION ── */
.hero-home {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #0a1628;
}

/* BG canvas — absolute inside section ONLY, never bleeds out */
.hero-home__bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.hero-home .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-left: var(--container-padding-desktop);
  padding-right: var(--container-padding-desktop);
}

.hero-home__wrap {
  padding-top: 9.5rem;
  padding-bottom: 3.625rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0rem;
}

/* ── LEFT: CONTENT ── */
.hero-home__content {
  display: flex;
  flex-direction: column;
}

.hero-home__title {
  font-family: var(--font-heading);
  font-size: var(--h1-size-desktop);
  line-height: var(--h1-line-desktop);
  font-weight: 500;
  color: var(--color-white);
}

.highlight {
  color: var(--color-primary);
}

.hero-home__lead {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: normal;
  margin: 0 0 0.5rem;
  font-weight: 400;
  color: var(--color-white);
}

.hero-home__subtext {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: normal;
  font-weight: 400;
  margin: 0 0 1.5rem;
  color: var(--color-white);
  max-width: 80%;
}

.hero-home__desc p:first-child {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.5rem;
  width: 106%;
}

.hero-home__desc p:nth-child(2) {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.4375rem;
  width: 80%;
}

/* ── BUTTONS ── */
.hero-home__buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Primary — purple pill */
a.btn.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--button-height);
  padding: 0 1.75rem;
  background: var(--color-accent-purple);
  border: 0.0625rem solid var(--color-accent-purple);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  gap: 0.625rem;
  transition:
    background var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
  white-space: nowrap;
}

a.btn.btn-primary:hover {
  background: #c80aff;
  box-shadow: 0 0.5rem 1.75rem rgba(185, 7, 244, 0.45);
  transform: translateY(-0.0625rem);
}

a.btn.btn-primary svg {
  width: 15px;
  height: 0.9375rem;
  flex-shrink: 0;
}

/* Outline — frosted glass */
a.btn.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--button-height);
  padding: 0 1.75rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(0.375rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-base);
  white-space: nowrap;
}

a.btn.btn-outline:hover {
  background: #c80aff;
  box-shadow: 0 0.5rem 1.75rem rgba(185, 7, 244, 0.45);
  transform: translateY(-0.0625rem);
}

/* ── Custom Cursor ── */
.hero-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.2s;
}

.hero-cursor__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 2rem;
  border-radius: 50%;
  border: 0.0938rem solid rgba(0, 255, 255, 0.85);
  transition:
    width 0.18s,
    height 0.18s,
    border-color 0.18s,
    background 0.18s;
}

.hero-cursor__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 0.3125rem;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.95);
  box-shadow: 0 0 0.5rem rgba(0, 255, 255, 0.9);
}

.hero-cursor.hov .hero-cursor__ring {
  width: 50px;
  height: 3.125rem;
  border-color: rgba(185, 7, 244, 0.9);
  background: rgba(185, 7, 244, 0.07);
}

.hero-cursor.hov .hero-cursor__dot {
  width: 0;
  height: 0;
  opacity: 0;
}

.hero-cursor.clk .hero-cursor__ring {
  width: 20px;
  height: 1.25rem;
}

.hero-home {
  cursor: none;
}

@media (hover: none) {
  .hero-cursor {
    display: none;
  }

  .hero-home {
    cursor: auto;
  }
}

/* ── BG Canvas ── */
.hero-home__bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/*hero banner animation start*/

.hero-ring-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-ring-wrap .scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.animation-container {
  position: relative;
  width: 22.5rem;
  height: 22.5rem;
}
#bottomGroupText {
  display: block;
}

.formula-line {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: inline-block;
}

.center-text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.animation-container svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.animation-container svg path {
  stroke: #00ffff;
  stroke-width: 8;
  fill: none;
  filter: drop-shadow(0 0 0.0625rem #00ffff) drop-shadow(0 0 0.125rem #00ffff);
}

.animation-container .oval {
  will-change: transform, filter;
}

.animation-container .center-text {
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.3;
  background: linear-gradient(135deg, #b0ffff, #3effb0);
  display: inline-block;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  white-space: nowrap;
}

.animation-container .center-subtext {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8ffcff;
  opacity: 0;
  white-space: nowrap;
}

/* Bottom Text */
.bottom-group-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #8ffcff;
  opacity: 1;
  text-align: center;
  line-height: 1.2;
  min-height: 3.55rem;
}

.formula-prefix {
  display: inline-block;
}

.bottom-mainline {
  display: inline-block;
  white-space: nowrap;
  font-size: 1.125rem;
}

.bottom-subline {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 1.375rem;
  color: #b0ffff;
}

.image-wrap.top-to-bot svg path,
.svg-stage path {
  stroke: #b907f4;
  stroke-width: 0.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fade-up {
  opacity: 0;
  transform: translateY(3.125rem);
}

.reveal {
  opacity: 0;
  transform: translateY(3.75rem);
}
/*hero banner animation end*/

/* hero banner end */

/* md = 768px+ */
@media (min-width: 768px) {
  .section {
    padding-top: var(--section-gap-tablet);
    padding-bottom: var(--section-gap-tablet);
  }

  .section-top {
    padding-top: var(--section-gap-tablet);
  }

  .section-bottom {
    padding-bottom: var(--section-gap-tablet);
  }

  .section-gap {
    margin-top: var(--section-gap-tablet);
  }

  .section-gap-bottom {
    margin-bottom: var(--section-gap-tablet);
  }
  .animation-container .center-text {
    font-size: 2.375rem;
  }

  .bottom-group-text {
    font-size: 1.275rem;
  }

  .bottom-mainline {
    font-size: 1.25rem;
  }
}

/* lg = 992px+ */
@media (min-width: 992px) {
  .section {
    padding-top: var(--section-gap-desktop);
    padding-bottom: var(--section-gap-desktop);
  }

  .section-top {
    padding-top: var(--section-gap-desktop);
  }

  .section-bottom {
    padding-bottom: var(--section-gap-desktop);
  }

  .section-gap {
    margin-top: var(--section-gap-desktop);
  }

  .section-gap-bottom {
    margin-bottom: var(--section-gap-desktop);
  }
  .hero-home {
    height: 100svh;
  }
}

@media (max-width: 470px) {
  .animation-container {
    width: calc(100vw - 6.25rem);
    height: calc(100vw - 6.25rem);
  }
  .formula-line {
    display: inline-block;
    font-size: clamp(0.75rem, 3vw, 1.1875rem);
  }
}

/*  RESPONSIVE: TABLET */
@media (max-width: 1439.98px) {
  body {
    font-size: var(--body-size-mobile);
    line-height: var(--body-line-mobile);
  }

  p,
  .body-compact {
    font-size: var(--body-compact-size);
    line-height: var(--body-compact-line);
  }

  li {
    font-size: var(--body-size-mobile);
    line-height: var(--body-line-mobile);
  }

  .container,
  .container-fluid,
  .site-container,
  .layout-container,
  .brand-container {
    padding-left: var(--container-padding-tablet);
    padding-right: var(--container-padding-tablet);
  }

  h1,
  .heading-1 {
    font-size: var(--h1-size-tablet);
    line-height: var(--h1-line-tablet);
  }

  h2,
  .heading-2 {
    font-size: var(--h2-size-tablet);
    line-height: var(--h2-line-tablet);
  }

  h3,
  .heading-3 {
    font-size: var(--h3-size-tablet);
    line-height: var(--h3-line-tablet);
  }

  h4,
  .heading-4 {
    font-size: var(--h4-size-tablet);
    line-height: var(--h4-line-tablet);
  }

  h5,
  .heading-5 {
    font-size: var(--h5-size-tablet);
    line-height: var(--h5-line-tablet);
  }

  h6,
  .heading-6 {
    font-size: var(--h6-size-tablet);
    line-height: var(--h6-line-tablet);
  }

  .site-footer__row {
    gap: 1rem;
    row-gap: 6.0625rem;
  }
}

/* =========================
   RESPONSIVE HEADER + HERO
========================= */
@media (max-width: 1024px) {
  .hero-home__desc p:first-child {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .image-wrap.top-to-bot svg path,
  .svg-stage path {
    stroke: #b907f4;
    stroke-width: 2;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3125rem;
    margin-left: auto;
    z-index: 110;
    width: 36px;
    height: 2.25rem;
    padding: 0;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    cursor: pointer;
  }

  .menu-toggle span {
    position: static !important;
    display: block !important;
    width: 24px !important;
    height: 0.125rem !important;
    background: var(--color-white) !important;
    border-radius: 0.125rem !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease !important;
  }

  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(0.4375rem) rotate(45deg) !important;
  }

  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0 !important;
  }

  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-0.4375rem) rotate(-45deg) !important;
  }

  .site-header__inner {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .site-header {
    width: calc(100% - (var(--container-padding-mobile) * 2));
    left: 50%;
    transform: translateX(-50%);
    border: 0.0625rem solid var(--color-accent-purple);
    border-radius: 0.5rem;
    top: 1.25rem;
    backdrop-filter: blur(0.625rem);
    box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.2);
  }

  /* Hide desktop nav on mobile */
  .site-navigation,
  .site-header__actions {
    display: none;
  }

  .site-footer__row {
    gap: 1rem;
    row-gap: 2.5rem;
  }

  .site-footer {
    padding: 3.5625rem 0;
  }

  .site-footer__logo img,
  .site-footer__logo svg {
    width: 100px;
  }

  .site-footer {
    background-image: url("/wp-content/uploads/2026/03/footer-mobile.webp");
  }

  .hero-home__title {
    font-size: var(--h1-size-mobile);
    line-height: var(--h1-line-mobile);
  }

  .hero-home .container {
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
  }

  .hero-home__wrap {
    padding-top: 6.9375rem;
    padding-bottom: 3.125rem;
  }

  .hero-home__lead {
    margin: 0 0 1rem;
  }

  .hero-home .site-header__actions {
    display: flex;
    margin-bottom: 2.5rem;
  }

  .hero-home a.btn.btn-primary {
    margin-bottom: 1rem;
  }

  .hero-home__wrap {
    grid-template-columns: 1fr;
  }

  .hero-home__subtext {
    max-width: 100%;
  }

  .hero-home__desc p:first-child {
    width: 100%;
  }

  .hero-home__desc p:nth-child(2) {
    width: 100%;
  }
}

/* RESPONSIVE: MOBILE */
@media (max-width: 767.98px) {
  body {
    font-size: var(--body-size-mobile);
    line-height: var(--body-line-mobile);
  }

  p,
  .body-compact {
    font-size: var(--body-compact-size);
    line-height: var(--body-compact-line);
  }

  li {
    font-size: var(--body-size-mobile);
    line-height: var(--body-line-mobile);
  }

  small,
  .label-text,
  .form-text,
  .tag-text {
    font-size: var(--label-size-mobile);
    line-height: var(--label-line-mobile);
  }

  .container,
  .container-fluid,
  .site-container,
  .layout-container,
  .brand-container {
    padding-left: var(--container-padding-tablet);
    padding-right: var(--container-padding-tablet);
  }

  .container,
  .container-fluid,
  .site-container,
  .layout-container,
  .brand-container {
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
  }

  h1,
  .heading-1 {
    font-size: var(--h1-size-mobile);
    line-height: var(--h1-line-mobile);
  }

  h2,
  .heading-2 {
    font-size: var(--h2-size-mobile);
    line-height: var(--h2-line-mobile);
  }

  h3,
  .heading-3 {
    font-size: var(--h3-size-mobile);
    line-height: var(--h3-line-mobile);
  }

  h4,
  .heading-4 {
    font-size: var(--h4-size-mobile);
    line-height: var(--h4-line-mobile);
  }

  h5,
  .heading-5 {
    font-size: var(--h5-size-mobile);
    line-height: var(--h5-line-mobile);
  }

  h6,
  .heading-6 {
    font-size: var(--h6-size-mobile);
    line-height: var(--h6-line-mobile);
  }

  .custom-logo {
    max-height: 1.875rem;
  }

  .site-footer__brand {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-footer__logo img,
  .site-footer__logo svg {
    width: 160px;
  }

  .hero-home .site-header__actions {
    display: block;
  }

  .site-header__actions a.btn.btn-primary,
  .site-header__actions a.btn.btn-outline {
    width: 100%;
  }

  .hero-home__wrap {
    padding-top: 6.5625rem;
  }

  .hero-home__desc p:first-child {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
    width: 100%;
  }

  .hero-home__desc p:nth-child(2) {
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
  }

  .icon-cards-section .icon-card {
    display: flex;
    justify-content: start;
    align-items: center;
    min-height: auto;
    width: 100%;
    gap: 1rem;
    padding: 2.5rem 1.25rem 2.25rem 1.25rem;
  }
  .icon-cards-section .icon-card .icon-wrap {
    margin-bottom: 0px;
  }
	.scube-tag-card .wrapper{
		background-position: left;
}

}

/* custom flex css start */
/* Row class */
.row > * {
  padding-right: 0;
  padding-left: 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-size, 1rem);
  margin-right: 0;
  margin-left: 0;
}

/* Column base class */
.col {
  flex: 1 0 0%;
}

/* Column widths that auto-adjust to gap size */
.col-1 {
  flex: 0 0 calc(8.33333333% - (var(--gap-size, 1rem) * 11 / 12));
}

.col-2 {
  flex: 0 0 calc(16.66666667% - (var(--gap-size, 1rem) * 10 / 12));
}

.col-3 {
  flex: 0 0 calc(25% - (var(--gap-size, 1rem) * 9 / 12));
}

.col-4 {
  flex: 0 0 calc(33.33333333% - (var(--gap-size, 1rem) * 8 / 12));
}

.col-5 {
  flex: 0 0 calc(41.66666667% - (var(--gap-size, 1rem) * 7 / 12));
}

.col-6 {
  flex: 0 0 calc(50% - (var(--gap-size, 1rem) * 6 / 12));
}

.col-7 {
  flex: 0 0 calc(58.33333333% - (var(--gap-size, 1rem) * 5 / 12));
}

.col-8 {
  flex: 0 0 calc(66.66666667% - (var(--gap-size, 1rem) * 4 / 12));
}

.col-9 {
  flex: 0 0 calc(75% - (var(--gap-size, 1rem) * 3 / 12));
}

.col-10 {
  flex: 0 0 calc(83.33333333% - (var(--gap-size, 1rem) * 2 / 12));
}

.col-11 {
  flex: 0 0 calc(91.66666667% - (var(--gap-size, 1rem) * 1 / 12));
}

.col-12 {
  flex: 0 0 100%;
}

/* ============ RESPONSIVE BREAKPOINTS ============ */

/* Small (sm): 0px to 767px */
@media (max-width: 768px) {
  /* Responsive columns for sm */
  .col-sm-1 {
    flex: 0 0 calc(8.33333333% - (var(--gap-size, 1rem) * 11 / 12));
  }

  .col-sm-2 {
    flex: 0 0 calc(16.66666667% - (var(--gap-size, 1rem) * 10 / 12));
  }

  .col-sm-3 {
    flex: 0 0 calc(25% - (var(--gap-size, 1rem) * 9 / 12));
  }

  .col-sm-4 {
    flex: 0 0 calc(33.33333333% - (var(--gap-size, 1rem) * 8 / 12));
  }

  .col-sm-5 {
    flex: 0 0 calc(41.66666667% - (var(--gap-size, 1rem) * 7 / 12));
  }

  .col-sm-6 {
    flex: 0 0 calc(50% - (var(--gap-size, 1rem) * 6 / 12));
  }

  .col-sm-7 {
    flex: 0 0 calc(58.33333333% - (var(--gap-size, 1rem) * 5 / 12));
  }

  .col-sm-8 {
    flex: 0 0 calc(66.66666667% - (var(--gap-size, 1rem) * 4 / 12));
  }

  .col-sm-9 {
    flex: 0 0 calc(75% - (var(--gap-size, 1rem) * 3 / 12));
  }

  .col-sm-10 {
    flex: 0 0 calc(83.33333333% - (var(--gap-size, 1rem) * 2 / 12));
  }

  .col-sm-11 {
    flex: 0 0 calc(91.66666667% - (var(--gap-size, 1rem) * 1 / 12));
  }

  .col-sm-12 {
    flex: 0 0 100%;
  }

  /* Responsive gaps for sm */
  .gap-sm-0 {
    --gap-size: 0;
    gap: 0;
  }

  .gap-sm-1 {
    --gap-size: 0.25rem;
    gap: 0.25rem;
  }

  .gap-sm-2 {
    --gap-size: 0.5rem;
    gap: 0.5rem;
  }

  .gap-sm-3 {
    --gap-size: 1rem;
    gap: 1rem;
  }

  .gap-sm-4 {
    --gap-size: 1.5rem;
    gap: 1.5rem;
  }

  .gap-sm-5 {
    --gap-size: 2rem;
    gap: 2rem;
  }

  .gap-sm-6 {
    --gap-size: 3rem;
    gap: 3rem;
  }

  /* Stack columns on mobile by default */
  /* .row {
    flex-direction: column;
  } */

  /* Full width on mobile for vertical layout */
  /* .row:not(.flex-sm-row):not(.flex-sm-row-reverse) > [class*="col-"] {
    flex: 0 0 100% !important;
  } */
}

/* Medium (md): 768px to 1023px */
@media (min-width: 768px) {
  /* Responsive columns for md */
  .col-md-1 {
    flex: 0 0 calc(8.33333333% - (var(--gap-size, 1rem) * 11 / 12));
  }

  .col-md-2 {
    flex: 0 0 calc(16.66666667% - (var(--gap-size, 1rem) * 10 / 12));
  }

  .col-md-3 {
    flex: 0 0 calc(25% - (var(--gap-size, 1rem) * 9 / 12));
  }

  .col-md-4 {
    flex: 0 0 calc(33.33333333% - (var(--gap-size, 1rem) * 8 / 12));
  }

  .col-md-5 {
    flex: 0 0 calc(41.66666667% - (var(--gap-size, 1rem) * 7 / 12));
  }

  .col-md-6 {
    flex: 0 0 calc(50% - (var(--gap-size, 1rem) * 6 / 12));
  }

  .col-md-7 {
    flex: 0 0 calc(58.33333333% - (var(--gap-size, 1rem) * 5 / 12));
  }

  .col-md-8 {
    flex: 0 0 calc(66.66666667% - (var(--gap-size, 1rem) * 4 / 12));
  }

  .col-md-9 {
    flex: 0 0 calc(75% - (var(--gap-size, 1rem) * 3 / 12));
  }

  .col-md-10 {
    flex: 0 0 calc(83.33333333% - (var(--gap-size, 1rem) * 2 / 12));
  }

  .col-md-11 {
    flex: 0 0 calc(91.66666667% - (var(--gap-size, 1rem) * 1 / 12));
  }

  .col-md-12 {
    flex: 0 0 100%;
  }

  /* Responsive gaps for md */
  .gap-md-0 {
    --gap-size: 0;
    gap: 0;
  }

  .gap-md-1 {
    --gap-size: 0.25rem;
    gap: 0.25rem;
  }

  .gap-md-2 {
    --gap-size: 0.5rem;
    gap: 0.5rem;
  }

  .gap-md-3 {
    --gap-size: 1rem;
    gap: 1rem;
  }

  .gap-md-4 {
    --gap-size: 1.5rem;
    gap: 1.5rem;
  }

  .gap-md-5 {
    --gap-size: 2rem;
    gap: 2rem;
  }

  .gap-md-6 {
    --gap-size: 3rem;
    gap: 3rem;
  }

  /* Restore row direction on tablet and above */

  .row {
    flex-direction: row;
  }
}

/* Large (lg): 1024px to 1399px */
@media (min-width: 1024px) {
  /* Responsive columns for lg */
  .col-lg-1 {
    flex: 0 0 calc(8.33333333% - (var(--gap-size, 1rem) * 11 / 12));
  }

  .col-lg-2 {
    flex: 0 0 calc(16.66666667% - (var(--gap-size, 1rem) * 10 / 12));
  }

  .col-lg-3 {
    flex: 0 0 calc(25% - (var(--gap-size, 1rem) * 9 / 12));
  }

  .col-lg-4 {
    flex: 0 0 calc(33.33333333% - (var(--gap-size, 1rem) * 8 / 12));
  }

  .col-lg-5 {
    flex: 0 0 calc(41.66666667% - (var(--gap-size, 1rem) * 7 / 12));
  }

  .col-lg-6 {
    flex: 0 0 calc(50% - (var(--gap-size, 1rem) * 6 / 12));
  }

  .col-lg-7 {
    flex: 0 0 calc(58.33333333% - (var(--gap-size, 1rem) * 5 / 12));
  }

  .col-lg-8 {
    flex: 0 0 calc(66.66666667% - (var(--gap-size, 1rem) * 4 / 12));
  }

  .col-lg-9 {
    flex: 0 0 calc(75% - (var(--gap-size, 1rem) * 3 / 12));
  }

  .col-lg-10 {
    flex: 0 0 calc(83.33333333% - (var(--gap-size, 1rem) * 2 / 12));
  }

  .col-lg-11 {
    flex: 0 0 calc(91.66666667% - (var(--gap-size, 1rem) * 1 / 12));
  }

  .col-lg-12 {
    flex: 0 0 100%;
  }

  /* Responsive gaps for lg */
  .gap-lg-0 {
    --gap-size: 0;
    gap: 0;
  }

  .gap-lg-1 {
    --gap-size: 0.25rem;
    gap: 0.25rem;
  }

  .gap-lg-2 {
    --gap-size: 0.5rem;
    gap: 0.5rem;
  }

  .gap-lg-3 {
    --gap-size: 1rem;
    gap: 1rem;
  }

  .gap-lg-4 {
    --gap-size: 1.5rem;
    gap: 1.5rem;
  }

  .gap-lg-5 {
    --gap-size: 2rem;
    gap: 2rem;
  }

  .gap-lg-6 {
    --gap-size: 3rem;
    gap: 3rem;
  }
}

/* Extra Large (xl): 1400px and above */
@media (min-width: 1400px) {
  /* Responsive columns for xl */
  .col-xl-1 {
    flex: 0 0 calc(8.33333333% - (var(--gap-size, 1rem) * 11 / 12));
  }

  .col-xl-2 {
    flex: 0 0 calc(16.66666667% - (var(--gap-size, 1rem) * 10 / 12));
  }

  .col-xl-3 {
    flex: 0 0 calc(25% - (var(--gap-size, 1rem) * 9 / 12));
  }

  .col-xl-4 {
    flex: 0 0 calc(33.33333333% - (var(--gap-size, 1rem) * 8 / 12));
  }

  .col-xl-5 {
    flex: 0 0 calc(41.66666667% - (var(--gap-size, 1rem) * 7 / 12));
  }

  .col-xl-6 {
    flex: 0 0 calc(50% - (var(--gap-size, 1rem) * 6 / 12));
  }

  .col-xl-7 {
    flex: 0 0 calc(58.33333333% - (var(--gap-size, 1rem) * 5 / 12));
  }

  .col-xl-8 {
    flex: 0 0 calc(66.66666667% - (var(--gap-size, 1rem) * 4 / 12));
  }

  .col-xl-9 {
    flex: 0 0 calc(75% - (var(--gap-size, 1rem) * 3 / 12));
  }

  .col-xl-10 {
    flex: 0 0 calc(83.33333333% - (var(--gap-size, 1rem) * 2 / 12));
  }

  .col-xl-11 {
    flex: 0 0 calc(91.66666667% - (var(--gap-size, 1rem) * 1 / 12));
  }

  .col-xl-12 {
    flex: 0 0 100%;
  }

  /* Responsive gaps for xl */
  .gap-xl-0 {
    --gap-size: 0;
    gap: 0;
  }

  .gap-xl-1 {
    --gap-size: 0.25rem;
    gap: 0.25rem;
  }

  .gap-xl-2 {
    --gap-size: 0.5rem;
    gap: 0.5rem;
  }

  .gap-xl-3 {
    --gap-size: 1rem;
    gap: 1rem;
  }

  .gap-xl-4 {
    --gap-size: 1.5rem;
    gap: 1.5rem;
  }

  .gap-xl-5 {
    --gap-size: 2rem;
    gap: 2rem;
  }

  .gap-xl-6 {
    --gap-size: 3rem;
    gap: 3rem;
  }
}

/* ============ FLEX UTILITY CLASSES ============ */

/* Flex Direction */
.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

/* Flex Wrap */
.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

/* Alignment */
.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-stretch {
  align-items: stretch;
}

/* custom flex css end */

/*Split lines*/

.split {
  will-change: transform;
}

.split * {
  will-change: transform;
}
/* ── CSS Glow Layer System ── */
.bg-glow-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(32% 34% at 6% 6%, rgba(185, 7, 244, 0.28), transparent 62%),
    radial-gradient(
      44% 24% at 50% 0%,
      rgba(0, 220, 210, 0.26),
      transparent 64%
    ),
    radial-gradient(
      36% 36% at 0% 46%,
      rgba(0, 200, 190, 0.16),
      transparent 68%
    ),
    radial-gradient(
      36% 36% at 100% 48%,
      rgba(0, 200, 190, 0.16),
      transparent 68%
    ),
    radial-gradient(
      22% 22% at 50% 72%,
      rgba(120, 0, 200, 0.12),
      transparent 74%
    );
}
.glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  will-change: transform, opacity, filter;
  transform-origin: center center;
  mix-blend-mode: screen;
}

.glow-top {
  width: 62vw;
  height: 24vw;
  left: 50%;
  top: -10vw;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(0, 230, 220, 0.62) 0%,
    rgba(0, 210, 200, 0.28) 26%,
    rgba(0, 195, 185, 0.1) 46%,
    rgba(0, 180, 170, 0.025) 64%,
    transparent 78%
  );
  filter: blur(92px);
  opacity: 0.85;
  animation:
    pulseTop 16s ease-in-out infinite alternate,
    glowExpand 18s cubic-bezier(0.4, 0, 0.8, 0.2) 0s infinite alternate;
}
.glow-left {
  width: 42vw;
  height: 42vw;
  left: -12vw;
  bottom: -6vw;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 215, 205, 0.6) 0%,
    rgba(0, 200, 190, 0.26) 28%,
    rgba(0, 185, 175, 0.09) 48%,
    rgba(0, 170, 160, 0.022) 64%,
    transparent 78%
  );
  filter: blur(96px);
  opacity: 0.78;
  animation:
    pulseLeft 18s ease-in-out infinite alternate,
    glowExpand 22s cubic-bezier(0.4, 0, 0.8, 0.2) -6s infinite alternate;
}
.glow-right {
  width: 42vw;
  height: 42vw;
  right: -12vw;
  bottom: -5vw;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 215, 205, 0.56) 0%,
    rgba(0, 200, 190, 0.24) 28%,
    rgba(0, 185, 175, 0.08) 48%,
    rgba(0, 170, 160, 0.02) 64%,
    transparent 78%
  );
  filter: blur(96px);
  opacity: 0.76;
  animation:
    pulseRight 19s ease-in-out infinite alternate,
    glowExpand 20s cubic-bezier(0.4, 0, 0.8, 0.2) -11s infinite alternate;
}
.glow-violet-soft {
  width: 48vw;
  height: 48vw;
  left: -21vw;
  top: -18vw;
  background: radial-gradient(
    ellipse at center,
    rgba(185, 7, 244, 0.38) 0%,
    rgba(155, 0, 215, 0.18) 30%,
    rgba(125, 0, 186, 0.07) 50%,
    rgba(95, 0, 158, 0.018) 66%,
    transparent 80%
  );
  filter: blur(138px);
  opacity: 0.88;
  animation:
    pulseVioletSoft 22s ease-in-out infinite alternate,
    glowExpand 28s cubic-bezier(0.4, 0, 0.8, 0.2) -15s infinite alternate;
}
.glow-violet {
  width: 35vw;
  height: 35vw;
  left: -8vw;
  top: -8vw;
  background: radial-gradient(
    ellipse at center,
    rgba(185, 7, 244, 0.65) 0%,
    rgba(152, 0, 206, 0.28) 25%,
    rgba(120, 0, 170, 0.1) 45%,
    rgba(88, 0, 138, 0.022) 61%,
    transparent 76%
  );
  filter: blur(90px);
  opacity: 0.92;
  animation:
    pulseViolet 17s ease-in-out infinite alternate,
    glowExpand 16s cubic-bezier(0.4, 0, 0.8, 0.2) -4s infinite alternate;
}
.glow-centre {
  width: 30vw;
  height: 30vw;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(150, 0, 230, 0.32) 0%,
    rgba(115, 0, 192, 0.14) 28%,
    rgba(82, 0, 156, 0.05) 46%,
    rgba(50, 0, 124, 0.012) 62%,
    transparent 76%
  );
  filter: blur(108px);
  opacity: 0.7;
  animation:
    pulseCentre 20s ease-in-out infinite alternate,
    glowExpand 24s cubic-bezier(0.4, 0, 0.8, 0.2) -19s infinite alternate;
}

.noise-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.055;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.18) 0.6px, transparent 0.7px),
    radial-gradient(rgba(255, 255, 255, 0.1) 0.5px, transparent 0.6px);
  background-size:
    18px 18px,
    24px 24px;
  background-position:
    0 0,
    9px 11px;
  mix-blend-mode: soft-light;
  animation: grainShift 10s steps(8) infinite;
}
.bg-mask {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(3, 6, 18, 0.06), rgba(3, 6, 18, 0.16)),
    radial-gradient(
      circle at center,
      transparent 0%,
      rgba(5, 8, 25, 0.04) 70%,
      rgba(3, 6, 18, 0.2) 100%
    );
}

@keyframes pulseTop {
  from {
    opacity: calc(var(--teal-i, 1) * 0.72);
    filter: blur(calc(var(--blur-scale, 1) * var(--blur-top, 1) * 96px))
      saturate(108%);
  }
  to {
    opacity: calc(var(--teal-i, 1) * 0.9);
    filter: blur(calc(var(--blur-scale, 1) * var(--blur-top, 1) * 78px))
      saturate(132%);
  }
}
@keyframes pulseLeft {
  from {
    opacity: calc(var(--teal-i, 1) * 0.7);
    filter: blur(calc(var(--blur-scale, 1) * var(--blur-left, 1) * 100px))
      saturate(108%);
  }
  to {
    opacity: calc(var(--teal-i, 1) * 0.88);
    filter: blur(calc(var(--blur-scale, 1) * var(--blur-left, 1) * 82px))
      saturate(134%);
  }
}
@keyframes pulseRight {
  from {
    opacity: calc(var(--teal-i, 1) * 0.68);
    filter: blur(calc(var(--blur-scale, 1) * var(--blur-right, 1) * 100px))
      saturate(106%);
  }
  to {
    opacity: calc(var(--teal-i, 1) * 0.86);
    filter: blur(calc(var(--blur-scale, 1) * var(--blur-right, 1) * 82px))
      saturate(130%);
  }
}
@keyframes pulseVioletSoft {
  from {
    opacity: calc(var(--purple-i, 1) * 0.8);
    filter: blur(calc(var(--blur-scale, 1) * var(--blur-vsoft, 1) * 142px))
      saturate(110%);
  }
  to {
    opacity: calc(var(--purple-i, 1) * 0.95);
    filter: blur(calc(var(--blur-scale, 1) * var(--blur-vsoft, 1) * 122px))
      saturate(136%);
  }
}
@keyframes pulseViolet {
  from {
    opacity: calc(var(--purple-i, 1) * 0.84);
    filter: blur(calc(var(--blur-scale, 1) * var(--blur-violet, 1) * 94px))
      saturate(112%);
  }
  to {
    opacity: calc(var(--purple-i, 1) * 1);
    filter: blur(calc(var(--blur-scale, 1) * var(--blur-violet, 1) * 74px))
      saturate(148%);
  }
}
@keyframes pulseCentre {
  from {
    transform: translateX(-50%) scale(1);
    opacity: calc(var(--purple-i, 1) * 0.62);
    filter: blur(calc(var(--blur-scale, 1) * var(--blur-centre, 1) * 112px))
      saturate(100%);
  }
  to {
    transform: translateX(-50%) scale(1.08);
    opacity: calc(var(--purple-i, 1) * 0.8);
    filter: blur(calc(var(--blur-scale, 1) * var(--blur-centre, 1) * 96px))
      saturate(126%);
  }
}
@keyframes glowExpand {
  from {
    scale: 1;
  }
  to {
    scale: var(--expand-to, 1.22);
  }
}
@keyframes grainShift {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-2px, 1px);
  }
  50% {
    transform: translate(1px, -1px);
  }
  75% {
    transform: translate(-1px, 2px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* ── dev controls panel ── */
.hero__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.ctrl-panel {
  background: rgba(4, 8, 24, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: #fff;
  font-family: var(--fb);
  font-size: 13px;
  width: 100%;
  max-width: 296px;
  overflow: hidden;
  z-index: 20;
  cursor: auto;
}
.ctrl-panel input[type="range"] {
  cursor: ew-resize;
}
.ctrl-panel button {
  cursor: pointer;
}
.ctrl-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ctrl-head-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}
.ctrl-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 99px;
  background: rgba(0, 255, 255, 0.1);
  color: var(--c-cyan);
  border: 1px solid rgba(0, 255, 255, 0.22);
}
.ctrl-sec {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0 10px;
}
.ctrl-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}
.ctrl-row label {
  flex: 0 0 92px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11.5px;
}
.ctrl-row.tight {
  margin-bottom: 6px;
}
.ctrl-row input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  outline: none;
}
.ctrl-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--c-cyan);
  cursor: ew-resize;
  box-shadow:
    0 0 0 2px rgba(0, 255, 255, 0.15),
    0 0 8px rgba(0, 255, 255, 0.4);
  transition: transform 0.12s;
}
.ctrl-row input[type="range"]:active::-webkit-slider-thumb {
  transform: scale(1.3);
}
.ctrl-row input.pur::-webkit-slider-thumb {
  background: var(--c-purple);
  box-shadow:
    0 0 0 2px rgba(185, 7, 244, 0.15),
    0 0 8px rgba(185, 7, 244, 0.4);
}
.ctrl-val {
  flex: 0 0 38px;
  text-align: right;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.ctrl-div {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 12px 0;
}
.ctrl-body {
  padding: 16px 18px 18px;
  max-height: calc(100vh - 190px);
  overflow-y: auto;
}
.ctrl-body::-webkit-scrollbar {
  width: 3px;
}
.ctrl-body::-webkit-scrollbar-track {
  background: transparent;
}
.ctrl-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 99px;
}
.ctrl-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 13px;
}
.ctrl-help {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1.4;
  margin: -2px 0 10px;
}
.ctrl-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  margin-bottom: 12px;
}
.ctrl-pillrow {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0 0 10px;
}
.ctrl-pill {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.04);
}
.ctrl-pill.teal {
  border-color: rgba(0, 255, 255, 0.28);
  color: rgba(0, 255, 255, 0.85);
}
.ctrl-pill.pur {
  border-color: rgba(185, 7, 244, 0.28);
  color: rgba(185, 7, 244, 0.85);
}
.ctrl-pause {
  width: 100%;
  padding: 6px 0;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  background: rgba(0, 255, 255, 0.07);
  color: rgba(0, 255, 255, 0.75);
  font-size: 11.5px;
  font-family: var(--fb);
  letter-spacing: 0.02em;
  transition: all 0.18s;
  margin-bottom: 9px;
}
.ctrl-pause:hover {
  background: rgba(0, 255, 255, 0.13);
  color: rgba(0, 255, 255, 0.95);
}
.ctrl-pause.paused {
  border-color: rgba(185, 7, 244, 0.3);
  background: rgba(185, 7, 244, 0.09);
  color: rgba(185, 7, 244, 0.8);
}
.ctrl-select {
  width: 100%;
  height: 30px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  outline: none;
  margin-bottom: 8px;
}
.ctrl-code {
  width: 100%;
  min-height: 96px;
  resize: vertical;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.8);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  line-height: 1.35;
}
.ctrl-toggle {
  padding: 4px 9px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.36);
  font-size: 10.5px;
  font-family: var(--fb);
  transition: all 0.15s;
}
.ctrl-toggle.on {
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.28);
  color: rgba(0, 255, 255, 0.88);
}
.ctrl-toggle.on.pur {
  background: rgba(185, 7, 244, 0.1);
  border-color: rgba(185, 7, 244, 0.28);
  color: rgba(185, 7, 244, 0.88);
}
.ctrl-reset {
  width: 100%;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.45);
  font-size: 11.5px;
  font-family: var(--fb);
  transition: all 0.18s;
}
.ctrl-reset:hover {
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 991px) {
  .ctrl-panel {
    display: none;
  }
}

/* what-we-deliver section start */
.what-we-deliver {
  padding: 3.625rem 0;
}

.what-we-deliver .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.what-we-deliver .heading h4 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.what-we-deliver .heading h4 span {
  color: var(--color-text);
  font-weight: 600;
  line-height: 3.5rem;
}

.what-we-deliver .heading p {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.what-we-deliver .card {
  padding: 0;
  padding-bottom: 3.3125rem;
  border-radius: 0.5rem;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  background-position: center;
}

.what-we-deliver .card .content {
  padding: 4.1875rem 2.5rem 0 3rem;
}

.what-we-deliver .card:nth-child(3) .content {
  padding: 4.875rem 2.5rem 0 3rem;
}

.what-we-deliver .card h4 {
  color: #b907f4;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.what-we-deliver .card p {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin-bottom: 2.5625rem;
  width: 80%;
}

.what-we-deliver .tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.what-we-deliver .row {
  gap: 3.8125rem;
}

.what-we-deliver .card:first-child .image-wrap {
  margin-left: -1.625rem;
  margin-top: -0.8125rem;
}

.what-we-deliver .card:nth-child(2) .image-wrap {
  margin-left: -0.8125rem;
}

.what-we-deliver .card:nth-child(3) {
  position: relative;
  min-height: 36.5625rem;
}

.what-we-deliver .card:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 4%;
  left: 3%;
  border-radius: 16.4375rem;
  opacity: 0.3;
  background: #0ff;
  filter: blur(5.390625rem);
  width: 16.8125rem;
  height: 12.5rem;
}

.what-we-deliver .card:nth-child(3) p {
  width: 40%;
}

.what-we-deliver .card:nth-child(3) .image-wrap svg {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2.3125rem 0 4.4375rem 0;
  width: 58.9375rem;
}

.what-we-deliver .tags-wrap .tag:not(:has(svg)) {
  padding: 0.5rem 0.875rem;
}

.what-we-deliver .card:nth-child(2) .tags-wrap .tag {
  padding: 0.625rem 1.1875rem;
}

.what-we-deliver .tags-wrap .tag {
  min-width: 5.5625rem;
  height: 2.375rem;
  border-radius: 4rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(0.15625rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  color: #fafafa;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
  padding: 0.625rem 0.875rem;
}

@media (min-width: 1024px) and (max-width: 1040px) {
  .what-we-deliver .card:first-child .image-wrap svg {
    width: 77%;
  }
  .what-we-deliver .card:first-child .image-wrap {
    margin-left: -52px;
    margin-top: -14%;
  }
}

/* 1024px */
@media (min-width: 64rem) {
  .what-we-deliver .col-lg-6 {
    flex: 0 0 calc(50% - (3.8125rem * 6 / 12));
  }
}

/* 483px */
@media (max-width: 64rem) {
  .what-we-deliver .card:nth-child(3) {
    min-height: 30.1875rem;
  }

  .what-we-deliver .card:nth-child(3) .image-wrap svg {
    padding: 7.4rem 0 4rem 0;
    width: 35.4rem;
  }
}
/* 768px */
@media (max-width: 48rem) {
  .what-we-deliver .card:nth-child(3) .image-wrap svg {
    top: 34.5%;
    padding: 6rem 0 4.4375rem 0;
    width: 21rem;
  }

  .what-we-deliver .card:nth-child(3) {
    min-height: 36.5625rem;
  }
  .what-we-deliver .card:nth-child(3) .image-wrap svg {
  }
}
@media (max-width: 992px) and (min-width: 768px) {
  .what-we-deliver .card:nth-child(3) .image-wrap svg {
    padding: 7.4rem 0 4rem 0;
    width: 35.4rem;
    width: 35.4rem;
    margin-left: 174px;
    position: relative;
    padding: 0;
  }
}
/* 767.98px */
@media (max-width: 47.99875rem) {
  .what-we-deliver .row {
    gap: 1rem;
  }

  .what-we-deliver {
    padding: 1.25rem 0;
  }

  .what-we-deliver .heading {
    align-items: start;
    margin-bottom: 1.5rem;
  }

  .what-we-deliver .card p {
    font-size: 1.125rem;
    line-height: normal;
  }

  .what-we-deliver .card:nth-child(3) .image-wrap svg {
    position: relative;
    padding: 0;
    width: 21.8125rem;
    float: right;
  }

  .what-we-deliver .heading h4 {
    line-height: normal;
    margin-bottom: 0;
  }

  .what-we-deliver .heading p {
    font-size: 1rem;
    line-height: normal;
    font-weight: 400;
  }
  .what-we-deliver .card:nth-child(3) p {
    width: 100%;
  }

  .what-we-deliver .card:nth-child(3) .image-wrap svg {
    top: 62.5%;
    width: 21rem;
  }
}
/* 600px */
@media (max-width: 37.5rem) {
  .what-we-deliver .card:nth-child(3) {
    min-height: auto;
  }

  .what-we-deliver .card .content {
    padding: 2.4375rem 3.9375rem 0 1.625rem;
  }

  .what-we-deliver .card p {
    width: auto;
  }

  .what-we-deliver .wrapper .card:first-child .image-wrap svg {
    width: 20.2514rem;
    height: 13.375rem;
    margin-top: -1.125rem;
    margin-left: 7.0625rem;
  }

  .what-we-deliver .wrapper .card:nth-child(2) .image-wrap svg {
    width: 19.9078rem;
    float: right;
    margin-top: -0.8125rem;
    transform: scaleX(-1);
  }
}

/* 571px */
@media (max-width: 571px) {
  .what-we-deliver .wrapper .card:nth-child(2) .image-wrap svg {
    width: 14.9078rem;
	margin-right: 0px;
    float: right;
  }
}

/*507px*/

@media (max-width: 31.6875rem) {
  .what-we-deliver .wrapper .card:first-child .image-wrap svg {
    width: 20.2514rem;
    height: 13.375rem;
    margin-top: -4.125rem;
    margin-left: 0.149rem;
  }
}
/*420*/
@media (max-width: 420px) {
    .what-we-deliver .wrapper .card:nth-child(2) .image-wrap svg {
                margin-top: -11px;
    }
}

@media (max-width: 481px) {
    .what-we-deliver .wrapper .card:nth-child(2) .image-wrap svg {
                margin-top: -49px;
    }
}
/* 440px */
@media (max-width: 27.5rem) {
  .what-we-deliver .card:nth-child(3) .image-wrap svg {
    width: 16.1875rem;
  }
}
/* 395px */
@media (max-width: 24.6875rem) {
  .what-we-deliver .wrapper .card:nth-child(2) .image-wrap svg {
    width: 13.1578rem;
    height: 11.4998rem;
  }

  .what-we-deliver .wrapper .card:first-child .image-wrap svg {
    width: 20.2514rem;
    height: 13.375rem;
    margin-top: -1.125rem;
    margin-left: -1.7rem;
  }

  .what-we-deliver .card:nth-child(3) .image-wrap svg {
    width: 13.96875rem;
    height: 10.625rem;
  }
}
@media (max-width: 24.75rem) {
  .what-we-deliver .wrapper .card:first-child .image-wrap svg {
    margin-top: -1.125rem;
    margin-left: -1.7rem;
  }
}

/* what-we-deliver section end */

/*our story start*/


.hero__banner.our_history_banner {
  padding:7rem 0 3.129rem;
  background-size: cover;
  background-position: center;
}

.hero__banner.our_history_banner .hero__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.75rem; /* 60px between left & right */
}

.hero__banner.our_history_banner .hero__content {
  max-width: 28.4375rem; /* 455px */
  width: 100%;
}

.hero__banner.our_history_banner .hero__title {
  color: #FFF;
	font-family: Syne;
	font-size: 90px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.hero__banner.our_history_banner .hero__description {
  color: #FFF;
font-family: Inter;
font-size: 1.25rem;
font-style: normal;
font-weight: 400;
line-height: normal;
	margin-bottom: 2.471rem;
}

.hero__banner.our_history_banner a.btn.btn-primary {
  padding: 0px 1.3125rem;
    height: 2.625rem;
    width: auto;
}

.hero__banner.our_history_banner .hero__art {
  display: flex;
  justify-content: flex-end;
}

.hero__banner.our_history_banner .hero__art-wrap {
  display: flex;
  gap: 1.125rem; /* 18px */
}

.hero__banner.our_history_banner .hero__card {
  width: 21.5625rem;  /* 345px */
  height: 17.25rem;   /* 276px */
  overflow: hidden;
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.hero__banner.our_history_banner .hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   RESPONSIVE
================================= */

/* Tablet */
@media (max-width: 64rem) { /* 1024px */
  .hero__banner.our_history_banner .hero__wrap {
    flex-direction: column;
    gap: 2.5rem; /* 40px */
    text-align: center;
  }

  .hero__banner.our_history_banner .hero__art {
    justify-content: center;
  }

  .hero__banner.our_history_banner .hero__art-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__banner.our_history_banner .hero__card {
    width: 18.75rem; /* 300px */
    height: 15rem;   /* 240px */
  }
}

/* Mobile */
@media (max-width: 36rem) { /* 576px */
  .hero__banner.our_history_banner {
    padding: 3.75rem 0;
  }

  .hero__banner.our_history_banner .hero__title {
    font-size: 2rem;
  }

  .hero__banner.our_history_banner  .hero__description {
    font-size: 0.875rem;
  }

  .hero__banner.our_history_banner .hero__art-wrap {
    flex-direction: column;
    align-items: center;
  }

  .hero__banner.our_history_banner .hero__card {
    width: 100%;
    max-width: 21.5625rem;
    height: auto;
    aspect-ratio: 345 / 276;
  }
}

/*core values start*/

.core-values-block {
    padding: 4.375rem 0; /* 70px */
}

.core-values-block__header {
    text-align: center;
    margin-bottom: 3rem; /* 48px */
}

.core-values-block__heading {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #00e5d1;
    text-shadow: 0 0 0.625rem rgba(0,229,209,0.5), 0 0 1.625rem rgba(0,229,209,0.22);
    margin: 0 0 0.875rem; /* 14px */
    line-height: 1.2;
}

.core-values-block__desc {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(232, 244, 248, 0.6);
    max-width: 36.25rem; /* 580px */
    margin: 0 auto;
}

.core-values-block__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; 
    width: 100%;
	margin-top:2.5rem;
}

.core-values-block__col {
    display: grid;
    grid-template-rows: 8.125rem 8.125rem; /* 130px */
     gap: 1.5rem; 
}

.core-values-block__cell {
    position: relative;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
	
}
.core-values-block__cell:nth-child(odd) {
	background: linear-gradient(308deg, #009092 -4.73%, #12263A 37.51%, #0E4355 92.86%);
}
.core-values-block__cell:nth-child(even) { 
	border-radius: 8px;
	background: #1A1A31;
}
.core-values-block__cell:hover {
    transform: translateY(-0.1875rem);
}

.core-values-block__icon {
    object-fit: contain;
    z-index: 2;
    transition: transform 0.3s ease;
}

.core-values-block__label {
    font-size: clamp(1.1rem, 1.8vw, 1.55rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-align: center;
    padding: 0 1rem; /* 16px */
    z-index: 2;
    line-height: 1.3;
}

.core-values-block__label {
		color: var(--color-primary);
	text-align: center;

	font-family: Syne;
	font-size: 3.5rem;
	font-style: normal;
	font-weight: 400;
	line-height: 4.25rem; /* 121.429% */
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 61.938rem) {
    .core-values-block__grid {
        grid-template-columns: 1fr;
    }
	
	.core-values-block__col {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 6.25rem;
    }
	
	.core-values-block {
        padding: 3rem 0;
    }

    .core-values-block__label {
        font-size: 1.25rem;
    }
}

@media (max-width: 79.125rem) { 
	.core-values-block__label {
        font-size: 1.5rem;
    }
}

/* Mobile */

@media (max-width: 33.75rem) {
    .core-values-block__label {
        font-size: 1rem;
    }
}

.three-col-card h4{
	font-size:1.25rem;
	line-height:normal;
}
/*our story end*/


