* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: linear-gradient(135deg, #667eea, #f4ae5f);
  min-height: 100vh;
  color: #111;
  background-image: url('../img/img.png'); /* Ensure the image is in the same folder as this HTML file */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  
  z-index: -1;
}


.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 50px;

}

    /* ===== NAVBAR STYLES ===== */
   /* Create a top navigation bar with a black background color  */
   .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 20px;
}
.topnav {
  width: 100%;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: right;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
 a {
      color: #0077cc; /* default link color */
      text-decoration: none;
    }

    a:hover {
      color: #ff6600; /* color when hovered */
      text-decoration: none; /* optional effect */
    }


/* Create a right-aligned (split) link inside the navigation bar */
.topnav a.split {
  float: left;
  padding: 0px;
}
 .linkcss
        {
            text-decoration: none;
            color:rgb(239, 130, 29);
            font-weight: bold;
        }


h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.accordion-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.accordion-header {
  width: 100%;
  padding: 18px 20px;
  background: #f4ae5f;
  color: white;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
}

.accordion-header:hover {
  background: #5a67d8;
}

.icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: auto;
  transition: max-height 0.4s ease;
  background: #f9f9ff;
}

.accordion-content ul {
  padding: 15px 25px;
}

.accordion-content li {
  padding: 8px 0;
  color: #444;
}

/* Active state */
.accordion-item.active .accordion-content {
  max-height: 300px;
}

.accordion-item.active .icon {
  transform: rotate(45deg); /* + becomes × */
}

/* Mobile responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 22px;
  }
  .accordion-header {
    font-size: 15px;
  }
}
.linkcss{
  text-decoration: none;
}
.footer-buttons {
 
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 20px;
  display: flex;
  justify-content: right;
  gap: 15px;
}