@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Wittgenstein:ital,wght@0,400..900;1,400..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Wittgenstein:ital,wght@0,400..900;1,400..900&display=swap");

:root {
  /* ======== Font and typography ======== */
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;
}

/* font-family: "Dosis", sans-serif; */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #ffffff;
}

.main-container {
  padding-left: 7%;
  padding-right: 7%;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  font-style: normal;
}

ol,
ul {
  padding-left: 0rem;
}
.title {
  display: inline-block;
  /* font-family: "Wittgenstein", serif; */
  font-family: "Wittgenstein", serif;
  font-weight: 600;
  letter-spacing: 1px;
  border-bottom: 5px solid #f16723;
  color: #013371;
}
.cursor-pointer {
  cursor: pointer;
}
.card-btn {
  background-color: #003579;
  padding: 7px 12px;
  color: white;
  border-radius: 5px;
  font-weight: 600;
  font-family: "Wittgenstein", serif;
  border: none;
  outline: none;
}
.text {
  color: #013371;
}
.orange {
  color: #fe9150;
}
/*------------ top-header start here  -----------  */
.top-header {
  background-color: #ff9047;
  padding: 9px 5px;
  /* position: relative; */
}
.top-header .top-header-contact {
  color: rgb(234, 234, 234);
}
.top-header .top-header-icons a {
  color: rgb(234, 234, 234);
  margin-right: 20px;
}
.top-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-header-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-header .hide-icons {
  display: none;
}
/*------------ top-header ends here  -----------  */

/*----------buttom navbar section Starts Here---------  */

.header {
  position: sticky;
  top: -1px;
  left: 0;
  width: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: hsl(220, 100%, 99%);
  z-index: 100;
  padding: 5px 0px;
}
.header ul{
  list-style: none;
}
.nav {
  height: 3.5rem;
  display: block;
}
.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  transition: color 0.3s;
  width: 100%;
}
.nav__logo img{
  height: 4.5rem;
}
.nav__toggle i {
  font-size: 1.25rem;
}
.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}
.nav__toggle-menu,
.nav__toggle-close {
  font-size: 1.25rem;
  color: hsl(220, 48%, 28%);
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 1s, transform 0.4s;
}
.nav__toggle-close {
  opacity: 0;
}
.nav-btn{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
/* Navigation for mobile devices */
@media (max-width: 1118px) {
  .nav__menu {
    /* background-color: var(--body-color); */
    background-color: hsl(220, 100%, 99%);
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0.5rem;
  }
  .nav__menu::-webkit-scrollbar-thumb {
    background-color: hsl(220, 12%, 70%);
  }
  .nav-btn{
    justify-content: start;
    margin-left: 20px;
  }
}

.nav__link {
  color: hsl(220, 48%, 28%);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}
.nav__link:hover {
  background-color: hsl(220, 68%, 97%);
}

/* Show Menu  */
.show-menu {
  opacity: 1;
  top: 3.8rem;
  pointer-events: initial;
}

/* show-icon */
.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(180deg);
}
.show-icon .nav__toggle-close {
  opacity: 1;
  transform: rotate(180deg);
}

/* Dropdown  */
.dropdown__button {
  cursor: pointer;
}
.dropdown__arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}
.dropdown__content,
.dropdown__group,
.dropdown__list {
  display: grid;
}
.dropdown__container {
  background-color: hsl(220, 68%, 97%);
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}
.dropdown__content {
  row-gap: 1.7rem;
}
.dropdown__group {
  padding-left: 2.5rem;
}
.dropdown__group:first-child {
  margin-top: 1.5rem;
}
.dropdown__group:last-child {
  margin-bottom: 1.5rem;
}
.dropdown__title {
  font-size: var(--small-font-size);
  font-weight: 600;
  color: hsl(220, 48%, 28%);
}
.dropdown__list {
  row-gap: 0.25rem;
}
.dropdown__link {
  font-size: var(--smaller-font-size);
  font-weight: 500;
  color: hsl(220, 12%, 45%);
  transition: color 0.3s;
}
.dropdown__link:hover {
  color: #00317A;
}
.dropdown__title:hover {
  color: #00317A;
}

/* Rotate dropdown icon  */
.show-dropdown .dropdown__arrow {
  transform: rotate(180deg);
}

/* ==========BREAKPOINTS========== */
/* For small devices  */
@media (max-width: 300px) {
  .dropdown__group {
    padding-left: 1.5rem;
  }
}

/* For large devices  */
@media (min-width: 1118px) {
  /* Nav  */
  .nav {
    height: calc(3.5rem + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav .nav__logo img{
    height: calc(3.5rem + 2rem);
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    display: flex;
    column-gap: 1.3rem;
    height: 100%;
  }
  .nav li {
    display: flex;
  }
  .nav__link {
    padding: 0;
  }
  .nav__link:hover {
    background-color: initial;
  }

  /* Dropdown  */
  .dropdown__button {
    column-gap: 0.25rem;
    pointer-events: none;
  }
  .dropdown__container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 6.5rem;
    background-color: hsl(220, 100%, 99%);
    box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .dropdown__content {
    grid-template-columns: repeat(4, max-content);
    column-gap: 6rem;
    max-width: 1120px;
    margin-inline: auto;
  }
  .dropdown__group {
    padding: 2rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }
  .dropdown__group:first-child,
  .dropdown__group:last-child {
    margin: 0;
  }
  .dropdown__list {
    row-gap: 0.75rem;
  }
  .dropdown__title {
    font-size: var(--normal-font-size);
  }
  .dropdown__link {
    font-size: var(--small-font-size);
  }
  .dropdown__link:hover {
    color: #00317A;
  }
  .dropdown__title:hover {
    color: #00317A;
  }
  .dropdown__item {
    cursor: pointer;
  }
  /* Rotate dropdown icon  */
  .dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
  }

  /* Show dropdoen menu   */
  .dropdown__item:hover > .dropdown__container {
    top: 5.5rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }
}

@media (max-width:1152px) {
    .dropdown__container{
        margin-inline: auto;
    }
}

.donate-btn {
  background-color: #fe9150;
  padding: 5px 10px; /* Adjusted padding for small size */
  color: white;
  border-radius: 5px;
  font-weight: 600;
  font-family: "Wittgenstein", serif;
  font-size: 16px; /* Smaller font-size similar to btn-sm */
  line-height: 1.5; /* Ensure consistent line-height */
  border: none;
  outline: none;
}

.login-btn {
  background-color: #003579;
  padding: 5px 10px; /* Adjusted padding for small size */
  color: white;
  border-radius: 5px;
  font-weight: 600;
  font-family: "Wittgenstein", serif;
  font-size: 16px; /* Smaller font-size similar to btn-sm */
  line-height: 1.5; /* Ensure consistent line-height */
  border: none;
  outline: none;
}

/*----------buttom navbar section Ends Here---------  */

/*------------ carousel section start here -----  */
/* .carousel-item img {
  filter: brightness(60%);
  background-color: yellow;
} */
.custom-caption {
  top: 45%;
  transform: translateY(-50%);
  text-align: left;
  margin-left: -36px;
  max-width: 920px;
}
.carousel-caption span {
  font-size: 3rem;
  color: white;
  line-height: 47px;
  font-weight: 500;
}
.carousel-caption p {
  margin-top: 20px;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  color: rgb(250, 250, 250);
}
.carosuel_btn {
  background-color: #004e80;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 10px;
}
.carosuel_btn span {
  font-size: 18px;
}

/* -------Narritive Section Starts here ----------*/
.narritive-sec {
  background-color: #ffede1;
  padding: 20px 0px;
  margin-top: 18px;
  z-index: 2;
}
.narritive-sec img {
  border-radius: 50%;
  border: 10px solid #f16723;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.narritive-card {
  border-radius: 10px;
  padding: 28px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.narritive-card h3 {
  font-size: 20px;
  font-weight: 600;
}
.narritive-card ul li {
  font-size: 15px;
}
/* -------Narritive Section Ends here ----------*/

/* ---------Conclusion & Vision Forward--------------*/
.how_we_work-section .title {
  display: inline-block;
  font-family: "Wittgenstein", serif;
  font-weight: 600;
  letter-spacing: 1px;
  border-bottom: 5px solid #f16723;
}
.circle {
  width: 240px;
  margin: 15px auto;
  display: inline-block;
  position: relative;
  text-align: center;
  line-height: 1.2;
}
.circle-img {
  width: 15rem;
  height: 15rem;
  border-radius: 15px 50px;
  border: 10px solid #dbdbdb;
  transition: 0.3s;
}
.circle:hover .circle-img {
  border: 10px solid #f16723;
  transition: 0.3s;
}
.circle p {
  margin-top: 15px;
  color: #616161;
  font-size: 18px;
  font-family: "Wittgenstein", serif;
  font-weight: 500;
}
/*------------ carousel section ends here -----  */

/* -------Testimonial section Starts Here ------------  */

.impact-stories {
  background-image: url("../images/bg-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.testimonial-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 50px 0px;
  align-items: center;
}

.testimonial-slide {
  display: flex;
  flex-shrink: 0;
  width: 100%;
  transition: transform 0.5s ease-in-out;
  opacity: 0;
  position: absolute;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
}

.testimonial-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.testimonial-text {
  padding: 20px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}

.testimonial-text h2 {
  margin: 0 0 10px;
  font-size: 24px;
  color: white;
}

.testimonial-text p {
  margin: 0;
  font-size: 18px;
  color: white;
}
/* -------Testimonial section Starts Here ------------  */

/* ----------Foundation Section starts here-------  */
.vision_mision_sec {
  background-color: #ffede1;
}
.vision_mision_img img {
  max-width: 100%;
}
.vision_mision_content .vision_mision_title {
  font-size: 2.5 em;
  font-weight: 600;
  font-family: "Wittgenstein", serif;
}
.vision_mision_content p {
  color: #626264;
  font-size: 16px;
}
.v_item {
  border-left: 4px solid #f16723;
  padding-left: 10px;
}
.v_item h3 {
  font-weight: 500;
  font-size: 25px;
  font-family: "Dosis", sans-serif;
}
.v_item p {
  color: #626264;
}
.vision_mision_btn {
  background: #003477 0% 0% no-repeat padding-box;
  border-radius: 25px;
  color: #ffffff;
  padding: 10px 20px;
}
/* counter div  */
.counter-sec .counter-img {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 50% 50% 0% 0%;
  align-items: center;
  border: 12px solid goldenrod;
}
/* ----------Foundation Section ends here-------  */

/* -------Campaigns Section Start Here -------- */
.campaigns .title {
  display: inline-block;
  font-family: "Wittgenstein", serif;
  font-weight: 600;
  letter-spacing: 1px;
  border-bottom: 5px solid #f16723;
}
.campaigns .card img {
  transition: 0.5s;
}
.campaigns .card:hover img {
  scale: 1.1;
  transition: 0.5s;
}
.campaigns .card {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  overflow: hidden;
  cursor: pointer;
}
.campaigns .card .card-text {
  font-size: 18px;
  color: #333;
  font-weight: 400;
}
.campaigns .progress-bar {
  background-color: #003678;
}
/* -------Campaigns Section End Here -------- */

/* -------Contributers testimonial section Starts Here-----------   */
.contributers-testimonial {
  background-color: #00337d;
  padding: 20px 0;
}
.single-item {
  color: #d7d5d5;
  padding: 15px;
  margin: 50px 15px;
}
.profile {
  margin-bottom: 30px;
  text-align: center;
}
.img-area {
  margin: 0 15px 15px 15px;
}
.img-area img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  border: 7px solid #ff9047;
}
content {
  font-size: 18px;
}

.content p {
  text-align: justify;
}
.content p span {
  font-size: 48px;
  margin-right: 20px;
  color: #ff9047;
}

.socials i {
  margin-right: 25px;
}

/* -------Contributers testimonial section Starts Here-----------   */

/*--------------------- Gallery Section Starts Here -------------- */
.img-wrap {
  position: relative;
}
.gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 5px dashed #00337d;
  display: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 8px;
}
.gallery-icon i {
  font-size: 22px;
  color: white;
  background-color: #f16723;
  height: 40px;
  width: 40px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.img-wrap:hover .gallery-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.fullscreen-overlay img {
  max-width: 90%;
  max-height: 90%;
}
.close-btn {
  position: absolute;
  top: 0;
  right: 20px;
  font-size: 3em;
  color: white;
  cursor: pointer;
  font-weight: bolder;
}

/*--------------------- Gallery Section Ends Here -------------- */

/* footer section  */
footer {
  background-color: #fff4ee;
  padding: 20px 10px;
}
.ft-logo {
  font-size: 25px;
}
.ft-title {
  font-size: 17px;
  color: hsl(220, 48%, 28%);
  font-weight: 600;
  transition: background-color 0.3s;
}
footer ul li {
  list-style: none;
  margin-top: 5px;
}
footer ul li a {
  font-size: var(--normal-font-size);
  /* color: #333; */
  /* color: hsl(220, 48%, 28%); */
  color: hsl(220, 12%, 45%);
}
footer ul li a:hover{
  color: hsl(220, 48%, 28%);
}

footer .ft-content {
  color: hsl(220, 12%, 45%);
  font-size: var(--normal-font-size);
}
.ft-icons {
  display: flex;
  align-items: center;
}
.ft-icons a {
  margin-right: 22px;
}
/* news letter check box */
#mail_check {
  border: 2px solid black
}
/* ======================Who we Are Page Style Starts Here ==========  */
.about-sec {
  background-color: #ffede1;
  padding: 20px 5px;
}

/* vision mission page  */
.vision-mission-sec {
  background-color: #ffede1;
  padding: 25px 5px;
}
.flip-box {
  background-color: transparent;
  width: 100%;
  height: 200px;
  padding: 10px;
  perspective: 1000px;
}
.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}
.flip-box-front,
.flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}
.flip-box-front {
  background-color: #003477;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flip-box-back {
  background-color: #bbb;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg);
}
/* Govetnance Page  */
.governance-sec {
  background-color: #ffede1;
  padding: 30px 0px;
}
/* government page  */
.government-sec {
  background-color: #ffede1;
  padding: 30px 0px;
}
/* Corporate Page  */
.corporate-sec {
  background-color: #ffede1;
  padding: 30px 0px;
}

/* Partners Page  */
.partners-sec {
  background-color: #ffede1;
  padding: 30px 0px;
}

/* Board Of Trustrees Page  */
.board-of-trustees-sec {
  background-color: #ffede1;
  padding: 30px 0px;
}

/* Presidents Page  */
.presidents-sec {
  background-color: #ffede1;
  padding: 30px 0px;
}
/* Leadership Team Page  */
.leadership-sec {
  background-color: #ffede1;
  padding: 30px 0px;
}

/* ====================== / Who we Are Page Style Ends Here ==========  */

/*=========================== News and Storys Page Styles Starts Here ============================*/

/* Photo Galleries page  */
.photo-galleries-title {
  background-color: #ffede1;
  padding: 10px 0px;
}
.breadcrumb-sec {
  background-color: #00347b;
  color: white;
  padding: 5px 5px;
  text-align: center;
}
.breadcrumb-sec .breadcrumb-item {
  color: white;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: white;
  content: var(--bs-breadcrumb-divider, "/");
}
.gallery-card {
  position: relative;
  width: 100%;
}
.gallery-card img {
  display: block;
  width: 100%;
  height: auto;
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: rgba(0, 78, 128, 0.8);
  overflow: hidden;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s;
}

.gallery-card:hover .gallery-overlay {
  height: 100%;
  opacity: 1;
}
.gallery-img-text {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Publications page  */
.publications-title {
  background-color: #ffede1;
  padding: 10px 0px;
}

/* Events Page  */
.events-sec {
  background-color: #ffede1;
  padding: 30px 0px;
}
.events-sec .card {
  background-color: transparent;
}
.events-sec .card .card-text {
  color: #004e80;
  font-size: 19px;
  font-weight: 600;
}
.pub-date {
  color: black;
  font-size: 14px;
  font-weight: 400;
}
.evnt-card-btn {
  color: #51a6e3;
  font-weight: 700;
  letter-spacing: 1px;
}
.events-sec .card {
  border-bottom: 5px solid #004e80;
}

/* Press Coverages page  */
.press-img {
  position: relative;
  width: 100%;
}
.press-overlay {
  position: absolute;
  background-color: rgba(0, 78, 128, 0.8);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s;
}
.press-img-text {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.press-img:hover .press-overlay {
  opacity: 1;
  transition: opacity 0.5s;
}

/* News Page  */
.news-sec {
  background-color: #ffede1;
  padding: 30px 0px;
}
.news-sec .card {
  background-color: transparent;
}
.news-sec .card .card-text {
  color: #004e80;
  font-size: 19px;
  font-weight: 600;
}
.news-sec .pub-date {
  color: black;
  font-size: 14px;
  font-weight: 400;
}
.news-card-btn {
  color: #51a6e3;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  outline: none;
  background-color: transparent;
}
.news-sec .card {
  border-bottom: 5px solid #004e80;
}
/* Press Releases page  */
.press-release-sec {
  background-color: #ffede1;
  padding: 30px 0px;
}
.press-release-sec .card {
  background-color: transparent;
}
.press-release-sec .card .card-text {
  color: #004e80;
  font-size: 19px;
  font-weight: 600;
}
.press-release-sec .pub-date {
  color: black;
  font-size: 14px;
  font-weight: 400;
}
.press-card-btn {
  color: #51a6e3;
  font-weight: 700;
  letter-spacing: 1px;
}
.press-release-sec .card {
  border-bottom: 5px solid #004e80;
}

/*=========================== News and Storys Page Styles Starts Here ============================*/

/*===========================Get Involved Page Style Starts Here ============================== */
/* Goodwill Ambassadors Page  */
.goodwill-sec {
  background-color: #e6f3ff;
  padding: 30px 0px;
}

.goodwill-card .name {
  color: #004e80;
}
.goodwill-card .passion {
  font-size: 12px;
}
.goodwill-card .card-text {
  font-size: 14px;
  margin-top: 7px;
}

/* Talent Magnet Page  */
.talent-magnet-sec {
  background-color: #ffede1;
  padding: 30px 0px;
}

/* careers Pages  */
.careers-sec {
  background-color: #ffede1;
  padding: 30px 0px;
}
.accordion .accordion-tiems li {
  list-style: none;
}
.accordion .accordion-tiems li::before {
  content: "\f00c";
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
  font-weight: bolder;
}

/* young-leaders page */
.young-leaders-sec {
  background-color: #ffede1;
  padding: 30px 0px;
}
.our-fellows-testimonial {
  padding: 30px 0px;
  background-color: #add8e6;
}
.our-fellows-testimonial .testimonials .content {
  color: black;
}

/* future-shaper page  */
.future-shaper-sec {
  background-color: #ffede1;
  padding: 30px 0px;
}
.future-shaper-banner img {
  border: 10px solid white;
}

/*===========================Get Involved Page Style Ends Here ============================== */

/* =========================How to Help Page Style Starts Here ======================== */

/* fundraise page  */
.fundraise-sec {
  background-color: #ffede1;
  padding: 30px 0px;
}

.step-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #f0f8ff;
  padding: 2px 0px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step {
  position: relative;
  padding: 2px 0px;
  flex: 1;
  background-color: #d0e7f9;
  color: #333;
  font-weight: bold;
}
.step + .step {
  margin-left: 10px;
}
.step:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 10px solid #d0e7f9;
}
.step-active:after {
  border-left-color: #6daedb;
}

.step-description {
  font-size: 14px;
  margin-top: 10px;
}
/* sponsor school page  */
.sponsor-school-sec {
  background-color: #ffede1;
  padding: 30px 0px;
}
.hidden-citizen {
  display: none;
}
.citizen-donate {
  animation: fadeEffect 1s;
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Online Donation page  */
.online-donations-sec {
  background-color: #ffede1;
  padding: 30px 0px;
}
.help {
  max-width: 600px;
  padding: 15px 30px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: 0.5s;
  border-radius: 10px;
  background-color: white;
}
.help-one {
  margin-top: 20px;

  .help-icon {
    font-size: 35px;
    color: #1cb7b8;
  }

  h3 {
    color: #1cb7b8;
  }
}
.help-two {
  margin-top: 20px;

  .help-icon {
    font-size: 35px;
    color: #f16723;
  }

  h3 {
    color: #f16723;
  }
}
.help-three {
  margin-top: 20px;

  .help-icon {
    font-size: 35px;
    color: #1cb7b8;
  }

  h3 {
    color: #1cb7b8;
  }
}


.amount-btn,
.give-amount-btn {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 10px 20px;
  border-radius: 10px;
  color: black;
  font-weight: bold;
}
.amount-active {
  background-color: #fc924e;
  /* background-color: #021f4d; */
}
/* =========================How to Help Page Style Ends Here ======================== */

/*=====================Engage & Empower Styles Starts Here =================================*/
#feedbackForm {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#feedbackMessage {
  display: none;
  padding: 10px;
  border-radius: 5px;
}

#feedbackMessage.success {
  background-color: #d4edda;
  color: #155724;
}

#feedbackMessage.error {
  background-color: #f8d7da;
  color: #721c24;
}
/*=====================Engage & Empower Styles Starts Here ===============================*/

/* Blog Section styles Starts Here  */
.blog-sec .blog-card {
  border-bottom: 5px solid #fc924e;
}
/* Blog Section styles Ends Here  */

.hero-sec {
  width: 100%;
  overflow: hidden;
}
.rel-wrapper {
  position: relative;
}
.lazyloaded {
  opacity: 1;
  transition: opacity 400ms;
  transition-delay: 0ms;
}
.hero-video-patch {
  position: absolute;
  top: -73px;
  /* top: -37px; */
  /* left: -10px; */
  left: 0px;
  width: 100%;
  /* height: calc(100% + 5rem); */
  z-index: 1;
  overflow: hidden;
}
.hero-video-patch-top {
  position: absolute;
  top: 0px;
  right: -3px;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-video-wallpaper video {
  display: block;
  width: 100%;
}
.hero-title {
  font-size: 30px;
  letter-spacing: 1px;
  font-family: "Wittgenstein", serif;
}
/* ---------------------------------- */

.progress-bar-animated {
  animation: progressBarAnimation 2s ease-out;
}
@keyframes progressBarAnimation {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.default-bg-sec {
  background-color: #ffede1;
  padding: 30px 0px;
}

.more-text {
  display: none;
}


/* USER DASHBOARD  */
.sidebar {
  background-color: #343a40;
}

.sidebar .nav-link {
  color: white;
  padding: 8px 8px;
}

.sidebar .nav-link.active {
  background-color: #007bff;
  color: white;
}

.sidebar .nav-link:hover {
  background-color: #0069d9;
  color: white;
}

.profile-section {
  text-align: center;
  padding: 20px;
}

.profile-section img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.profile-section p {
  color: white;
  margin-bottom: 0;
}

.sub-setting ul {
  color: white;
  margin-left: 10px;
  list-style: none;
}

.sub-setting {
  display: none;
  background-color: #343a40;
  padding-left: 20px;
}

/* Display sub-setting on hover */
.setting-item:hover .sub-setting {
  display: block;
  transition: 1s ease-in;
}

.seting-menu-icon {
  transition: transform 0.3s ease-in-out;
}

.setting-item:hover .seting-menu-icon {
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}
/* Update Profile  */
.update-pass-form {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
  }
  .update-pass-form form {
      max-width: 500px;
      width: 500px;
      padding: 15px;
      border-radius: 10px;
  }
  .profile-form {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
  }
  .profile-form form {
      max-width: 500px;
      width: 500px;
      padding: 15px;
      border-radius: 10px;
  }