.heading {
  background-color: darkmagenta;
  width: 100%;
  height: 150px;
  padding-bottom:25px;
}

.heading h1{
  font-family:cursive;
  text-align: center;
  padding-top: 45px;
  color: white;
  font-size: 56;

}

.navbar {
  display: flex;
  justify-content: space-around; /* or space-between */
  background-color: #1f5dcf;
  padding: 0;
  margin-top: -10px;
  width: 100%;
  line-height: 2;
}

.navbar a {
  text-decoration: none;
  font-weight: bold;
  font-size: 18;
  color: rgb(248, 248, 246);
}
.navbar a:hover {
  text-decoration:underline;
}

@keyframes blinkFancy {
  0%, 100% { background-color: #1f5dcf; color: rgba(221, 19, 204, 0.781); }
  50% { background-color: rgb(221, 19, 204, 0.781); color: #1f5dcf; }
}

.navbar {
  animation: blinkFancy 1.2s infinite;
}

.maindiv{
    background-color: rgb(165, 241, 103);
    height: fit-content;
    width: 80%;
    margin-left: 10%;
    text-align: center;
    overflow: hidden;
}
table{
    height: fit-content;
    width: 98%;
    line-height: 25px;
    text-align: left;
    border-collapse: collapse;
    table-layout: fixed;
    margin: auto;
}
.tabsmc{
    height: fit-content;
    width: 98%;
    line-height: 25px;
    text-align: left;
    border-collapse: collapse;
    table-layout: auto;
    margin: auto;
}

*{
    margin: 3px;
} 

.pdf-container {
  width: 90%;
  margin: auto;
  border: 2px solid #ccc;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.footer {
  background-color: 	#2C2C2C;
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-left {
  flex: 1 1 300px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 10px;
}

.footer-left p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-left a {
  color: #fff8a4;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  flex: 2 1 600px;
}

.footer-links h4 {
  margin-bottom: 10px;
  font-size: 15px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.footer-links ul li a:hover {
  text-decoration: underline;
  color: #ffeb3b;
}

.social-icons img {
  width: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

  
#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #0044cc;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#scrollToTop:hover {
  background-color: #002f7a;
}

/* Show when scroll active */
#scrollToTop.show {
  display: block;
}