* {
    margin: 0;
    padding: 0;
  }
  
  body {
    /* background: #0A0A0E; */
    font-family: 'Inter', sans-serif;
  }


/* Header with gradient overlay */
header {
    position: relative;
    /* background-image: linear-gradient(rgba(10, 10, 14, 0.9), rgba(10, 10, 14, 0.9)), 
                      url('images/hero1.png'); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    background-attachment: fixed;
    position: relative;
}


/* N/* Navbar styling */
.navbar {
    background-color: transparent; /* remove white background */
    padding: 1rem 2rem;
}

/* Nav links */
.nav-link {
    color: #ffffff !important; /* white text for contrast on hero */
    font-size: 14px;
    position: relative;
    transition: 0.3s ease-in-out;
}

/* Underline animation */
.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: #08F7FF;
    bottom: -6px;
    transition: 0.3s ease-in-out;
}

.nav-link:hover::before,
.active-link::before {
    width: 100%;
}

/* Navbar brand / logo */
.navbar-brand img {
    width: 90px; /* smaller logo */
    height: auto;
}

/* Toggler for mobile */
.navbar-toggler {
    border: 1px solid #ffffff;
}

.navbar-toggler-icon {
    filter: invert(1); /* white icon for transparent navbar */
}


.hero-content {
    position: absolute; /* still absolute for centering */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8); /* center and scale */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #08F7FF;

    /* remove horizontal padding */
    padding: 0;  

    /* max width to prevent overly long lines */
    max-width: 900px;

    /* Animation */
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    opacity: 0;
}

/* Add a class to trigger the animation */
.hero-content.show {
    transform: translate(-50%, -50%) scale(1); /* scale to full size */
    opacity: 1;
}


/* Hero text */
.hero-text h1 {
    font-family: 'Inter', sans-serif;
    font-size: 38px; /* scales between 28px and 42px depending on viewport */
    color: #08F7FF;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px; /* scales between 12px and 16px */
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 400;
}
.menu-close-btn{
    display: none;
}

.display-5{
    font-size: 28px;
    font-weight: 500;
}
.btn{
    font-size: 14px;
    font-weight: 500;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.lead{
    font-size: 14px;
}
.no{
    margin-left: 1rem;
}
.ra{
    margin-left: 1rem;
}
/* Optional: adjust spacing on smaller screens */
@media (max-width: 768px) {
    .hero-text h1 {
        margin-bottom: 0.8rem;
    }

    .hero-text p {
        margin-bottom: 1.5rem;
    }
    .menu-close-btn{
        display: block;
    }
    .no{
        margin-left: 0rem;
    }
    
}


  
 
  

/* Ensure canvas is behind everything */
canvas#network-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* behind everything */
}

Navbar and hero content on top
.navbar,
.hero-content {
    /* keep stacking context */
    z-index: 2; /* above canvas */
}


/* Hero buttons */
.hero-cta .btn {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #08F7FF;
    /*cyantext*/background: transparent;
    border: 1px solid #08F7FF;
    border-radius:0;
    /*roundedpillshape*/cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-right: 1rem;

    -webkit-border-radius:0;
    -moz-border-radius:0;
    -ms-border-radius:0;
    -o-border-radius:0;
}

/* Hover effect */
.hero-cta .btn:hover {
    background: #08F7FF;
    color: #0A0A0E; /* text turns dark on hover */
    box-shadow: 0 0 15px rgba(8, 247, 255, 0.6), 0 0 30px rgba(8, 247, 255, 0.4);
}

/* Optional: animated underline / glow inside */
.hero-cta .btn::before {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(8, 247, 255, 0.2);
    transition: width 0.4s ease;
    z-index: 0;
}

.hero-cta .btn:hover::before {
    width: 100%;
}

/* Ensure text is above the pseudo-element */
.hero-cta .btn span {
    position: relative;
    z-index: 1;
}
/* Desktop layout (default) */
@media (min-width: 992px) {
    .navbar-nav {
        margin-left: auto; /* pushes nav to right */
    }

    .menu-close-btn {
        display: none !important; /* hide close button on desktop */
    }
}

@media (max-width: 768px) {
    .hero-content {
        width: 100%;          /* stretch full width */
        max-width: 100%;      /* remove desktop restriction */
        padding: 0 20px;      /* small side padding so text doesn’t touch edges */
        transform: translate(-50%, -50%) scale(0.9); /* slightly larger on mobile */
    }

    .hero-text h1 {
        font-size: 28px;  /* cleaner size for mobile */
    }

    .hero-text p {
        font-size: 13px;
    }

    .hero-cta .btn {
        padding: 10px 22px;
        font-size: 12px;
    }
}
@media (max-width: 991px) {

    /* Hidden state — let Bootstrap control it */
    .navbar-collapse {
        width: 100%;
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        z-index: 9999;

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        background: rgba(0, 0, 0, 0.55);

        padding: 60px 30px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;

        /* REMOVE display:flex !important */
        display: none; /* collapse default */
    }

    /* When menu is open */
    .navbar-collapse.show {
        display: flex !important;
    }

    /* Close button */
    .menu-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        color: white;
        border: none;
        font-size: 28px;
        line-height: 1;
        padding: 6px 10px;
        border-radius: 8px;
        cursor: pointer;
        z-index: 10001;
        display: block;
    }

    .navbar-nav .nav-link {
        font-size: 20px;
        padding: 12px 0;
    }
    .navbar-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start !important; /* left align */
        gap: 20px;
    }
    
}
/* Mobile screens */
@media (max-width: 768px) {
    header {
        min-height: 60vh; /* reduce height on mobile */
    }
}
/* ----- MOBILE ABOUT SECTION FIX ----- */
@media (max-width: 768px) {

    /* Parent container becomes vertical */
    .bb.ze.ki.xn.wq .tc.wf.gg.qq {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem; /* spacing between images & text */
    }
  
    /* Image cluster full width and centered */
    .animate_left {
      width: 100%;
      display: flex;
      justify-content: center;
    }
  
    .animate_left > div {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .animate_left img {
      max-width: 90%;
      height: auto;
    }
  
    /* Text block full width */
    .animate_right {
      width: 100%;
      text-align: center;
    }
  
    .animate_right h2,
    .animate_right h4,
    .animate_right p {
      text-align: center;
    }
  
    /* Video button centered */
    .animate_right a {
      justify-content: center;
    }
    .pc {
        position: absolute;
        top: 42%; /* slightly higher than center */
        right: 20px;
        transform: translateY(-50%);
        z-index: 10000;
    }
    
  }
  
  