    body {
      background-color: #000;
      color: #e0e0e0;
      font-family: 'Segoe UI', sans-serif;
      scroll-behavior: smooth;

    }
    h1, h2, h3, h4, h5 {
      font-family: 'Orbitron', sans-serif;
      color: #00bfff;
    }
    .permanent-marker-regular {
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
  margin-top: 20px;
}

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

  a {
    text-decoration: none;
  }
  
/* Base Navbar Styling */
.navbar {
    background: linear-gradient(90deg, #1f202060, #2f81ed91);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  box-shadow: 0 2px 15px rgba(0, 191, 255, 0.2);
  padding: 1rem 2rem;
  font-family: 'Poppins', sans-serif;
  position: sticky;
  top: 0;
  z-index: 1100;
  overflow: hidden;
}

/* Brand */
.navbar-brand {
  font-family: 'Permanent Marker', cursive;
  font-size: 2.2rem;
  color: #00bfff !important;
  letter-spacing: 2px;
  font-weight: 900;
  user-select: none;
  transition: color 0.3s ease;
  margin-left: 20px;
left: 0;
}

.navbar-brand:hover {
  color: #33cfff !important;
  cursor: pointer;
}

/* Nav links */
.navbar-nav .nav-link {
  color: #bbb !important;
  margin-left: 1.25rem;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
}

/* Nav link underline effect */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2.5px;
  background-color: #00bfff;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #00bfff !important;
  transform: scale(1.05);
}

/* FAQ & Blog Icons */
.faq-blog-link img {
  width: 20px;
  margin-right: 6px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.faq-blog-link:hover img {
  filter: drop-shadow(0 0 5px #00bfff);
}

/* Dropdown menu */
.dropdown-menu {
  background-color: #1a1a1a;
  border-radius: 0.6rem;
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.3);
  border: none;
  padding: 0.75rem 0;
  min-width: 14rem;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1050;
}

/* Show dropdown on hover or focus */
.navbar-nav .dropdown:hover .dropdown-menu,
.navbar-nav .dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown items */
.dropdown-item {
  color: #ddd;
  padding: 0.5rem 1.75rem;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 0.3rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #004a80;
  color: #00bfff;
  outline: none;
}

/* Navbar toggler */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  outline: none;
  transition: transform 0.3s ease;
  z-index: 1200;
}

/* Toggler icon */
.navbar-toggler-icon {
  width: 28px;
  height: 3px;
  background-color: #00bfff;
  display: block;
  position: relative;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 3px;
  background-color: #00bfff;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

/* Toggler open animation */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* CTA button */
.btn-cta {
  background: linear-gradient(90deg, #56ccf2, #2f80ed);
  color: #fff;
  font-weight: 700;
  padding: 0.65rem 1.75rem;
  font-size: 1.15rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 0 12px rgba(241, 239, 239, 0.7);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.btn-cta:hover,
.btn-cta:focus {
  background: linear-gradient(135deg, #2f80ed, #56ccf2);
  box-shadow: 0 0 20px rgba(46, 44, 44, 0.356);
  color: #fff;
  outline: none;
  transform: scale(1.05);
}

/* Responsive styling */
@media (max-width: 991.98px) {
  .navbar {
    padding: 0.75rem 1rem;
  }
  .navbar-brand {
    font-size: 1.8rem;
  }
  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transform: none !important; /* override hover scale on mobile */
  }
  .navbar-nav .nav-link::after {
    display: none; /* remove underline effect on small */
  }
  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background-color: #111 !important;
  }
  .dropdown-item {
    padding-left: 2rem;
  }
  .btn-cta {
    width: 100%;
    margin-top: 1rem;
    border-radius: 0.5rem;
    font-size: 1.1rem;
  }
  /* Navbar toggler size bigger and easier to tap */
  .navbar-toggler {
    padding: 0.5rem 1rem;
  }
  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    width: 30px;
    height: 4px;
  }
  .navbar-toggler-icon::before {
    top: -10px;
  }
  .navbar-toggler-icon::after {
    top: 10px;
  }
}

/* Base */
body {
  background-color: #0a0a0a;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

/* Hero */
.about-hero {
  height: 70vh;
  background: url('images/blue.jpg') no-repeat center/cover;
  position: relative;
}
.about-overlay {
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-title {
  font-size: 3rem;
  color: #00bfff;
  text-shadow: 0 0 15px #00bfff;
}
.about-subtitle {
  font-size: 1.25rem;
  color: #ccc;
  margin-top: 10px;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2rem;
  color: #00bfff;
  text-shadow: 0 0 8px #00bfff;
  margin-bottom: 10px;
}
.section-desc {
  text-align: center;
  color: #ffffff;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Team Section */
.team-section {
  background-color: #111;
  padding: 60px 20px;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding-top: 20px;
}
.team-member {
  background-color: #1a1a1a;
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
}
.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}
.team-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #00bfff;
  object-fit: cover;
  margin-bottom: 10px;
}
.mission-section{
   background: linear-gradient(135deg, #2c505f, #2b7188, #0f172a);
  color: #fff;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 5rem 2rem;
  clip-path: polygon(0 0, 100% 3%, 100% 97%, 0% 100%);
  position: relative;
  overflow: hidden;
}
/* CTA */
.cta-section {
  border-top: 3px solid #009fd9;
  background-color: #0d0d0d;
  text-align: center;
  padding: 60px 20px;
  border-bottom:3px solid #009fd9;
}
.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}
.cta-button {
  background-color: #00bfff;
  color: #fff;
  padding: 14px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background-color: #009fd9;
  box-shadow: 0 0 15px #00bfff;
}

  
  #page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: none;
  }
  
  .spinner {
    border: 5px solid #444;
    border-top: 5px solid #00bfff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 0.9s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
       /* Footer */
     footer {
        background-color: #111;
        border-top: 1px solid #333;
      }
      
      footer h3 {
        color: #00bfff;
        margin-bottom: 0.5rem;
      }
      
      footer p {
        font-size: 0.9rem;
        color: #aaa;
      }
     h1, h2, h3, h4, h5 {
      font-family: 'Orbitron', sans-serif;
      color: #00bfff;
    }

 /* Modal Background Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Modal Box */
.modal-box {
  background: linear-gradient(to right, #3a47d5, #165361);
  padding: 30px 40px;
  border-radius: 12px;
  color: white;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
  position: relative;
  text-align: center;
  animation: popupFade 0.3s ease;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}

/* Form Styling */
.modal-box input,
.modal-box textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  font-family: inherit;
}

.modal-box button {
  background-color: white;
  color: #3a47d5;
  border: none;
  padding: 10px 18px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  
}

.modal-box button:hover {
  background-color: #eaeaea;
}

/* Animation */
@keyframes popupFade {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.btn-cta{
  width: 20%;
  margin-bottom: 22px;
}
  .bcontainer{
        border-top: 5px solid #009acd;
        padding: 20px; 
        background: linear-gradient(to right, #040d6d, #104e5c);
      }