/* Navbar Styling (unchanged) */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-link{
  font-size: 1rem;
  font-weight: bold;
}

.navbar-logo {
  width: 180px;
  height: 50px;
}

.wattsapp-float {
  z-index: 9999;
  position: fixed;
  bottom: 40px;
  right: 5px;
}

.phone-float {
  z-index: 9999;
  position: fixed;
  bottom: 110px;
  right: 5px;
}


/* pdf form and all  */

.main-container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #02007d;
  text-align: center;
}
p{
  text-align: center;
  text-decoration: solid;
}

form {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-group {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

input, .btn {
  padding: 10px;
  font-size: 16px;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.btn {
  background: #28a745;
  color: white;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #218838;
}

.folder-container {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  gap: 10px;
}

.folder-container button {
  background: #00006c;
  padding: 10px;
  color: white;
  border-radius: 20px;
  cursor: pointer;
}

.folder-container button:hover {
  background: #ffffff;
  color: #00006c;
  border: 1px solid #00006c;
}

.hidden {
  display: none;
}

#pdf-list {
  margin-top: 20px;
}

#pdf-list a {
  display: block;
  margin: 5px 0;
  text-decoration: none;
  color: #080065;
  font-weight: bold;
}

#pdf-list a:hover {
  text-decoration: underline;
}


/* 6th part- footer */
.footer {
  background-color: #02194b; /* Navy blue background */
  color: #f8f9fa; /* Light text */
}

.footerimg{
  max-width:100%;
  height:auto;
}

.footer h4, .footer h5 {
  font-weight: bold;
  color:rgb(255, 217, 0);
}

.footer p {
  font-size: 1.2rem;
  color: rgba(245, 245, 245, 0.646);
}

.footer ul {
  list-style-type: none;
  padding: 0;
}

.footer ul li a {
  color: #f8f9fa;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #ffcc00; /* Gold color for hover effect */
}

.footer .bi {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.footer .bi:hover {
  transform: scale(1.2);
  color: #ffcc00; /* Gold for social media icon hover */
}


@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer .d-flex {
    justify-content: center;
    gap: 1rem;
  }

  .footer form {
    margin-top: 20px;
  }
}