/*fonts*/
@import url('https://fonts.googleapis.com/css2?family=Eagle+Lake&family=Permanent+Marker&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.eagle-lake-regular {
  font-family: "Eagle Lake", serif;
  font-weight: 400;
  font-style: normal;
}

.permanent-marker-regular {
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}



/*Tubelight Effects*/
.banner-container {
    background: var(--bs-light, #f8f9fa);
    padding: 1.5rem 0;
    text-align: center;
}

.banner-container h2 {
  position: relative;
  font-family: "Eagle Lake", serif;
	font-weight: 400;
	font-style: normal;
  font-size: 3em; /* smaller for banner */
  letter-spacing: 10px;
  color: #0e3742;
  /*text-transform: uppercase;*/
  -webkit-box-reflect: below 1px linear-gradient(transparent, #0008);
  line-height: 0.9em;
  outline: none;
  animation: tubelight 5s linear infinite;
}

@keyframes tubelight {
    0%,18%,20%,50.1%,60%,65.1%,80%,90.1%,92% {
        color: #0e3742;
        text-shadow: none;
    }
    18.1%,20.1%,30%,50%,60.1%,65%,80.1%,90%,92.1%,100% {
        color: #fff;
        text-shadow: 
            0 0 10px #03bcf4,
            0 0 20px #03bcf4,
            0 0 40px #03bcf4,
            0 0 80px #03bcf4,
            0 0 160px #03bcf4;
    }
}

/* Default: sticky top for navbar */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1020;
}
/* Mobile: sticky bottom for navbar */
@media (max-width: 767.98px) {
    .sticky-nav {
        top: auto !important;
        bottom: 0;
        position: sticky;
        border-top: 1px solid #dee2e6;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.03);
        background: var(--bs-body-bg, #fff);
    }
    .navbar {
        border-radius: 0 !important;
    }
}
			



/*PDF preview*/
.pdf-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}
  
  @media (max-width: 767.98px) {
      .pdf-preview embed {
          width: 100% !important;
          height: 350px !important;
      }
      .container.border {
          border-width: 2px !important;
      }
      .banner-container h2 img {
          width: 36px;
          height: 36px;
      }
  }

.social-icon a
{
    font-size: 1.5rem;
    letter-spacing: 1rem;
    margin-left: 1rem;
    color: #333;
    transition: color 0.2s;
}
.social-icon a:hover {
    color: #0d6efd;
}