

<style>
      /* Add this near the top or where body styles are defined */



/* Ensure logo stays on top of the forms */
body {
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  align-items: center;    /* Center horizontally */
  justify-content: flex-start;
  min-height: 100vh;
  margin: 0;
}



.top-logo {
  display: block;
  margin: 20px auto;
  width: 80px;       /* or smaller if needed */
  height: auto;      /* keeps correct proportions */
  max-height: 80px;  /* ensures it never gets too tall */
  object-fit: contain;
}
.site-logo {
  display:table-column;
  
  height: auto;        /* keeps proportions */
  max-height: 152px;   /* ensures it never grows too tall */
  object-fit: contain;
}



/* Container for the top logo with white background */
.logo-container {
  background-color: black;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position:  fixed;
  z-index: 1000; /* So it’s above the body bg */
}




        a {
            color: #31aff8;
            font-weight: bold;
        }



       
       
        /* Right Navigation Bar */
.right-nav {
    position: fixed;
    top: 60%;
    right: 5%;
    width: 40%;
    padding: 21px;
    background-color: #00000008;
    color: #31aff8;
    z-index: 1000;
    box-shadow: -2px 0px 10px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    font-family: 'Courier New', monospace;
    height: auto; /* ✅ stops at content */
    transform: translateY(-50%); /* ✅ keep centered on desktop */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .right-nav {
        position: relative;
        top: auto;
        bottom: 10px;
        right: auto;
        transform: none;      /* remove vertical centering */
        width: 100%;          /* full width */
        height: auto;         /* natural height */
        padding: 15px;        /* smaller padding */
        font-size: 0.9rem;    /* optional smaller font */
    }
}


.info-nav {
    background-image: url('/pick.png'); /* Because it's in /var/www/html */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    color: white;
    font-weight: bold;
}
.centered-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.centered-button form,
.centered-button span {
    margin: 0 auto;
}




      hr {
  border: none; /* Remove default border */
  height: 2px;  /* Adjust thickness */
  background-color: #bc13fe; /* Neon color base */
  margin-bottom: 10px;
  box-shadow:
    0 0 7px #fff,
    0 0 10px #fff,
    0 0 21px #fff,
    0 0 42px #bc13fe,
    0 0 82px #bc13fe,
    0 0 92px #bc13fe,
    0 0 102px #bc13fe,
    0 0 151px #bc13fe;
}

        .nav-button {
            padding: 10px;
            color: #31aff8;
            cursor: pointer;
        }

        .nav-button:hover {
            background-color: #646363ab;
        }

        .nav-toggle {
            display: none;
        }
/* make the whole button clickable & align icon+text */
.nav-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;              /* space between icon and text */
  padding: 10px;
  color: #31aff8;
  text-decoration: none; /* anchors inherit this */
}

.nav-button:hover {
  background: #646363ab;
border-radius: 8px;
}

/* tooltip */
.tooltip-text {
  position: absolute;
  left: 50%;            /* to the right of the button */
  top: 100%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 20px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s;
  z-index: 100;
}

.tooltip-trigger:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}
.nav-button a {
    text-decoration: none;
    color: #31aff8;
    font-weight: bold;
}
#nav-header {
    text-align: center;
    margin-bottom: 6px;
}

#nav-title {
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    display: block;
    color: #31aff8;
    padding: 10px 0;
}
.tooltip-trigger {
  position: relative;
  display: inline-block;
}
.welcome-text {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.tech-logos img {
    height:90px;              /* any size you prefer */
    width: 80px;
}

    .left-nav{
    
    width: 125px;
    height: auto;
    background-color: transparent;  
    padding: 15px 10px;
    box-shadow: none;
    z-index: 1000;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.tooltip-trigger .tooltip-text {
  visibility: hidden;
  width: 140px; /* make it bigger */
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px 12px; /* bigger padding for bigger tooltip */
  border-radius: 4px;
  
  /* Positioning */
  position: absolute;
  z-index: 1;
  top: 50%; /* vertically centered */
  right: 125%; /* position to the left with some gap */
  transform: translateY(-50%);
  
  /* Fade in */
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip-trigger:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
.modal-left {
  display: none;
  position: fixed;
  top: 60%;
  left: 20%;
  transform: translate(-50%, -60%);
background-color: transparent; 
  padding: 20px 30px;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 0 10px #31aff8;
  max-width: 500px;
  z-index: 9999;
  font-size: 1.5rem; /* list text size */
  margin-bottom: 10px;
  
}


.modal-content h2 {
  margin-top: 0;
  color: #31aff8;
}
/* Animation for slide in/out */
.left-nav .tech-logos {
    position: fixed;
    top: 58%;
    left: 15%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 999;
    background-color: transparent;

    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 px;
    display: flex;
    gap: 10px;
}
.left-nav .tech-logos.visible {
    transform: translate(-50%, -50%) scale(1); 
    opacity: 1;
}
.second-left-tech-logos {
  background-color: rgba(0, 0, 0, 0.3); /* Optional background */
  padding: 10px;
  margin-top: 20px;
  border-radius: 8px;
}

.second-left-tech-logos .tech-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
}

.second-left-tech-logos img {
  height: 90px;
  width: 130;
  transition: transform 0.3s ease;
}

.second-left-tech-logos img:hover {
  transform: scale(1.1);
}
.second-left-tech-logos {
    position: fixed;
    top: 43%;  /* adjust vertical position so it doesn’t overlap first */
    left: 27%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;main
    transition: all 0.6s ease;
    z-index: 999;
   background-color: transparent;
  /* OR if you want a subtle dark overlay */
   

    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 px;
    display: flex;
    gap: 9px;
    flex-direction: row;  /* keep vertical */
    align-items: center;
}

.second-left-tech-logos.visible {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Container layout */
.popup-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 10px;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  animation-delay: 1s;
}

.neonText {
  color: #fff;
  text-shadow:
    0 0 7px #fff,
    0 0 10px #fff,
    0 0 21px #fff,
    0 0 42px #bc13fe,
    0 0 82px #bc13fe,
    0 0 92px #bc13fe,
    0 0 102px #bc13fe,
    0 0 151px #bc13fe;
  font-family:  monospace;
  font-size: 2.0rem; /* adjust size as needed */
  animation: pulsate 3.0s infinite alternate;
  border:;
  border-radius: 1rem;
  padding: 0.2em 0.6em;
  box-shadow:
    0 0 .2rem #fff,
    0 0 .2rem #fff,
    0 0 2rem #bc13fe,
    0 0 0.8rem #bc13fe,
    0 0 2.8rem #bc13fe,
    inset 0 0 1.3rem #bc13fe;
}
#chat-button-container {
  position: fixed;
  top: 50%;
  left: 250px;              /* distance from left edge */
  transform: translateY(-50%);
  z-index: 10000;          /* above most elements */
  width: auto;
}


@keyframes pulsate {
  0% {
    text-shadow:
      0 0 2px #fff,
      0 0 4px #fff,
      0 0 6px #fff,
      0 0 10px #bc13fe,
      0 0 45px #bc13fe,
      0 0 55px #bc13fe,
      0 0 70px #bc13fe,
      0 0 80px #bc13fe;
  }
  100% {
    text-shadow:
      0 0 4px #fff,
      0 0 11px #fff,
      0 0 19px #fff,
      0 0 40px #bc13fe,
      0 0 80px #bc13fe,
      0 0 90px #bc13fe,
      0 0 100px #bc13fe,
      0 0 150px #bc13fe;
  }
}
@keyframes glitchBlink {
  0%, 100% {
    opacity: 1;
    transform: translate(0, 0);
    text-shadow:
      0 0 3px #0ff,
      0 0 5px #0ff,
      0 0 10px #0ff,
      0 0 20px #0ff;
  }
  20% {
    opacity: 0.8;
    transform: translate(1px, -1px);
  }
  40% {
    opacity: 0.5;
    transform: translate(-2px, 2px);
    text-shadow:
      0 0 2px #f0f,
      0 0 4px #f0f,
      0 0 6px #f0f;
  }
  60% {
    opacity: 0.7;
    transform: translate(2px, -2px);
  }
  80% {
    opacity: 1;
    transform: translate(-1px, 1px);
    text-shadow:
      0 0 2px #0ff,
      0 0 4px #0ff,
      0 0 8px #0ff;
  }
}

.glitch-blink {
  animation: glitchBlink 1.2s infinite;
}
footer p {
  text-align: center;
  margin: 0; /* optional: removes default margin */

}

@keyframes pulsate {
  0% {
    text-shadow:
      0 0 2px #fff,
      0 0 4px #fff,
      0 0 6px #fff,
      0 0 10px #bc13fe,
      0 0 45px #bc13fe,
      0 0 55px #bc13fe,
      0 0 70px #bc13fe,
      0 0 80px #bc13fe;
  }
  100% {
    text-shadow:
      0 0 4px #fff,
      0 0 11px #fff,
      0 0 19px #fff,
      0 0 40px #bc13fe,
      0 0 80px #bc13fe,
      0 0 90px #bc13fe,
      0 0 100px #bc13fe,
      0 0 150px #bc13fe;
  }
}
@keyframes glitchBlink {
  0%, 100% {
    opacity: 1;
    transform: translate(0, 0);
    text-shadow:
      0 0 3px #0ff,
      0 0 5px #0ff,
      0 0 10px #0ff,
      0 0 20px #0ff;
  }
  20% {
    opacity: 0.8;
    transform: translate(1px, -1px);
  }
  40% {
    opacity: 0.5;
    transform: translate(-2px, 2px);
    text-shadow:
      0 0 2px #f0f,
      0 0 4px #f0f,
      0 0 6px #f0f;
  }
  60% {
    opacity: 0.7;
    transform: translate(2px, -2px);
  }
  80% {
    opacity: 1;
    transform: translate(-1px, 1px);
    text-shadow:
      0 0 2px #0ff,
      0 0 4px #0ff,
      0 0 8px #0ff;
  }
}

.glitch-blink {
  animation: glitchBlink 1.2s infinite;
}
footer p {
  text-align: center;
color: #31aff8;
  margin: 0; /* optional: removes default margin */
}
/* Wrapper positions */
.system-hardening-wrapper,
.defence-coding-wrapper {
  position: relative;
}

/* Hover box shared styles */
.hover-accessibility {
  display: none;
  position: absolute;
  top: 100%;
  left: -240px; /* adjust as needed */
  background-color: rgba(15, 15, 15, 0.95);
  color: #0ff;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #0ff;
  box-shadow: 0 0 8px #0ff, 0 0 16px #0ff;
  z-index: 999;
  animation: floatIn 0.4s ease;
  width: 220px;
}

/* Tool list styles */
.hover-accessibility .tool-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hover-accessibility .tool-list li {
  padding: 5px 0;
  color: #0ff;
  font-family: 'Courier New', monospace;
  transition: transform 0.2s ease, text-shadow 0.2s ease;
}

.hover-accessibility .tool-list li:hover {
  transform: translateX(5px);
  text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
}

/* Animation */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover activation rules */
.system-hardening-wrapper:hover .hover-accessibility,
.defence-coding-wrapper:hover .hover-accessibility {
  display: block;
}
.runtimeshop-wrapper {
  position: relative;
}

.runtimeshop-wrapper:hover .hover-accessibility {
  display: block;
}
.tooltip-trigger {
  position: relative;
  cursor: pointer;
}

.tooltip-text {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #222;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 100;
}

.tooltip-trigger:hover .tooltip-text,
.tooltip-trigger:hover .hover-accessibility {
  display: block;
}
.dev-profile-card {
    position: relative;
    cursor: pointer;
    padding: 6px 9px;
    background: #111;
    border-left: 6px solid #0ff;
    border-radius: 12px;
    color: #0ff;
    max-width: 300px;
    font-family: 'Courier New', monospace;

    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    margin: 14px 0;
}

.badge-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.badge-hover-desc {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 110%;
    left: 0;
    background: #222;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    color: #ccc;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
    transition: opacity 0.3s ease;
    z-index: 10;
}

.dev-profile-card:hover .badge-hover-desc {
    visibility: visible;
    opacity: 1;
}

/* Badge border colors */
.badge-frontend {
    border-left-color: #6c5ce7;
}

.badge-laddr {
    background-color: #222;
    border-left: 5px solid #f39c12;
    padding: 10px;
    color: #f39c12;
    margin: 10px 0;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.6);
    transition: all 0.3s ease-in-out;
}

.badge-fullstacker {
    border-left-color: #2d3436;
}
.map-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem auto;
  padding: 1rem;
  max-width: 3000px;
}

.map-card {
  background: var(--surface-3, #1a1a1a);
  border: 1px solid #0ff;
  color: #0ff;
  border-radius: 1rem;
  padding: 1.5rem;
  width: 250px;
  box-shadow: 0 0 10px #0ff2;
  transition: transform 0.3s;
}

.map-card:hover {
  transform: translateY(-5px);
}

.map-icon {
  margin-right: 0.5rem;
  color: #0ff;
}
.profile-map-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease-in-out;
  margin-top: 2rem;
  padding-left: 1rem;
}


/* Move profile card slightly left when hovered */
.profile-map-wrapper:hover .dev-profile-card {
  transform: translateX(-20px);
  transition: transform 0.3s ease;
}

/* Optional: Smooth fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.text {
    font-family: "Yanone Kaffeesatz";
    font-size: 30px;
    display: flex;
    position: absolute;
    bottom: 23vh;
    left: 50%;
    transform: translateX(-50%);
    user-select: none;
}
.invert-logo {
  filter: invert(100%);
}
/* Base vertical map layout */
.map-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem;
  border-radius: 0 8px 8px 0;
  max-width: 150px;
  width: 100%;
  box-sizing: border-box;
  z-index: 1;
  pointer-events: none;
}

/* Node (circle with glowing border) */
.node {
  background: #161b22;
  border: 3px solid #58a6ff;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  box-shadow: 0 0 10px #58a6ff;
  transition: background 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
  color: white;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

/* Hover effect */
.node:hover {
  background: #238636;
  transform: scale(1.1);
}

/* Links inside node */
.node a {
  color: white;
  text-decoration: none;
  line-height: 1.2;
  pointer-events: auto;
}

/* Connecting line between nodes */
.line {
  width: 4px;
  height: 80px;
  background: #58a6ff;
  margin: 10px auto;
  box-shadow: 0 0 8px #58a6ff;
  border-radius: 3px;
}

/* Mini lesson list (hidden by default) */
.lesson-list {
  display: none;
  margin: 10px 0 20px 0;
  padding-left: 10px;
  border-left: 2px dashed #888;
}

.node.open + .lesson-list {
  display: block;
}

.node a {
  color: white;
  text-decoration: none;
  line-height: 1.2;
  pointer-events: auto;
}

/* Connecting line between nodes */
.line {
  width: 6px;
  height: 30px;
  background: #58a6ff;
  margin: 10px auto;
  box-shadow: 0 0 8px #58a6ff;
  border-radius: 3px;
}

/* Mini lesson list (hidden by default) */
.lesson-list {
  display: none;
  margin: 10px 0 20px 0;
  padding-left: 10px;
  border-left: 2px dashed #888;
}

.node.open + .lesson-list {
  display: block;
}
/* === Sticky Logo on Mobile === */
@media (max-width: 768px) {
  .logo-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #0a0a0a;
    padding: 10px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }
}
 


 

  #chat-button-container {
    position: absolute;
    top: auto;
    left: 18% ;
    transform: none;
    margin: 15px auto 0;
    display: flex;
    justify-content: ;
    width: 70%;
  }

  


#left-map {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  background: #0a0a0a03;
  color: #0ff;
  overflow-y: auto;
  padding: 1rem;
  border-right: 1px solid #ede6e10a;
  z-index: 2000;

  /* Start hidden by sliding off-screen */
  transform: translateX(-100%);
  transition: transform 0.3s ease;  /* smooth slide */
}

#left-map.show {
  transform: translateX(0); /* slide in from left */
}



/* Mobile slide from bottom */
@media (max-width: 768px) {
  #left-map {
    transform: translateY(100%);
  }

  #left-map.show {
    transform: translateY(0);
  }

#left-map-btn {
  background: linear-gradient(135deg, #31aff8, #0a84ff);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Hover effect */
#left-map-btn:hover {
  background: linear-gradient(135deg, #0a84ff, #31aff8);
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* When hidden by JS */
#left-map-btn.hidden {
  display: none;
}

/* === Close Map Button === */
#close-map-btn {
  background: #ff4d4d;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background 0.3s ease;
}

#close-map-btn:hover {
  background: #e60000;
}
body {
  background-color: black;
 
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}



/* --- Main Buttons --- */
.toggle-btn {
  background: transparent;
  color: #31aff8;
  border: 2px solid #31aff8;
  border-radius: 30px;
  padding: 10px 30px;
  margin: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  text-transform: uppercase;
}



.toggle-btn:hover {
  background: #31aff8;
  color: black;
  box-shadow: 0 0 15px #31aff8;
}

/* --- Inputs --- */
input, select {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 20px;
  border: 1px solid #31aff8;
  background: black;
  color: #31aff8;
  text-align: center;
  transition: all 0.3s ease;
}

input:focus, select:focus {
  outline: none;
  box-shadow: 0 0 10px #31aff8;
}

/* --- Submit Button --- */
button[type="submit"] {
  background: #31aff8;
  color: black;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
}


/* === Active Form (Animated In) === */
.form-container.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: bubbleDrop 0.5s ease forwards;
}


/* === Bubble Animation === */
@keyframes bubbleDrop {
  0% {
    opacity: 0;
    transform: translateY(-25px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateY(5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }



/* === Form Elements === */
.form-container h3 {
  color: #31aff8;
  margin-bottom: 15px;
  font-size: 1.4rem;
  text-shadow: 0 0 10px #31aff8;
}

label {
  display: block;
  color: #a3e7ff;
  font-size: 0.9rem;
  text-align: left;
  margin-top: 10px;
}

input, select {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1rem;
  box-shadow: inset 0 0 8px #31aff8;
  transition: all 0.2s ease-in-out;
}

input:focus, select:focus {
  box-shadow: 0 0 15px #31aff8;
}

/* === Submit Buttons === */
button[type="submit"], #signup-button {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  background: #31aff8;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
}
					
button[type="submit"]:hover, #signup-button:hover {
  box-shadow: 0 0 15px #31aff8;
  background: #4fd3ff;
}
@keyframes bubbleDrop {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
/* --- Universal Bubble Style --- */
.form-container {
  background: rgba(20, 20, 20, 0.9) !important;
  border: 2px solid #31aff8 !important;
  border-radius: 25px !important;
  padding: 30px 25px !important;
  width: 320px !important;
  margin: 20px auto !important;
  box-shadow: 0 0 25px rgba(49,175,248,0.8) !important;
  backdrop-filter: blur(12px) !important;
  transition: all 0.4s ease !important;
}
/* === MAIN FORM STYLING === */
.form-container {
  display: none;
  opacity: 0;
  pointer-events: none;
  background: rgba(20, 20, 20, 0.9);
  border: 2px solid #31aff8;
  box-shadow: 0 0 25px rgba(49, 175, 248, 0.8);
  border-radius: 25px;
  padding: 30px 25px;
  width: 320px;
  margin: 20px auto;
  position: relative;
  z-index: 10;
  backdrop-filter: blur(12px);
  transform: translateY(-25px);
  transition: all 0.4s ease;
}

.form-container.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: bubbleDrop 0.5s ease forwards;
}

.form-container h3 {
  color: #31aff8;
  margin-bottom: 15px;
  font-size: 1.4rem;
  text-shadow: 0 0 10px #31aff8;
}

label {
  display: block;
  color: #a3e7ff;
  font-size: 0.9rem;
  text-align: left;
  margin-top: 10px;
}

input, select {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1rem;
  box-shadow: inset 0 0 8px #31aff8;
  transition: all 0.2s ease-in-out;
}

input:focus, select:focus {
  box-shadow: 0 0 15px #31aff8;
}


button[type="submit"], #signup-button {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  background: #31aff8;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
}

button[type="submit"]:hover, #signup-button:hover {
  box-shadow: 0 0 15px #31aff8;
  background: #4fd3ff;
}

/* === BUTTONS === */
.toggle-btn {
  background: transparent;
  color: #31aff8;
  border: 2px solid #31aff8;
  border-radius: 40px;
  padding: 12px 40px;
  margin: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
/* Inquiry Modal */
#inquiryModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: flex;
}

#inquiryModal .modal-card {
  background: #0d1117;
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
  width: 90%;
  height: 80%;
  position: relative;
}

#inquiryModal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

#inquiryModal .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #00ffff;
  cursor: pointer;
}


.toggle-btn:hover {
  background: #31aff8;
  color: #000;
  box-shadow: 0 0 15px #31aff8;
}
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; /* keeps it behind all other elements */
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}


/* Inquiry Modal Overlay */
#inquiryModal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px); /* Safari support */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease;
}

/* Modal Card */
.modal-card {
  background: #0d1117;
  border: 2px solid #00ffff;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
  padding: 20px;
  width: 85%;
  max-width: 800px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* Iframe Styling */
#inquiryFrame {
  width: 100%;
  height: 70vh;
  border: none;
  border-radius: 8px;
  background: #111;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  background: #00ffff;
  color: #0d1117;
  font-size: 22px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 4px 10px;
  transition: 0.3s;
}
.close-btn:hover {
  background: #00cccc;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}


/* Smooth animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
</style>




/* === ANIMATIONS === */
@keyframes bubbleDrop {
  0% { opacity: 0; transform: translateY(-25px) scale(0.9); }
  60% { opacity: 1; transform: translateY(5px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.main {
  display: flex;
  flex-direction: column;
  align-items: center;
};



