@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300&family=Orbitron:wght@400;700&family=Montserrat:wght@200;300;400&family=Inter:wght@300;400&display=swap');

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

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #030712;
  color: #e2e8f0;
  overflow-x: hidden;
}

/* #mainApp always sits at z-index 0, fully visible behind the intro */
#mainApp {
  position: relative;
  z-index: 0;
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  /*background: rgba(3, 7, 18, 0.75);*/
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(148, 163, 184, 0.12);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;   /* pushes links to the right */
  flex-shrink: 0;
}
.nav-logo svg { display: block; }

/* Desktop links */
.nav-links {
  display: flex;
  gap: 4px;
}

nav a, .nav-drawer a {
  color: rgba(226, 232, 240, 0.6);
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 6px;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 0.5px solid transparent;
  transition: all 0.2s;
}

nav a:hover, .nav-drawer a:hover {
  color: #e2e8f0;
  background: rgba(148, 163, 184, 0.08);
  border-color: rgba(148, 163, 184, 0.2);
}

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(226, 232, 240, 0.7);
  border-radius: 2px;
  transition: all 0.25s;
}

/* Off-canvas drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 260px;
  height: 100vh;
  z-index: 200;
  background: rgba(4, 8, 20, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 0.5px solid rgba(148, 163, 184, 0.1);
  display: flex;
  flex-direction: column;
  padding: 28px 28px 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);

  /* subtle top edge glow */
  box-shadow: -1px 0 40px rgba(100, 140, 200, 0.06);
}
.nav-drawer.open {
  transform: translateX(0);
}

/* Close button */
.drawer-close {
  align-self: flex-end;
  background: rgba(200, 220, 240, 0.05);
  border: 0.5px solid rgba(200, 220, 240, 0.1);
  border-radius: 6px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  margin-bottom: 28px;
  transition: background 0.2s, border-color 0.2s;
}
.drawer-close:hover {
  background: rgba(200, 220, 240, 0.1);
  border-color: rgba(200, 220, 240, 0.2);
}

/* Logo in drawer */
.drawer-logo {
  margin-bottom: 6px;
}
.drawer-logo svg { display: block; }
.drawer-logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 200;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(200, 220, 240, 0.3);
  margin: 6px 0 0;
}

/* Dividers */
.drawer-divider {
  width: 100%;
  height: 0.5px;
  background: rgba(148, 163, 184, 0.1);
  margin: 20px 0;
}

/* Nav links */
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: rgba(200, 220, 240, 0.55);
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 0.5px solid transparent;
  transition: all 0.2s;
  position: relative;
}
.drawer-link:hover {
  color: #dce8f4;
  background: rgba(200, 220, 240, 0.05);
  border-color: rgba(200, 220, 240, 0.1);
}
.drawer-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  flex-shrink: 0;
  color: rgba(200, 220, 240, 0.4);
  transition: color 0.2s;
}
.drawer-link:hover .drawer-link-icon { color: rgba(200, 220, 240, 0.7); }
.drawer-link-label { flex: 1; }
.drawer-link-arrow {
  font-size: 12px;
  color: rgba(200, 220, 240, 0.2);
  transition: color 0.2s, transform 0.2s;
}
.drawer-link:hover .drawer-link-arrow {
  color: rgba(200, 220, 240, 0.5);
  transform: translateX(3px);
}

/* Spacer */
.drawer-spacer { flex: 1; }

/* Footer */
.drawer-footer {}
.drawer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: rgba(200, 220, 240, 0.35);
  margin: 0;
  letter-spacing: 0.02em;
}
.drawer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 200;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: rgba(200, 220, 240, 0.2);
  margin: 0;
}

/* Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Mobile breakpoint ── */
@media (max-width: 640px) {
  .nav-links        { display: none; }
  .nav-hamburger    { display: flex; }

  nav { padding: 10px 16px; }

  .view-container {
    height: calc(100vh - 0px);
  }

  .page h1 { font-size: 36px; }
  .page-tagline { font-size: 9px; letter-spacing: 0.2em; }
  .value-pills { flex-wrap: wrap; justify-content: center; gap: 8px; }

  .orb-wrap { width: 100px; height: 100px; }
  .orb      { width: 76px;  height: 76px; }
  .orb-ring { width: 100px; height: 100px; }
  .orb-ring2 { width: 124px; height: 124px; }

  /* Intro: reposition hole centre for portrait screens */
  #vignetteSvg { overflow: visible; }
}

@media (max-width: 400px) {
  .page h1 { font-size: 28px; }
  .pill { font-size: 8px; padding: 4px 10px; }
}

/* ══════════════════════════════
   VIEW + PAGE TRANSITIONS
══════════════════════════════ */
.view-container {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow-x: hidden;
}

.view-container > div {
  position: relative;
  width: 100%;
  height: 100%;
}

.view-container > div.ng-enter {
  z-index: 999;
  opacity: 0;
  transform: scale(1.18) translateY(12px);
  filter: blur(6px);
  transition:
    opacity   0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    filter    0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.view-container > div.ng-enter-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0px);
}
.view-container > div.ng-leave {
  z-index: 998;
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0px);
  transition:
    opacity   0.45s cubic-bezier(0.55, 0, 1, 0.45),
    transform 0.45s cubic-bezier(0.55, 0, 1, 0.45),
    filter    0.45s cubic-bezier(0.55, 0, 1, 0.45);
}
.view-container > div.ng-leave-active {
  opacity: 0;
  transform: scale(0.88) translateY(-10px);
  filter: blur(8px);
}

/* ══════════════════════════════
   CONCEPT PAGE INTRO OVERLAY
   Lives inside ng-view, but uses
   position:fixed to cover everything
   including the nav bar.
══════════════════════════════ */
.concept-intro {
  position: fixed;
  inset: 0;
  z-index: 500;          /* above nav (z-index 10) */
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}

.vignette-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* "Enter" hint floating inside the hole */
.enter-hint {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  z-index: 3;
  animation: ehFadeIn 1.2s ease 0.6s both;
}
@keyframes ehFadeIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1);   }
}
.enter-hint span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(200, 220, 240, 0.7);
  animation: pulse 2.4s ease-in-out infinite;
}
.eh-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(200, 220, 240, 0.5);
  margin: 8px auto 0;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

.l1-tagline {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #e3ddd8;
  z-index: 3;
}

/* ══════════════════════════════
   HOME PAGE
══════════════════════════════ */
.page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.home {
  background: radial-gradient(ellipse at 50% 60%, #0f2460 0%, #030712 70%);
}

.about   { background: radial-gradient(ellipse at 50% 60%, #0d3321 0%, #030712 70%); }
.contact { background: radial-gradient(ellipse at 50% 60%, #2d1042 0%, #030712 70%); }

/* Orb */
.orb-wrap {
  position: relative;
  width: 130px; height: 130px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.orb {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 36%, #dce8f4 0%, #9ab8d0 50%, #5a7ea0 100%);
  box-shadow:
    0 0 40px 12px rgba(180, 210, 240, 0.22),
    0 0 80px 24px rgba(100, 160, 220, 0.10);
}
.orb-ring {
  position: absolute;
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 0.5px solid rgba(200, 220, 240, 0.20);
  animation: orbitSpin 12s linear infinite;
}
.orb-ring2 {
  width: 160px; height: 160px;
  border-color: rgba(200, 220, 240, 0.10);
  animation-duration: 20s;
  animation-direction: reverse;
}
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

/* Page text */
.page-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(200, 220, 240, 0.45);
  margin: 0;
}

.page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #dce8f4;
  margin: 0;
  line-height: 1;
}

.page-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.3em;
  color: rgba(200, 220, 240, 0.4);
  margin: 0;
  text-transform: uppercase;
}

/* Value pills */
.value-pills {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.pill {
  padding: 5px 14px;
  border-radius: 20px;
  border: 0.5px solid rgba(200, 220, 240, 0.18);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #e3ddd8);
  background: rgba(200, 220, 240, 0.04);
}

/* Shooting stars */
.shooting-star {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: white;
  opacity: 0;
}
.shooting-star::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 1px;
  background: linear-gradient(to left, rgba(255,255,255,0.7), transparent);
  transform-origin: right center;
}
.s1 { top: 18%; left: 15%; animation: shoot 5s ease-out 1.2s infinite; }
.s2 { top: 32%; left: 60%; animation: shoot 5s ease-out 3.1s infinite; }
.s3 { top: 10%; left: 40%; animation: shoot 5s ease-out 4.5s infinite; }

@keyframes shoot {
  0%   { opacity: 0; transform: translate(0, 0) rotate(-35deg); }
  5%   { opacity: 1; }
  30%  { opacity: 0; transform: translate(120px, 80px) rotate(-35deg); }
  100% { opacity: 0; transform: translate(120px, 80px) rotate(-35deg); }
}


/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about, .gallery, .siteprogress, .locationmap {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  height: 100%
}

.gallery{
  display: block;
}

.gallery .uk-slideshow{
  height: 100vh;
}

.gallery .uk-slideshow-items{
    width: 100%;
    height: 100%;
}

.uk-thumbnav{
  margin-bottom: 100px;
}

.uk-slideshow-items h3{
  color: #e6e7e8;
  font-size: 40px;
  font-family: 'Montserrat-Bold';
}

.uk-overlay-primary{
  padding: 20px 0 20px 0px;
}

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

.galleryTitle > img{
  width: 20px;
  margin-left: 20px;
  margin-right: 20px;
}


.siteprogress{
  display: block;
  background-image: url('img/concept/concept-bg.jpg');
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.siteprogresscontainer{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.siteprogresscontainer canvas{
  position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
}

.siteprogresscontainer h1{
  color: #455057;
}

.locationmapcontainer{
  display: block;
  height: 100vh;
}

.developerContainer {
    text-align: center;
}

.developerContainer img {
    width: 20%;
    margin: 0 auto;
    display: block;
}

.developerContainer p {
    color: #fff;
    font-size: 16px;
    font-family: 'Montserrat-Regular';
}

.developerContainer p a {
    color: #fff;
    font-size: 16px;
    font-family: 'Montserrat-Medium';
    text-decoration: underline;
}

.uk-dotnav>*>* {
    border: 1px solid rgba(148, 163, 184, .6);
}

.uk-dotnav>.uk-active>*{
  background-color: rgba(255, 255, 255, 1);
    border-color: transparent;
}

.developerSlider {
    margin-top: 100px;
}

.developerSlider .uk-slider > div {
    background-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 10px;
    padding: 40px 30px;
    border: 1px solid rgba(148, 163, 184, 0.38);
}

.developerSlider img {
    width: 90% !important;
}

.floorplancontainer{
  background-image: url(img/inner-bg.jpg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  display: block;
  position: relative;
}

.contactus{
  background-image: url('img/concept/concept-bg.jpg');
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.contactuscontainer canvas{
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
  width: 100%;
  height: 100vh;
}

.contactuscontainer > .about-overlay{
  width: 100%;
  pointer-events: none;
}

.contactuscontainer{
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contactUsCard{
  background-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 10px;
    padding: 30px 20px;
    border: 1px solid rgba(148, 163, 184, 0.38);
}

.contactUsCard img {
    width: 70%;
    pointer-events: none;
}

.contactUsCardExsim > div > img {
    width: 50% !important;
}

.contactUsLocation a{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #667d96;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  text-decoration: none;
  transition-duration: 0.3s; 
  -webkit-transition-duration: 0.3s; 
}

.contactUsLocation a:hover{
  background-color: #7e727f;
}

.contactUsLocation a img {
    width: 25px;
    pointer-events: unset;
    margin-right: 10px;
}

.contactUsLocation a p{
  color: #fff;
  font-family: 'Montserrat-Regular';
  font-size: 14px;
  margin: 0;
}

.contactUsCard h2 {
    color: #2c3136;
    text-transform: uppercase;
    font-size: 18px;
    font-family: 'Montserrat-Bold';
    margin-top: 0px;
    margin-bottom: 0;
}

.contactUsCard span {
    color: #2c3136;
    font-size: 15px;
    font-family: 'Montserrat-Regular';
}

.contactUsCard p {
    color: #2c3136;
    font-size: 14px;
    font-family: 'Montserrat-Regular';
}

.contactUsCard ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    display: block;
    position: relative;
    margin-top: 30px;
}

.contactUsCard ul li {
    text-align: left;
    margin-bottom: 15px;
}

.contactUsCard ul li a {
    color: #2c3136;
    font-size: 14px;
    font-family: 'Montserrat-Regular';
    display: inline-block;
    width: 100%;
    cursor: pointer;
}

.contactUsCard ul li a:hover {
    text-decoration: none;
}

.contactUsCard ul li a img {
    width: 30px;
    display: inline-block;
    margin-right: 5px;
}

.contactUsLocation {
    
}

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

.contactUsCardLogo img{
  width: 180px;
}

.contactUsCard .uk-grid > div{
  display: flex;
  justify-content: center;
  align-items: center;
}

.conceptsection1container{
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.conceptsection1container canvas{
  position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100vh;
    pointer-events: none;
}

.conceptsection1{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  height: 100vh;
}

.about-bg {
  position: absolute;
  inset: 0;
  background: url('img/concept/concept-bg.jpg') center center / cover no-repeat;
  opacity: 1;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(7,17,26,0.2) 0%, rgba(7,17,26,0.1) 50%, rgba(7,17,26,0.65) 100%),
    linear-gradient(to right,  rgba(7,17,26,0.45) 0%, transparent 35%, transparent 65%, rgba(7,17,26,0.3) 100%);
  opacity: 0.2;
  pointer-events: none;
}

/* ── Orbit scene ── */
.orbit-scene {
  position: relative;
  z-index: 2;
  /* responsive square — never bigger than the shortest viewport dimension */
     width: 500px;
    height: 500px;
    margin-top: -40px;
}

/* Static SVG ring — no rotation */
.orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* ── Dot groups: fade in sequentially ── */
.odot { opacity: 0; animation: dotFadeIn 0.7s ease forwards; }
.odot-1 { animation-delay: 0.5s;  }
.odot-2 { animation-delay: 1.0s; }
.odot-3 { animation-delay: 1.5s; }
.odot-4 { animation-delay: 2.0s; }

@keyframes dotFadeIn {
  from { opacity: 0; transform: scale(0.4); }
  to   { opacity: 1; transform: scale(1);   }
}

/* ── Centre logo ── */
.orbit-logo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: dotFadeIn 0.8s ease 0.2s both;
}

.orbit-logo-the {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(8px, 1.5vw, 11px);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(180, 200, 215, 0.5);
  margin-bottom: 2px;
}

.orbit-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 5vw, 46px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #d8e4ed;
  line-height: 1;
}

.orbit-logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(7px, 1vw, 9px);
  font-weight: 200;
  letter-spacing: 0.25em;
  color: rgba(180, 200, 215, 0.38);
  margin-top: 8px;
}

.orbit-logo img{
  width: 200px;
}

/* ── Labels: positioned absolutely, fade in after their dot ── */
.orbit-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 3px;
  opacity: 0;
  animation: labelFadeIn 0.6s ease forwards;
  pointer-events: none;
  white-space: nowrap;
  text-align: left;
}

@keyframes labelFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.olabel-1 { animation-delay: 0.7s;  }
.olabel-2 { animation-delay: 1.2s; }
.olabel-3 { animation-delay: 1.7s; }
.olabel-4 { animation-delay: 2.2s; }

/* Top — Wonder */
.label-top {
  top: 0%;
  left: calc(50% - 33px);
  transform: translateX(-50%);
  align-items: center;
  text-align: center;
}
/* Right — Harmony */
.label-right {
  right: -20%;
  top: 50%;
  transform: translateY(-50%);
  align-items: flex-start;
  text-align: left;
}
/* Bottom — Openness */
.label-bottom {
  bottom: 0%;
  left: calc(50% - 40px);
  transform: translateX(-50%);
  align-items: center;
  text-align: center;
}
/* Left — Connection */
.label-left {
  left: -20%;
  top: 50%;
  transform: translateY(-50%);
  align-items: flex-end;
  text-align: right;
}

.ol-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e3ddd8;
  text-shadow: 2px 2px 2px #000;
}

.ol-body {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(7px, 0.85vw, 9px);
  font-weight: 200;
  letter-spacing: 0.05em;
  line-height: 1.55;
  color: rgba(180, 200, 215, 0.42);
}

/* ── Body copy bottom-left ── */
.about-copy {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 28px;
  max-width: 300px;
  animation: labelFadeIn 0.8s ease 2.5s both;
}

.about-copy p {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.85;
  color: #e3ddd8;
  text-shadow: 2px 2px 2px #000;
  margin: 0;
}

.registercontainer {
    height: 100vh;
    position: relative;
    z-index: 2;
}

.registerBtn{
  position: absolute;
  bottom: 0;
  left: calc(50% - 100px);
  text-align: center;
}

.registerBtn a{
  position: absolute;
  bottom: 50px;
  z-index: 10;
  display: block;
  text-align: center;
    background-color: #667d96;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    text-decoration: none;
  width: 200px;
  color: #fff;
  font-family: 'Montserrat-Regular';
      transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
}

.registerBtn a:hover{
  background-color: #7e727f;
}

.register-form {
    background-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px 20px;
    border: 1px solid rgba(148, 163, 184, 0.38);
    height: calc(100vh - 80px);
    padding: 40px;
    position: relative;
    overflow-y: scroll;
    width: 700px;
    margin: 0 auto;
}

.register-form-close {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #667d96;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-form-close img {
    width: 25px;
}

.register-form h2 {
    font-family: 'Montserrat-Bold';
    color: #2c3136;
    font-size: 26px;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 0;
}

.formfooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.register-form-bottom {
    text-align: center;
    width: 33.33%;
    border-right: 1px solid #2c3136;
    line-height: 40px;
}

.register-form-bottom a {
    color: #2c3136;
    font-size: 15px;
    font-family: 'Montserrat-Medium';
    cursor: pointer;
    text-decoration: none;
}

.formfooter > div:last-child {
    border: none !important;
}

.register-bg{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
    inset: 0;
    background: url(img/concept/concept-bg.jpg) center center / cover no-repeat;
    opacity: 1;
}

.register-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7, 17, 26, 0.2) 0%, rgba(7, 17, 26, 0.1) 50%, rgba(7, 17, 26, 0.65) 100%), linear-gradient(to right, rgba(7, 17, 26, 0.45) 0%, transparent 35%, transparent 65%, rgba(7, 17, 26, 0.3) 100%);
    opacity: 0.2;
    pointer-events: none;
}

.register canvas{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}








/* ══════════════════════════════════════════
   ABOUT — MOBILE  ≤640px
══════════════════════════════════════════ */
@media (max-width: 640px) {

  .about {
    flex-direction: column;
    justify-content: center;
    padding: 16px 16px 100px; /* room for copy at bottom */
    overflow-y: auto;
  }

  /* Smaller orbit so labels don't clip */
  .orbit-scene {
    width:  min(72vw, 72vw);
    height: min(72vw, 72vw);
    margin-top: 12px;
  }

  /* Hide side labels — replaced by pills */
  .orbit-label { display: none; }

  /* Pills appear below the orbit */
  .orbit-pills-mobile {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    z-index: 2;
    position: relative;
    animation: labelFadeIn 0.7s ease 2.2s both;
    opacity: 0;
  }

  /* Body copy stacks below pills */
  .about-copy {
    position: relative;
    bottom: auto; left: auto;
    max-width: 88%;
    padding: 20px 0 12px;
    text-align: center;
    animation-delay: 2.6s;
  }

  .about-copy p {
    font-size: 11px;
    line-height: 1.9;
  }

  .contactUsCardLogo{
    margin-bottom: 30px !important;
  }

  .contactuscontainer{
    height: 100%;
  }

  .page {
    padding-top: 50px
  }

  .contactUsCard h2 {
    font-size: 22px;
}

.contactUsCard p, .contactUsCard ul li a, .contactUsLocation a p{
    font-size: 16px;
}













}

@media (max-width: 380px) {
  .orbit-scene {
    width:  80vw;
    height: 80vw;
  }
}


