/* Fonts */
/* poppins-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/poppins-v23-latin-regular.woff2') format('woff2'); 
}
/* poppins-500 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('/assets/fonts/poppins-v23-latin-500.woff2') format('woff2'); 
}
/* poppins-600 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('/assets/fonts/poppins-v23-latin-600.woff2') format('woff2'); 
}
/* poppins-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/poppins-v23-latin-700.woff2') format('woff2'); 
}
/* poppins-800 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('/assets/fonts/poppins-v23-latin-800.woff2') format('woff2'); 
}

/* inter-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('/assets/fonts/inter-v19-latin-300.woff2') format('woff2'); 
}

/* Global Styles */
html {
  font-size: 16px; 
}

:root {
  --space-xs: 10px;
  --space-sm: 20px;
  --space-smmd: 35px;
  --space-md: 50px;
  --space-lg: 65px;
  --main-brand-blue: #00C2FF;
  --bg-colour-1: #0A0A0A;
  --bg-colour-2: #181818;
  --text-colour-1: #f5f5f5;
  --text-colour-2: #bbbbbb;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
  padding-top: 55px;
  font-family: 'Inter', sans-serif;
  color: var(--text-colour-1);
  background-color: var(--bg-colour-1);
  line-height: 1.4em;
}

li {
  color: var(--text-colour-1);
}

p {
  color: var(--text-colour-1);
  font-weight: 300;
  line-height: 1.5em;
}

/* Auto center content with padding and max width
Apply to any content needing outer container */
.container {
  margin: auto;
  padding-bottom: var(--space-md)
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #fff;
  line-height: 1.4em;
}

.brand-accent {
  color: var(--main-brand-blue);
  text-shadow:
    0 0 12px #00bfff9d;
}

.main-btn {
  background-color: var(--main-brand-blue);
  border: none;
  box-shadow: 0 0 8px 2px var(--main-brand-blue);
  font-weight: 500;
  color: black;
}

.sub-btn {
  background-color: var(--bg-colour-1);
  border: 1px solid var(--main-brand-blue);
  color: var(--main-brand-blue);
  font-weight: 500;
}

.cta-button {
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  display: inline-block;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}

.zoom-out {
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  transition: 0.5s;
} 
 
.zoom-out:hover {
  transform: scale(1.05);
}

.icon {
  fill: var(--main-brand-blue);
  width: 25px;
  height: 25px;
}

.icon-small {
  width: 20px;
  height: 20px;
}

.cta-button:hover {
  box-shadow:
    0 0 8px var(--main-brand-blue),
    0 0 12px var(--main-brand-blue),
    0 0 16px var(--main-brand-blue);
}

.sub-heading {
  margin-top: var(--space-sm);
  text-align: center;
  color: var(--main-brand-blue);
  font-size: 1.3rem;
}

/* ==== Nav Component Styles ==== */
#nav1-navigation {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: var(--bg-colour-1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  padding: 0.5rem;
}

.nav1-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav1-ul li a {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: white;
  text-decoration: none;
}

.nav1-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
}

.nav1-toggle {
  background: var(--bg-colour-1);
  border: none;
  border-radius: 4px;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.6s;
}

.nav1-toggle-box {
  width: 24px;
  height: 18px;
  position: relative;
}

.nav1-line {
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  left: 0;
  transition: all 0.3s;
  border-radius: 1px;
}

.nav1-line:nth-child(1) { top: 0; }
.nav1-line:nth-child(2) { top: 8px; }
.nav1-line:nth-child(3) { bottom: 0; }

/* Animate to "X" */
.nav1-toggle.active .nav1-line:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}
.nav1-toggle.active .nav1-line:nth-child(2) {
  opacity: 0;
}
.nav1-toggle.active .nav1-line:nth-child(3) {
  transform: rotate(-45deg);
  bottom: auto;
  top: 8px;
}

/* Menu */
.nav1-ul-wrapper {
  width: 100%;
  background-color: var(--bg-colour-1);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s;
  overflow: hidden;
}

.nav1-ul {
  list-style: none;
  padding: 1.5rem 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav1-ul a:hover {
  color: var(--main-brand-blue);
  transition: color 0.3s;
}

.nav1-ul .active {
  color: var(--main-brand-blue);
}

/* Button */
.header-btn {
  display: none;
}

.cta-button.main-btn.zoom-out {
  font-size: 1rem;
  font-weight: 600;
  background: var(--main-brand-blue);
  border-radius: 0px;
  text-decoration: none;
}

/* Show menu when active */
#nav1-navigation.nav1-active .nav1-ul-wrapper {
  transform: scaleY(1);
  transition-delay: 0.2s;
}

.nav1-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4); 
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.3s ease,
    opacity 0.4s ease 0.3s,      
    visibility 0.4s linear 0.6s;
  z-index: 90; 
  transform: scaleY(0);
  transform-origin: top;
}

.nav1-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    visibility 0s;
}

.icon-blue {
  fill: var(--main-brand-blue);
}

.nav1-ul-wrapper .header-btn {
  display: none;
}

/* Sub menu styles */
/* === Down Arrow === */
.has-submenu > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  justify-content: center;
}

.has-submenu .arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.has-submenu.open .arrow {
  transform: rotate(-135deg);
  border-right: 3px solid var(--main-brand-blue);
  border-bottom: 3px solid var(--main-brand-blue);
}

.has-submenu.open .submenu {
  margin-top: 1rem;
  visibility: visible;
  opacity: 1;
  max-height: 300px;
  border-bottom: 3px solid var(--main-brand-blue);;
  transform: scaleY(1);
  pointer-events: all;
  transition: opacity 0.3s,
    margin-top 0.4s,
    padding-top 0.4s,
    max-height 0.3s,
    transform 0.4s,
    visibility 0s;
}

.has-submenu.open > .submenu-dropdown {
  color: var(--main-brand-blue);
}

.has-submenu li {
  padding: 0.3rem 0;
}

.submenu-dropdown {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: white;
  text-decoration: none;
  background-color: transparent;
  border: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  cursor: pointer;
}

/* === Submenu Styling === */
.submenu {
  list-style: none;
  visibility: hidden;
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition: opacity 0.3s,
    margin-top 0.4s,
    padding-top 0.4s,
    max-height 0.3s,
    transform 0.4s,
    visibility 0s linear .4s;
  background-color: var(--bg-colour-2);
  width: 160px;
  max-height: 0;
  margin: 0 auto;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;
}

/* Links inside submenu */
.submenu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}

.submenu li a:hover {
  color: var(--main-brand-blue);
}

/* Desktop Styles */
@media screen and (min-width: 1024px) {
  .nav1-toggle {
    display: none;
  }

  .nav1-ul-wrapper {
    transform: none !important;
    display: flex;
    align-items: center;
    height: auto;
  }

  .nav1-ul {
    flex-direction: row;
    gap: 1.5rem;
    padding: 0;
    font-size: 0.9rem;
  }

  .header-btn {
    display: block;
  }

  .submenu {
    position: absolute;
  }

  .has-submenu.open .submenu {
    box-shadow: none;
    background-color: var(--bg-colour-1);
    margin-top: 0;
    padding-top: 1rem;
    border-bottom: 3px solid var(--main-brand-blue);
  }
}

@media screen and (max-width: 1023px) {
    .nav1-ul-wrapper {
    width: 100%;
    height: auto;
    background-color: var(--bg-colour-1);
    transform: scaleY(0);
    transform-origin: top;
    transition: opacity .3s transform .4s;
    overflow: hidden;
    position: absolute;
    box-sizing: border-box;
    padding-bottom: 1rem;
    left: 0;
    top: 58px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  }

  .nav1-ul {
    list-style: none;
    padding: 1.5rem 0;
    margin: 0;
    max-height: 90vh;
    width: 100%;
    box-sizing: border-box;
    overflow: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav1-ul li {
    display: block;
    width: 100%;
    text-align: center;
  }

    .nav1-ul-wrapper .header-btn {
    display: flex;
    justify-content: center;
  }

  .nav1-ul-wrapper .header-btn .cta-button {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
  }
}

#scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--main-brand-blue); /* or any brand accent */
  z-index: 9999;
  transition: width 0.1s ease-out;
  will-change: width;
}

/* ===== Contact Banner Section ===== */
#contact-banner {
  background-color: var(--bg-colour-2);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

/* Glow element */
#contact-banner::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 500px;
  background: radial-gradient(
    circle, rgba(0, 179, 255, 0.2) 0%,
    rgba(0, 180, 255, 0) 70%);
  filter: blur(80px);
  pointer-events: none;  /* Ensure it doesn’t interfere with clicks */
  z-index: -1;
}

.contact-banner-con {
  padding-top: 3rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  max-width: 600px;
  padding-bottom: 3rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-banner-con h2 {
  text-align: center;
  font-size: 1.8rem;
}

.contact-banner-btn-con {
  margin: 1rem 2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 2rem;
}

.contact-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  text-align: center;
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .contact-banner-con {
    max-width: 80%;
  }

  .contact-banner-btn-con {
    width: 550px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    justify-content: space-evenly;
  }

  .contact-btn {
    width: 250px;
  }
}

/* ===== Footer Section ===== */
.site-footer {
  background: var(--bg-colour-1);
  color: var(--text-colour-1);
  padding: 2.5rem 1rem;
  border-top: 1px solid #1a1a1a;
  border-radius: 0 0 10px 10px;
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.brand-accent {
  color: var(--main-brand-blue);
  opacity: 1;
}

.footer-description {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.4;
}

/* Columns */
.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-columns h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: #ddd;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--main-brand-blue);
}

.footer-contact i {
  color: var(--main-brand-blue);
  margin-right: 0.5rem;
  width: 16px;
}

/* Bottom Row */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: #aaa;
}

.footer-socials a {
  margin-left: 1rem;
  font-size: 1rem;
  color: #aaa;
  transition: color 0.3s;
}

.footer-socials a:first-child {
  margin-left: 0;
}

.footer-socials a:hover {
  color: var(--main-brand-blue);
}

/* ===== Cards Animations ===== */
.info-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

/* Hover effect */
.info-card:hover {
  transform: translateY(0) scale(1.01); /* Slight grow */
  box-shadow: 0 0 16px #00c3ff8e; /* Glowing blue shadow */
  z-index: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* ===== Animations ===== */
@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 0 0 2px rgba(0, 191, 255, 0.7),
                 0 0 16px rgba(0, 191, 255, 0.4);
  }
  50% {
    text-shadow: 0 0 16px rgba(0, 191, 255, 0.9),
                 0 0 32px rgba(0, 191, 255, 0.6);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatGlow {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-30%, 0);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

@keyframes floatGlow2 {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-70%, 0);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

/* Initial state (hidden and slightly below) */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

/* Final state when in view */
.fade-in-up.visible {
  animation: fadeInUp 0.7s ease-out forwards;
}