html,
body {
  margin: 0;
  padding: 0;
}

/* Typography */
h1, h2, h3, .heading, .logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; /* or 800 for extra strong */
}
h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}
body, p, li, .text-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}
.nav-main .nav-link,
.nav-main .navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  letter-spacing: 0.5px;
}
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
}


/* Generic navbar styling – used on all pages */
.nav-main .navbar-brand,
.nav-main .nav-link {
      color: #fff !important;
}

.nav-main .nav-link:hover,
.nav-main .nav-link:focus {
  color: #A3B3C9 !important;
}

.nav-main .navbar-toggler {
  border-color: #fff(255, 255, 255, 0.5);
}

.nav-main .navbar-toggler-icon {
  filter: invert(1);
}

.nav-item{margin:5px; font-size:1rem}

.navbar-fade {
  opacity: 0;
  animation: navbarFadeIn 0.8s ease forwards;
  animation-delay: 1.3s; /* adjust if needed */
}

.nav-logo{
  height: 80px;
  width:auto;
}

 @media (max-width: 991.98px) {
#mainNavbar {
  background-color: rgba(1, 15, 40, 0.9); /* last value = transparency (0–1) */
  padding: 2rem;
  margin-top: 1rem;
}

  .nav-main-header {
    min-height: 120px !important;      /* background area grows */
    background-size: cover !important;  /* make sure image expands */
    background-position: center top !important; /* avoid cropping */
  }

  .nav-logo{
  height: 40px;
}
}



@keyframes navbarFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px); /* tiny lift for elegance */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.cta-neon {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  font-size: 1.1rem;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  color: #ffffff;

  background: #010f28;   /* your extracted deep purple */
  border: none;        /* electric blue neon edge */

  /* Electric blue outer glow */
  box-shadow:
    0 0 6px rgba(46, 232, 255, 0.85),
    0 0 10px rgba(46, 232, 255, 0.55);

  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Hover state — deeper purple + brighter electric glow */
.cta-neon:hover {
  background: #031534;
  color: #ffffff;
  box-shadow:
    0 0 18px rgba(46, 232, 255, 0.85),
    0 0 36px rgba(46, 232, 255, 0.55);
}

.cta-neon:hover::before {
  opacity: 1;
}

.hero {
  display: grid;
  position: relative;
  grid-template-columns: 100vw;
  grid-template-rows: 100vh;
  place-items: center;
  overflow: hidden;
  animation: clip-hero-anim 1.25s cubic-bezier(0.29, 0.8, 0.8, 0.98);
  will-change: clip-path;
}


.front-page-logo-img{
  height: 50vh;
}


 @media (max-width: 991.98px) {
.front-page-logo-img{
  height: 30vh;
}
}

/* Shared layout for background and content */
.hero__bg,
.hero__cnt {
  align-self: center;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

/* Background layer */
.hero__bg {
  display: grid;
  position: relative;
  z-index: 0;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  place-items: center;
  animation: fade-in 0.75s linear;
  will-change: opacity;
}

/* Dark purple overlay on background */
.hero__bg::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 5;
  top: -10%;
  right: -10%;
  bottom: -10%;
  left: -10%;
  background: rgba(41, 4, 47, 0.4); /* rgba(#29042f, 0.4) */
  background-blend-mode: screen;
}

.hero__bg picture {
  display: flex;
  height: 100vh;
  width: 100vw;
  animation: scaling-hero-anim 4s 0.25s cubic-bezier(0, 0.71, 0.4, 0.97) forwards;
  will-change: transform;
}

.hero__bg img {
  display: block;
  object-fit: cover;
  object-position: 77% 50%;
  height: auto;
  width: 100%;
}

/* Content layer (logo + heading) */
.hero__cnt {
  display: grid;
  position: relative;
  place-items: center;
  z-index: 10;
  color: #FFFFFF;
  font-size: 2.5vw;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-in 0.75s 1.5s linear forwards;
}

.hero__cnt svg {
  height: 12vw;
}

.hero__cnt svg path {
  fill: #FFFFFF;
}

.hero__cnt h1 {
  margin-bottom: 0;
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaling-hero-anim {
  from {
    transform: scale(1.25);
  }
  to {
    transform: scale(1.1);
  }
}

@keyframes clip-hero-anim {
  from {
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

