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

/* Navbar stays above */
#navbar-container {
  position: relative;
  z-index: 1000;
}

/* Parallax Section */
.parallax {
  background-image: url("../Images/image1.png"); /* ✅ consistent path */
  min-height: 80vh;            /* taller for hero look */
  background-attachment: fixed; /* parallax effect */
  background-position: center;  
  background-repeat: no-repeat; 
  background-size: cover;       /* fills fully */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
  text-align: center;
  margin:0;
}

.parallax::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* overlay for readability */
}

.parallax-content {
  position: relative;
  z-index: 2;
}

.parallax-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.parallax-content p {
  font-size: 1.3rem;
}

/* Section styling */
section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #222;
}

/* Collapsible */
.collapsible {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin: 15px 0;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.collapsible-header {
  cursor: pointer;
  padding: 15px 20px;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fdfdfd;
}

.toggle-icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.2s;
}

.collapsible.active .toggle-icon {
  transform: rotate(45deg); /* plus → cross */
}

.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
  background: #fff;
}

.collapsible.active .collapsible-content {
  max-height: 2000px; /* big enough to expand */
  padding: 15px 20px;
}

/* ✅ Content Lists (not navbar) */
section ul {
  padding-left: 20px;
}

section ul li {
  margin: 8px 0;
  list-style: disc; /* normal bullets for content */
}

/* ✅ Navbar Lists (always no bullets) */
.navbar ul {
  list-style: none;

}

.navbar ul li {
  list-style: none;
}

