:root {
    --color-white-100: #fff;
    --color-white-200: #e4e6e7;
    --color-white-300: #c9cccf;
    --color-white-400: #a1a6aa;
    --color-white-500: #798086;
    --color-black-100: #14191f;
    --color-black-200: #101419;
    --color-black-300: #0c0f13;
    --color-black-400: #0f233d;
    --color-black-600: #060709;
    --color-black-700: #040506;
    --color-black-800: #020303;
    --color-blue-100: #dcebfe;
    --color-blue-200: #bedbfe;
    --color-blue-300: #91c3fd;
    --color-blue-400: #61a6fa;
    --color-blue-500: #3c83f6;
    --color-blue-600: #2463eb;
    --color-blue-700: #1d4fd7;
    --color-blue-800: #1e3fae;
    --color-blue-900: #1e3b8a;

    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

    /* Moved from index.css for centralization */
    --dark-bg: #080d1c;
    --navy: #07284a;
    --deep: #001F3F;
    --accent-yellow: #F9B233;
    --accent-pink: #E91E63;
    --accent-red: #FF3B3F;
    --text-light: #f5f5f5;
    --muted: #9aa7bd;
}

html, body {
    overflow-x: hidden;
    min-height: 100vh;
    width: 100% ;
    max-width: 100%;
    margin: 0;
    /* background: white; */
    /* background:  linear-gradient(145deg, #071d41, #013769); */
    background: radial-gradient(circle at 20% 20%, #0a1d42, #092a6e 70%);

    font-family: 'Poppins', 'Inter', system-ui;
    
}

::-webkit-scrollbar {
  width: 8px;
  background: #05122c;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ffae00, rgb(235, 110, 8));
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffae00, var(--accent-yellow));
}


.global-theme *, .global-theme *::before, .global-theme *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.global-theme html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

.global-theme body {
    font-family: "Rubik", sans-serif;
    font-size: clamp(0.875rem, 2.5vw, 1.125rem);
    font-weight: 400;
    line-height: 1.5;
    height: -webkit-fill-available;
    color: var(--color-white-100);
    background-color: #0f233d;
    letter-spacing: 0.2px;
}

.global-theme a, .global-theme button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
    text-decoration: none;
}

.global-theme img, .global-theme video {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.global-theme img[src$=".svg"] {
    object-fit: contain;
    flex-shrink: 0;
}

.global-theme .section {
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 6rem) 0 1rem;
}

.global-theme .container {
    max-width: 75rem;
    height: auto;
    margin: 0 auto;
    padding: 0 clamp(1rem, 2.5vw, 1.5rem);
    animation: headerFadeIn 2s ease-out forwards ;

}


.global-theme .heading-xl {
    font-family: inherit;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    font-size: clamp(2rem, 5vw, 46px);
    margin-bottom: clamp(1.5rem, 4vw, 30px);
    margin-top: clamp(2rem, 5vw, 60px);
}

.global-theme .paragraph {
    font-family: inherit;
    font-size: clamp(0.875rem, 2.5vw, 1.125rem);
    line-height: inherit;
    max-width: 95%;
    height: auto;
    text-transform: unset;
    color: var(--color-white-200);
}

.global-theme .button.filled {
    min-width: clamp(120px, 20vw, 160px);
    color: #fff;
    text-align: center;
    background-color: #7582f1;
    border-width: 0;
    border: 3px solid #7582f1;
    border-radius: 8px;
    padding: clamp(0.75rem, 2vw, 14px) clamp(1.25rem, 4vw, 28px);
    font-size: clamp(0.75rem, 2vw, 14px);
    font-weight: 600;
    transition: all .2s;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: clamp(120px, 20vw, 140px);
    background: linear-gradient(135.19deg,#52f5ff .34%,#6b6bff 43.94%,#7555f8 61.59%,#6f53ff 61.6%,#ff8f50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.8px;
}

.global-theme .button.filled:hover {
    box-shadow: 0 9px 40px -9px rgba(117, 130, 241, .73);
    transform: translateY(-3px);
}

.global-theme .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: auto;
    margin: 0 auto;
    background: #05132e;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    transition: background 0.35s ease, backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease, box-shadow 0.35s ease;
    opacity: 0;
    animation: headerFadeIn 2s ease-out forwards;
}

@keyframes headerFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


.global-theme .header.on-scroll {
    background: rgba(11, 18, 36, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: var(--shadow-medium);
}

.global-theme .navbar {
    font-family: Poppins, Inter, system-ui;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 1.25rem;
    width: 100%;
    height: 5.5rem;
    margin: 0 auto;
}

.global-theme .brand {
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -1px;
    color: var(--color-white-100);
    text-transform: uppercase;
}

.global-theme nav.navbar.container .brand img {
    filter: brightness(0) invert(1);
    height: 62px;
    width: auto;
    
}

.global-theme .burger {
    position: relative;
    display: none;
    cursor: pointer;
    user-select: none;
    order: -1;
    z-index: 10;
    width: 2rem;
    height: 1.5rem;
    border: none;
    outline: none;
    background: none;
    visibility: hidden;
    transform: rotate(0deg);
    transition: transform 0.35s ease;
}

.global-theme .burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    border: none;
    outline: none;
    opacity: 1;
    transform: rotate(0deg);
    background-color: var(--color-white-100);
    transition: all 0.25s ease-in-out;
    border-radius: 1px;
}

.global-theme .burger-line:nth-child(1) {
    top: 0;
}

.global-theme .burger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    width: 70%;
}

.global-theme .burger-line:nth-child(3) {
    bottom: 0;
}

.global-theme .burger.is-active .burger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.global-theme .burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) scaleX(0);
}

.global-theme .burger.is-active .burger-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.global-theme .menu {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 0;
    overflow: visible;
    background: none;
    box-shadow: none;
    transition: none;
    opacity: 1;
    transform: none;
    z-index: auto;
}

.global-theme .menu.is-active {
    top: 0;
    width: auto;
    height: auto;
}

.global-theme .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    margin: 0 auto;
    justify-content: flex-end;
}

.global-theme .menu-link {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-white-100);
    text-transform: capitalize;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.global-theme .menu-link:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    background-color: rgba(117, 130, 241, 0.2);
    transform: translateX(10px);
}

.global-theme .menu-item img {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    display: inline;
    filter: brightness(120%);
    margin-right: 10px;
    object-fit: contain;
}

.global-theme .service-menu {
    position: relative;
    transition: all 0.6s ease 0s;
}

.global-theme .service-menu > a {
    display: flex;
    grid-gap: 7px;
    padding: 18px 12px;
    padding-right: 0;
}

.global-theme .service-menu .menu-item {
    display: flex;
    align-items: center;
}

.global-theme .service-menu .menu-item a {
    width: 100%;
    display: block;
}

.global-theme .sub-drop {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background: #0f233d;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0px 0px 10px 10px;
    transition: all 0.6s ease 0s;
    width: max-content;
    min-width: 200px;
    opacity: 0.9;
    color: var(--text-light);
}

.global-theme li.menu-item.service-menu:hover .sub-drop,
.global-theme .service-menu:focus-within .sub-drop {
    display: block;
    border: none;
}

.global-theme .sub-drop a {
    color: var(--text-light);
    font-size: 16px;
    padding: 12px 12px;
    display: block;
}

.global-theme .sub-drop a:hover, .global-theme li.menu-item a:hover {
    width: 100%;
    background: linear-gradient(0deg,hsla(220,60%,25%,.3),hsla(220,60%,25%,.3)),linear-gradient(135.19deg,#52f5ff .34%,#6b6bff 43.94%,#7555f8 61.59%,#6f53ff 61.6%,#ff8f50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: normal;
    -webkit-text-decoration-color: #6b6bff;
    text-decoration-color: #6b6bff;
    outline: 0;
    position: relative;
    z-index: 90;
}

.global-theme li.menu-item.service-menu .menu-item:hover img {
    filter: brightness(0) invert(1);
}

.global-theme .sub-drop div:hover {
    background: #0d1a32;
    position: relative;
    z-index: 1;
}

/* .global-theme .menu-block {
    display: inline-block;
    font-family: inherit;
    font-weight: 600;
    line-height: 1.25;
    user-select: none;
    white-space: nowrap;
    text-align: center;
    margin-left: 2rem;
    text-transform: uppercase;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease-in-out;
    color: #7582f1;
    background-color: rgba(56, 152, 236, 0);
    border: 3px solid #7582f1;
    border-radius: 8px;
    padding: 13px 24px;
    font-size: 12px;
} */

.global-theme header .button.filled {
    width: auto;
    margin: 0;
}

/* 
.global-theme .menu-block:hover {
    box-shadow: 0 0 18px rgba(117, 130, 241, 0.6) !important;
} */


.ready {
    opacity: 0.8;
    transform: translateY(-50px);
    transition: all 0.8s ease-out;
  }
  
  
  .ready.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .ready-content > * {
    opacity: 0.2;
    transform: translateY(-20px);
    transition: all 0.8s ease-out;
  }
  
  .ready.show .ready-content > * {
    opacity: 1;
    transform: translateY(0);
  }
  
  .ready.show .ready-title { transition-delay: 0.1s; }
  .ready.show p { transition-delay: 0.2s; }
  .ready.show .button { transition-delay: 0.3s; }
  .ready.show .pencil { transition-delay: 0.4s; }

  
.global-theme .ready {
    margin-top: clamp(-200px, -10vw, -300px);
    padding-bottom: clamp(3rem, 5vw, 54px);
}

.global-theme .ready .container {
    position: relative;
}

.global-theme .ready-content {
    background: #2a4a8a;
    border-radius: 30px;
    
    min-height: clamp(250px, 40vh, 386px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
    background-image: url(../images/fundbg.svg);
    background-size: contain;
    background-size: 30%;

    background-position: left bottom;
    background-repeat: no-repeat;
    padding: clamp(1rem, 3vw, 2rem);
}

.global-theme .pencil {
    position: absolute;
    right: clamp(-50px, -5vw, -100px);
    bottom: clamp(-20px, -2vh, -38px);
    width: clamp(80px, 25vw, 300px); /* scales nicely */
    height: auto;
    opacity: 0.85;
    transform: rotate(-5deg);
    z-index: 0; /* ensures it sits behind text/button */
    pointer-events: none; 
}

.global-theme .ready-title {
    font-size: clamp(2rem, 6vw, 56px);
    font-weight: 800;
    margin-bottom: clamp(1.5rem, 4vw, 40px);
    text-transform: capitalize;
}

.global-theme .ready-content p {
    max-width: 450px;
    font-size: clamp(0.875rem, 2.5vw, 1.125rem);
    margin: 0 auto;
    margin-bottom: clamp(1rem, 3vw, 27px);
}

.global-theme button.button.alternative {
    display: inline-block;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25;
    user-select: none;
    white-space: nowrap;
    text-align: center;
    margin-left: auto;
    padding: 0.65rem 1.5rem;
    border-radius: 3rem;
    text-transform: capitalize;
    color: #fff;
    background-color: transparent;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease-in-out;
    border: 1px solid;
}

.global-theme button.button.alternative:hover {
    background-color: #fff;
    color: #333;
    font-weight: 600;
    border: 1px solid #fff;
}
.global-theme .footer {
    display: flex;
    height: 100%;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: clamp(2rem, 5vw, 80px) 0 clamp(2rem, 4vw, 60px);
    color: #fff;
    background-color: #0a1d42;
    gap: clamp(2rem, 3vw, 3rem);
  }
  
  .global-theme .footerDiv {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-bottom: clamp(2rem, 4vw, 40px);
    gap: clamp(2rem, 3vw, 3rem);
  }
  
  .global-theme .footer > * {
    flex: 1 100%;
  }
  
  .global-theme .footer__addr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: 1.25em;
    margin-bottom: 2em;
    gap: clamp(0.75rem, 1vw, 1rem);
  }
  
  .global-theme .footer__logo {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    text-transform: lowercase;
    font-size: 1.5rem;
    width: 100%;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }
  
  .global-theme h1.footer__logo img {
    filter: brightness(0) invert(1);
    height: clamp(45px, 8vw, 70px);
    width: auto;
    margin-bottom: 20px;
  }
  
  .global-theme .socialMedia {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1vw, 1rem);
    margin-bottom: clamp(0.75rem, 1vw, 1rem);
  }
  
  .global-theme .socialMedia img {
    width: clamp(22px, 3.5vw, 26px);
    height: clamp(22px, 3.5vw, 26px);
    transition: 0.2s ease;
  }
  
  .global-theme .socialMedia img:hover {
    transform: translateY(-3px);
    opacity: 0.85;
  }
  
  .global-theme .footerContact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: clamp(0.8rem, 2vw, 14px);
    line-height: 1.6;
    color: #d4d7e2;
    gap: clamp(0.3rem, 1vw, 0.5rem);
    margin-top: clamp(0.5rem, 1vw, 0.75rem);
  }
  
  .global-theme .footerContact p {
    margin: 0;
    padding: 0;
  }
  
  .global-theme .footer__nav {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: clamp(1.5rem, 2vw, 2.5rem);
    width: 100%;
  }
  
  .global-theme .footer__nav > * {
    flex: 1 1 200px;
    margin-right: 1.25em;
  }
  
  .global-theme .nav__title {
    font-weight: 500;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--color-white-100);
    margin-bottom: 0.75rem;
  }
  
  .global-theme .footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #9aa5c0;
    font-size: clamp(0.8rem, 2vw, 15px);
    text-decoration: none;
    line-height: 1.9;
  }
  
  .global-theme .footer li {
    line-height: 1.9em;
  }
  
  .global-theme .footer a {
    text-decoration: none;
    color: #d3d8e7;
    transition: color 0.3s ease;
  }
  
  .global-theme .footer a:hover {
    color: var(--accent-yellow);
    opacity: 0.9;
  }
  
  .global-theme .nav__ul--extra {
    column-count: 2;
    column-gap: 1.25em;
  }
  
  .global-theme .legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: clamp(0.7rem, 2vw, 13px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: clamp(1rem, 2vw, 1.5rem);
    margin-top: clamp(2rem, 3vw, 3rem);
  }

/* Force Services section to stack all items vertically (no columns) */
.global-theme .footer__nav .nav__item--extra .nav__ul.nav__ul--extra {
    display: flex;
    flex-direction: column; /* stack vertically */
    justify-content: flex-start;
    align-items: center;
    column-count: unset; /* disable multi-column layout */
    row-gap: clamp(0.4rem, 1vw, 0.6rem); /* even vertical spacing */
    width: 100%;
    padding: 0;
    margin: 0;
  }
  
  .global-theme .footer__nav .nav__item--extra .nav__ul.nav__ul--extra li {
    display: block;
    white-space: normal;
    line-height: 1.8;
  }
  
  
  
/* Focus states for accessibility */
.global-theme a:focus,
.global-theme button:focus,
.global-theme .menu-link:focus,
.global-theme .service-menu:focus-within a:focus {
    outline: 2px solid var(--color-blue-400);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Desktop and above: 1024px+  Header*/
@media screen and (min-width: 1024px) {
    .global-theme .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 5.5rem;
      column-gap: 2.5rem;
      padding: 0 clamp(1rem, 2vw, 2rem);
    }
  
    .global-theme nav.navbar.container .brand {
      width: auto;
      flex-shrink: 0;
    }
  
    .global-theme nav.navbar.container .brand img {
      height: clamp(60px, 5vw, 72px);
      width: auto;
      display: block;
    }
  
    .global-theme .menu-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(1.5rem, 2vw, 3rem);
    }
  
    .global-theme .menu-link {
      font-size: clamp(1rem, 1.2vw, 1.125rem);
      padding: 0.75rem 1.25rem;
      transition: color 0.3s ease, transform 0.2s ease;
    }
  
    .global-theme .menu-link:hover {
      color: var(--accent-yellow);
      transform: translateY(-2px);
    }
  
    .global-theme .menu-block {
      margin-left: clamp(1.5rem, 3vw, 2rem);
      padding: clamp(12px, 1.5vw, 16px) clamp(24px, 2vw, 32px);
      font-size: clamp(13px, 0.9vw, 14px);
      border: 2px solid #7582f1;
      border-radius: 8px;
      color: #7582f1;
      transition: all 0.3s ease;
    }
  
    .global-theme .menu-block:hover {
      background: linear-gradient(90deg, #6c63ff 0%, #8e7bff 100%);
      color: #fff;
      transform: translateY(-2px);
    }
  }
  
  /* Tablet: 768px - 1023px Header */
  @media screen and (min-width: 768px) and (max-width: 1023px) {
    .global-theme .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 5rem;
      column-gap: clamp(1rem, 2vw, 1.5rem);
      padding: 0 clamp(0.75rem, 2vw, 1.25rem);
    }
  
    .global-theme .brand {
      font-size: clamp(1.25rem, 2vw, 1.4rem);
      flex-shrink: 0;
    }
  
    .global-theme nav.navbar.container .brand img {
      height: clamp(50px, 6vw, 58px);
      width: auto;
    }
  
    .global-theme .menu-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(1rem, 2vw, 1.5rem);
    }
  
    .global-theme .menu-link {
      font-size: clamp(0.9rem, 1.5vw, 0.95rem);
      padding: 0.65rem 1.25rem;
      transition: color 0.25s ease, transform 0.2s ease;
    }
  
    .global-theme .menu-link:hover {
      color: var(--accent-yellow);
      transform: translateY(-2px);
    }
  
    .global-theme .menu-block {
      margin-left: clamp(1rem, 2vw, 1.5rem);
      padding: clamp(10px, 1vw, 12px) clamp(20px, 2vw, 24px);
      font-size: clamp(11px, 1vw, 12px);
      border: 2px solid #7582f1;
      border-radius: 8px;
      color: #7582f1;
      transition: all 0.3s ease;
    }
  
    .global-theme .menu-block:hover {
      background: linear-gradient(90deg, #6c63ff 0%, #8e7bff 100%);
      color: #fff;
      transform: translateY(-2px);
    }
  
    /* Center dropdowns better on tablets */
    .global-theme .sub-drop {
      left: 50%;
      transform: translateX(-50%);
      min-width: clamp(200px, 25vw, 240px);
    }
  }
  
  /* Footer */
  @media screen and (max-width: 1023px) {
    .global-theme .footer {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: clamp(2rem, 3vw, 3rem);
    }
  
    .global-theme .footerDiv {
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: clamp(2rem, 4vw, 2.5rem);
    }
  
    .global-theme .footer__addr {
      align-items: center;
      text-align: center;
      margin: 0 auto;
    }
  
    .global-theme .socialMedia {
      justify-content: center;
      margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
    }
  
    .global-theme .footerContact {
      align-items: center;
      text-align: center;
    }
  
    .global-theme .footer__nav {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
  
    .global-theme .nav__title {
      margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
    }
  
    .global-theme .nav__ul--extra {
      column-count: 1;
    }
  
    .global-theme .legal {
      font-size: clamp(0.75rem, 2vw, 0.9rem);
      text-align: center;
      padding-top: clamp(1rem, 2vw, 1.25rem);
    }
  }
  
  

/* Mobile and below: max-width: 800px - improved vertical alignment + scroll accent */
@media screen and (max-width: 800px) {
    .global-theme .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap; /* stop wrapping */
        row-gap: 0;
        column-gap: clamp(0.8rem, 2vw, 1.25rem);
        overflow: hidden; /* prevents layout shift */
    }

    .global-theme .menu-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        flex-wrap: nowrap; /* ensures links stay in one row */
        gap: clamp(0.6rem, 2vw, 1rem);
        width: auto; /* don't stretch full width */
        text-align: center;
        flex: 1; /* take available middle space */
        min-width: 0; /* allow flex shrinking */
    }

    .global-theme .menu-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        line-height: 1;
        padding: clamp(0.4rem, 1.2vw, 0.7rem) clamp(0.75rem, 2vw, 1rem);
        font-size: clamp(0.85rem, 2.5vw, 1rem);
    }

    /* fix “Contact US” split */
    .global-theme .menu-link span,
    .global-theme .menu-link a {
        display: inline-block;
        white-space: nowrap;
    }

    .global-theme .brand {
        flex-shrink: 0;
        margin-right: clamp(0.8rem, 2vw, 1.25rem);
    }

    /* fix the LET’S CONNECT button wrapping */
    .global-theme .menu-block {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-shrink: 0; /* prevent from shrinking */
        white-space: nowrap; /* force single line */
        margin-left: clamp(0.8rem, 2vw, 1.25rem);
        padding: 0;
    }

    .global-theme .menu-block a:hover,
    .global-theme .menu-block a:focus {
        background: linear-gradient(90deg, #6c63ff 0%, #8e7bff 100%);
        color: #fff;
        border-color: transparent;
        transform: translateY(-1px);
    }
}
/* Footer below 800 */
@media screen and (max-width: 800px) {
    /* Footer base layout */
    .global-theme .footer {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: clamp(2rem, 5vw, 3rem);
      padding-bottom: clamp(2rem, 5vw, 3rem);
      gap: clamp(1.5rem, 3vw, 2rem);
    }
  
    /* Footer logo fix */
    .global-theme .footer__logo img {
      height: clamp(45px, 8vw, 60px);
      width: auto;
      margin-bottom: clamp(0.75rem, 2vw, 1rem);
    }
  
    /* Address / about section */
    .global-theme .footer__addr {
      margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
      text-align: center;
      font-size: clamp(0.85rem, 2vw, 0.95rem);
      line-height: 1.6;
      max-width: 90%;
    }
  
    /* Footer links section */
    .global-theme .footer__nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: clamp(0.75rem, 2vw, 1rem);
    }
  
    .global-theme .nav__title {
      font-size: clamp(1rem, 3vw, 1.15rem);
      margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
    }
  
    .global-theme .footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: clamp(0.8rem, 2vw, 0.95rem);
      line-height: 1.8;
    }
  
    .global-theme .footer li {
      margin-bottom: 0.4rem;
    }
  
    /* Social media fix */
    .global-theme .socialMedia {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: clamp(0.8rem, 2vw, 1.2rem);
      margin-top: clamp(0.75rem, 2vw, 1.25rem);
    }
  
    .global-theme .socialMedia a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: clamp(34px, 7vw, 42px);
      width: clamp(34px, 7vw, 42px);
      border-radius: 50%;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }
  
    .global-theme .socialMedia a:hover {
      transform: translateY(-2px);
      opacity: 0.85;
    }
  
    /* Divider and legal section */
    .global-theme .footer hr {
      width: 80%;
      opacity: 0.2;
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      margin: clamp(1rem, 3vw, 1.5rem) 0;
    }
  
    .global-theme .legal {
      text-align: center;
      font-size: clamp(0.75rem, 2vw, 0.85rem);
      color: var(--color-white-400, #a1a6aa);
      padding-top: clamp(0.75rem, 2vw, 1rem);
    }
  
    /* Multi-column nav collapse */
    .global-theme .nav__ul--extra {
      column-count: 1;
      text-align: center;
    }
  
    /* Footer container alignment */
    .global-theme .footerDiv {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: clamp(1.5rem, 3vw, 2rem);
      margin-bottom: clamp(1.5rem, 3vw, 2rem);
    }
    .global-theme .ready-content {
        background-size: 30% !important; 

      }
      .global-theme .pencil {
        position: absolute;
        right: clamp(-20px, -3vw, -40px);
        bottom: clamp(-10px, -1.5vw, -20px);
        width: clamp(80px, 25vw, 300px); /* scales nicely */
        height: auto;
        opacity: 0.85;
        transform: rotate(-5deg);
        z-index: 0; /* ensures it sits behind text/button */
        pointer-events: none; /* prevents blocking button clicks */
      }
  }
  
/* Mobile and below: max-width: 720px - improved vertical alignment + scroll accent */
/* Smooth transition + stacked layout for below 720px */
@media screen and (max-width: 720px) {
    .global-theme .header,
    .global-theme .navbar {
        height: auto !important;
        min-height: unset !important;
        padding: clamp(0.5rem, 2vw, 1rem) 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: clamp(0.5rem, 2vw, 0.8rem);
        transition: all 0.35s ease-in-out; /* smooth size transition */
    }

    /* Transition effect for hiding header when scrolling */
.global-theme .header {
    transition: opacity 0.4s ease, transform 0.8s ease;
  }
  
  /* Hidden state (smooth fade and slide up) */
  .global-theme .header.on-scroll {
    opacity: 20;
    transform: translateY(-80%);
    pointer-events: none;
  }
  
    .global-theme .brand,
    .global-theme .menu-inner,
    .global-theme .menu-block {
        transition: all 0.35s ease-in-out;
    }

    /* fade + slide-in effect */
    .global-theme .menu-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: clamp(0.6rem, 2vw, 1rem);
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(-10px);
        animation: navSlideDown 0.4s ease forwards;
    }

    .global-theme .menu-block {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: clamp(0.6rem, 2vw, 1rem);
        padding: 0;
        opacity: 0;
        transform: translateY(-10px);
        animation: navSlideUp 0.45s ease forwards;
        animation-delay: 0.15s;
    }

    /* brand positioning */
    .global-theme .brand {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: clamp(0.4rem, 1vw, 0.6rem);
    }

    .global-theme .brand img {
        height: clamp(40px, 10vw, 55px);
        width: auto;
        display: block;
    }

    .global-theme .menu-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        line-height: 1;
        padding: clamp(0.4rem, 1vw, 0.6rem) clamp(0.6rem, 2vw, 0.9rem);
        font-size: clamp(0.85rem, 2.5vw, 1rem);
    }

    .global-theme .menu-link span,
    .global-theme .menu-link a {
        display: inline-block;
        white-space: nowrap;
    }

    .global-theme .menu-block a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        font-weight: 600;
        border: 2px solid rgba(120, 130, 255, 0.6);
        border-radius: 8px;
        color: #cfd4ff;
        padding: clamp(0.4rem, 1.5vw, 0.6rem) clamp(1rem, 3vw, 1.4rem);
        font-size: clamp(0.8rem, 2.2vw, 0.95rem);
        background: transparent;
        transition: all 0.25s ease;
        white-space: nowrap;
    }

    .global-theme .menu-block a:hover,
    .global-theme .menu-block a:focus {
        background: linear-gradient(90deg, #6c63ff 0%, #8e7bff 100%);
        color: #fff;
        border-color: transparent;
        transform: translateY(-1px);
    }

    /* keyframes for smooth entry */
    @keyframes navSlideDown {
        0% {
            opacity: 0;
            transform: translateY(-10px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes navSlideUp {
        0% {
            opacity: 0;
            transform: translateY(-10px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


/* Legacy small screens */
@media screen and (min-width: 24.375em) {
    .global-theme .legal .legal__links {
        margin-left: auto;
    }
}