body{
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
}
.nav-logo{
	height: 50px;
}
.footer-logo{
  height: 100px;
}
.page{
	min-height: calc(100vh - 344px);
}
.a {
  text-decoration: none;
  color: #074D91;
  position: relative;
  transition: color 0.3s ease; /* Smooth transition for color change */
}
.a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px; /* Adjust the height of the underline */
  background-color: #6a6a6a; /* Underline color */
  transition: width 0.3s ease; /* Smooth transition for the underline */
}

.a:hover {
  color: #6a6a6a;
}

.a:hover::after {
  width: 100%; /* Underline expands from left to right */
}

.al {
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: color 0.3s ease; /* Smooth transition for color change */
}
.al::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px; /* Adjust the height of the underline */
  background-color: #6a6a6a; /* Underline color */
  transition: width 0.3s ease; /* Smooth transition for the underline */
}

.al:hover {
  color: #6a6a6a;
}

.al:hover::after {
  width: 100%; /* Underline expands from left to right */
}

b, strong {
  font-weight: 600;
}

.bg-white-transparent{
	background-color: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px); /* For Safari */
	margin-top: 20px;
	margin-bottom: 20px;
}

.bg-primary-transparent{
  background-color: #074D91B8;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px); /* For Safari */
  margin-top: 20px;
  margin-bottom: 20px;
}

.bg-primary {
  background-color: #074D91 !important;
}

.btn:focus {
  box-shadow: none !important;
  outline: none !important;
}

.btn-primary {
  color: #fff;
  background-color: #074D91;
  border-color: #074D91;
}

.btn-primary:hover {
  color: #074D91;
  background-color: #fff;
  border-color: #074D91;
}

.btn-primary:disabled,
.btn-primary.disabled {
  color: #fff;
  background-color: #074D91;
  border-color: #074D91;
}

/* Outline Primary */
.btn-outline-primary {
  color: #074D91;
  border-color: #074D91;
  background-color: transparent;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #074D91;
  border-color: #074D91;
}

.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
  color: #074D91;
  background-color: transparent;
  border-color: #074D91;
}

/* Secondary (Inverse of Primary) */
.btn-white {
  color: #074D91;
  background-color: #fff;
  border-color: #fff;
}

.btn-white:hover {
  color: #fff;
  background-color: #074D91;
  border-color: #fff;
}

.btn-white:disabled,
.btn-white.disabled {
  color: #074D91;
  background-color: #fff;
  border-color: #074D91;
}



.nsp-hero{
	background-image: url('../images/nsp-hero.jpg');
	background-size: cover;
	background-position: center;
	/*height: calc(100vh - 167px);*/
}

.nsp-hero-inner{
	/*height: calc(100vh - 167px);*/
}
.info-container{
	min-height: 150px;
}
@media(max-width: 1399px){
  .info-container{
    min-height: 220px;
  }
}
@media(max-width: 1199px){
  .info-container{
    min-height: 240px;
  }
}
@media(max-width: 991px){
  .info-container{
    min-height: 330px;
  }
}
@media(max-width: 767px){
  .info-container{
    min-height: auto;
  }
}

.beneficiaries-bg {
  position: relative;
  background-image: url(../images/beneficiaries-bg.jpg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white; /* optional: for text contrast */
  z-index: 1;
}

/* Dark overlay */
.beneficiaries-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* adjust opacity if needed */
  z-index: -1;
}

/* Ensure child content is above the overlay */
.beneficiaries-bg > * {
  position: relative;
  z-index: 2;
}

@media(max-width: 767px){
  .beneficiaries-bg{
    background-image: none;
    background-color: #074D91B8;
  }
}

.gallery-thumb {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.image-thumb{
  height: 200px;
  background-size: cover;
}
.signature_sketch {
  width: 100%;
  max-width: 100%;
  height: 252px; /* or set a min-height */
  border: 1px solid #ccc;
  touch-action: none;
  display: block;
}
#signature_sketch {
  width: 100%;
  max-width: 100%;
  height: 252px; /* or set a min-height */
  border: 1px solid #ccc;
  touch-action: none;
  display: block;
}
#agent_upload {
  display: none;
}
.dropdown-menu {
  width: 255px;                  /* set width consistently */
  border: none;                  /* remove Bootstrap border */
  display: block;                /* required so transitions can work */
  opacity: 0;
  transform: translateY(-20px);
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
@media(max-width: 991px){
  .dropdown-menu{
    display: none;
  }
}

.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.benificiary-name{
  min-height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-logo{
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
}
.logo-container{
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg-new{
  background-color: #ddffef!important;
}
.bg-existing{
  background-color: #fff5dd!important;
}
.nav-item-donate {
  background-color: #074d91;
  border-radius: 2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-item-donate:hover {
  background-color: #0b65bf;
  transform: translateY(-2px);
}

.nav-link-donate {
  color: #fff !important;
  transition: color 0.3s ease;
}

.nav-link-donate:hover {
  color: #fff !important;
}
@media(max-width: 991px){
  .nav-item-donate{
    background-color: #fff;
    border-radius: 0em;
  }
  .nav-item-donate:hover {
  background-color: #fff;
  transform: translateY(0px);
}
  .nav-link-donate{
    color: #737373!important;
  }
  .nav-link-donate:hover {
  color: #737373 !important;
}
}