/* Copy Animation */
.base-color{
  color: hsl(var(--main)) !important;
}
  .copyInput {
	display: inline-block;
	line-height: 50px;
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	text-align: center;
	font-size: 14px;
	cursor: pointer;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
  }
  
  .copied::after {
	position: absolute;
	top: 8px;
	right: 12%;
	width: 100px;
	display: block;
	content: "COPIED";
	font-size: 1em;
	padding: 5px 5px;
	color: #fff;
	background-color: #FF7000;
	border-radius: 3px;
	opacity: 0;
	will-change: opacity, transform;
	animation: showcopied 1.5s ease;
  }
  
  @keyframes showcopied {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }
    50% {
      opacity: 0.7;
      transform: translateX(40%);
    }
    70% {
      opacity: 1;
      transform: translateX(0);
    }
    100% {
      opacity: 0;
    }
  }

  .cookies-card {
    width: 100%;
    max-width: 350px;
    padding: 25px;
    padding-top: 0 !important;
    color: #1E2337;
    position:  fixed;
    bottom: 15px;  
    left: 15px;
    z-index: 999999;
    transition: all .5s;
    background: hsl(var(--white));
    border: 1px solid rgba(0, 0, 0, .07);
    box-shadow: 0px 0px 30px 0px hsl(var(--base) / .1);
    border-radius: 10px;
  }
  
  .cookies-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 25%;
    width: 50%;
    height: 100%;
    background: linear-gradient(-65deg, hsl(var(--base) / .1), transparent 50%);
    border-right: 1px solid hsl(var(--base) / .1);
    transform: skewX(-25deg);
    z-index: -1;
  }
  
  .cookies-card.hide{
	bottom: -500px !important;
  }
  .radius--10px {
	border-radius: 10px;
  }
  
  .cookies-card__icon {
    width: 130px;
    height: 130px;
    border-top: 1px solid rgba(0, 0, 0, .07);
    border-right: 1px solid rgba(0, 0, 0, .07);
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
    border-radius: 50%;
    transform: rotate(-45deg);
    background-color: #fff;
    font-size: 100px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: -65px;
  }
  
  .cookies-card__icon >* {
    transform: rotate(45deg);
  }
  
  .cookies-card__content {
	  margin-bottom: 0;
  }
  
  .cookies-btn {
    color: #363636;
    text-decoration: none;
    padding: 10px 35px;
    margin: 3px 5px;
    display: inline-block;
    border-radius:  999px;
  }
  
  .cookies-btn:hover {
	  color: #363636;
  }

  
  @media (max-width: 767px) {
	  .cookies-card {
		  width:  100%;
		  left: 0;
		  bottom:  0;
		  font-size:  14px;
		  padding:  15px;
	  }
  }


.show-filter{
  display: none;
}

@media(max-width:767px){
  .responsive-filter-card{
      display: none;
      transition: none;
  }
  .show-filter{
      display: block;
  }
}

label.required:after{
  content: '*';
  color: #FB4D4D !important;
  margin-left: 2px;
}

























/* Base styles */
body {
  font-family: 'Poppins', sans-serif;
  color: #333333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}

.font-poppins {
  font-family: 'Poppins', sans-serif;
}

/* Logo and header styles */
.logo {
  height: 64px;
}

.logo-text {
  color: hsl(var(--base));
  font-size: 24px;
  font-weight: 700;
}

.logo-subtitle {
  font-size: 10px;
  color: #666;
}

/* Shadow for navbar */
.shadow-nav {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Navigation */
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: hsl(var(--base));
}

.dropdown-menu .dropdown-item {
  color: hsl(var(--base));
  font-size: 18px;
}

.dropdown-item.active, .dropdown-item:active {
  color: hsl(var(--white));
  background-color: hsl(var(--base-d-500));
}

.nav-link {
  color: hsl(var(--base));
  font-weight: 600;
  transition: color 0.2s ease;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-size: 18px;
}

.nav-link:hover {
  color: #0095c4;
}

.nav-divider {
  color: hsl(var(--base));
}

/* Donate button */
.btn-donate {
  background-color: hsl(var(--base));
  color: hsl(var(--white));
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  font-size: 16px;
}

.btn-donate:hover {
  background-color: hsl(var(--base-d-500));
  color: hsl(var(--white));
}

/* Hero section */
.hero {
  position: relative;
  height: 500px;
  background-color: #333;
  color: hsl(var(--white));
}

.hero-slide {
  position: relative;
  height: 500px;
}

.hero-background {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 15px;
}

.hero-slider.slick-initialized.slick-slider .slick-list {
  margin: unset;
}

.hero-slider.slick-initialized.slick-slider .slick-slide {
  padding: unset;
}

/* Slick slider styles */
.slick-dots {
  bottom: 40px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: hsl(var(--white));
  opacity: 0.7;
}

.slick-dots li.slick-active button:before {
  color: hsl(var(--base));
  opacity: 1;
}

/* Program categories */
.program-card-container {
  margin-top: 0;
  z-index: 1;
  margin-bottom: 2rem;
}

.program-category {
  background-color: hsl(var(--base));
  color: hsl(var(--white));
  padding: 0.5rem;
  font-weight: 600;
  font-size: 18px;
}

.program-card {
  background: #ededed;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: center;
}

.program-image {
  height: 130px;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-content {
  padding: 1.5rem 0 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.program-title {
  font-weight: 600;
  font-size: 16px;
  color: gray;
  margin-bottom: 1rem;
  flex-grow: 1;
  max-height: 75px;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 75px;
}

.program-stats {
  color: hsl(var(--base));
  font-weight: 500;
}

/* Footer styles */
.footer {
  background-color: #333333;
  color: hsl(var(--white));
  padding: 2rem 0;
}

.footer-title {
  color: hsl(var(--base));
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-link {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: hsl(var(--base));
}

.footer-icon {
  color: hsl(var(--base));
  margin-right: 12px;
  width: 20px;
  height: 20px;
}

.footer-contact-item {
  margin-bottom: 1rem;
}

.footer-logo {
  height: 130px;
}

/* Responsive padding classes */
.section-py {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-py {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* Bootstrap overrides and utilities */
.object-cover {
  object-fit: cover;
}

/* Tailwind CSS */
.w-fit-content {
  width: fit-content;
}

.min-h-screen {
  min-height: 100vh;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

@media (min-width: 768px) {
  .md\:flex-row {
    flex-direction: row;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:mb-0 {
    margin-bottom: 0;
  }

  .md\:space-y-0 > * + * {
    margin-top: 0;
  }

  .md\:mr-8 {
    margin-right: 2rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
  }

  .md\:inline {
    display: inline;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.mh-none {
  max-height: none !important;
}

.border-end--base {
  border-right: 1px solid hsl(var(--base));
}

@media (max-width: 760px) {
  .footer-area .border-end--base {
    border-right: none;
  }
}

.breadcrumb.breadcrumb--base::before {
  background: hsl(var(--base-d-500));
  opacity: 0.4;
}

.secondary-container {
  max-width: 95%;
}

.sidebar {
  background-color: hsl(var(--base));
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  min-height: 100vh;
  padding-top: 0.5rem;
}
.sidebar .list-group-item {
  background-color: hsl(var(--base));
  color: hsl(var(--white));
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  padding-left: 1rem;
  transition: background-color 0.3s, border-color 0.3s;
}
.sidebar .list-group-item.active,
.sidebar .list-group-item:hover {
  background-color: hsl(var(--base-d-500));
  color: hsl(var(--white));
}
.content h2,
.content h3 {
  color: hsl(var(--base));
  font-weight: 600;
}
.content p {
  line-height: 1.5;
  margin-bottom: 2rem;
}
.content img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 0.25rem;
  margin-bottom: 2rem;
}
ol.decimal-points {
  padding-left: 2rem;
  margin-bottom: 1rem;
  list-style: decimal;
}
@media (max-width: 767.98px) {
  .banner-text {
    font-size: 1.25rem;
    top: 2rem;
    left: 1rem;
  }
  .sidebar {
    min-height: auto;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0.25rem 0;
  }
  .sidebar .list-group-item {
    border-left: none;
    border-bottom: 4px solid transparent;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    flex: 0 0 auto;
  }
  .sidebar .list-group-item.active,
  .sidebar .list-group-item:hover {
    border-left: none;
    border-bottom-color: hsl(var(--white));
  }
}

/* Program page */
.program-page .content h1,
.program-page .content h2,
.program-page .content h3,
.program-page .content h4,
.program-page .content h5,
.program-page .content h6 {
  color: hsl(var(--base));
}
.program-page .content p,
.program-page .content li {
  font-size: 1.75rem;
}
.program-page .content img {
  width: auto;
  max-width: 50%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
}

.program-page.about-page .content img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
}

.program-page .content ol,
.policy--details ol {
  padding-left: 2rem;
  list-style: decimal;
}

.program-page .content ul,
.policy--details ul {
  padding-left: 2rem;
  list-style: disc;
}


/* Home page story banner section */
.story-card {
  cursor: pointer;
  overflow: hidden;
}

.story-card .story-image-wrapper {
  height: 500px;
  max-height: 500px;
  overflow: hidden;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.story-card .story-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.story-card:hover .story-image {
  transform: scale(1.08);
}

.story-card .story-content {
  padding: 1rem;
  width: 75%;
  top: 70%;
}