

/* navbar styling */

/* Modern Nav Styling */
nav {
  background: linear-gradient(135deg, #2c3e50, #3498db);
  padding: 1rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /*border-radius: 8px;*/
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Active link styling */
nav ul li a.active {
  background-color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

/* / navbar styling */


/* background with capacity to add particles.js */
/* Site Background & Nav Styling for Particles.js Overlay */

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Particles.js container */
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

/* / background with capacity to add particles.js */


/* title */

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  margin-right: 2rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand:hover {
  color: #3498db;
  transition: color 0.3s ease;
}

.navbar-brand::after {
  content: '';
  width: 2px;
  height: 1.2rem;
  background: #3498db;
  display: inline-block;
  margin-left: 0.5rem;
}

/* / title */



