
  
      @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');
      @import url(https://fonts.googleapis.com/css?family=Roboto:400,100,900);
      
      body{
    font-family: 'Open Sans', sans-serif;
    }

/*** Buttons ***/
.btn-challenge {
    background: #000000 !important;
    border: 2px solid #000000;
    border-radius: 0px;
    color: #ffffff;
}

.btn-challenge:hover{
    background: #BFB415 !important;
    border: 2px solid #BFB415;
    color: #ffffff;
}

.btn-lime {
    background: #BFB415 !important;
    border: 2px solid #BFB415;
    color: #ffffff;
}

.btn-lime:hover{
    background: none !important;
    border: 2px solid #BFB415;
    color: #BFB415;
}

.btn-copper {
    background: #A6431F !important;
    border: 2px solid #A6431F;
    color: #ffffff;
}

.btn-copper:hover{
    background: none !important;
    border: 2px solid #A6431F;
    color: #A6431F;
}

.btn-surf {
    background: #C1D6C9 !important;
    border: 2px solid #C1D6C9;
    color: #000000;
}

.btn-surf:hover{
    background: none !important;
    border: 2px solid #C1D6C9;
    color: #C1D6C9;
}

/*** Navbar ***/

.fixed-top {
    transition: .5s;
    box-shadow: 0 0 2px rgb(190, 190, 190) !important;
}

.nav-link {
    margin-right: 20px;
    font-weight: 500;
    outline: none;
}

.nav-link:hover,
.nav-link.active {
    color: #000000;
    border-bottom: 5px solid #BFB415;
}

/*** carousel css start ***/
/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
}

/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 35rem;
    position: relative;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay with 20% transparency */
  z-index: 1;
}

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  #myCarousel .carousel-item {
    position: relative;
    min-height: 450px;
  }
  
  #myCarousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .carousel-caption {
    bottom: auto;
    top: 60%;
    transform: translateY(-50%);
  }
}
/*** carousel css end ***/

/*****  Footer   *****/
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.footer-bg {
    background-color: #002439;
}
.footer-brand ul {
    color: #7A8C97;
    font-size: 14px;
}
.footer-links a {
    color: #7A8C97;
    font-size: 14px;
    text-decoration: none;
    -webkit-transition: .5s all ease;
	-moz-transition: .5s all ease;
	transition: .5s all ease;
}
.footer-links a:hover {
    color: #BFB415;
	margin-left:5px;
	font-weight:500;
  }
.footer-social-bg {
    background-color: #002439;
    text-align: right;
}
.footer-social-links a {
    color: #7A8C97;
    font-size: 20px;
    text-decoration: none;
	-webkit-transition: .5s all ease;
	-moz-transition: .5s all ease;
	transition: .5s all ease;
}
.footer-social-links a:hover {
    color: #BFB415;
    font-size: 25px;
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: #7A8C97;
    border: 0;
    opacity: .25;
}
hr:not([size]) {
    height: 1px;
}
.my-3 {
    margin-top: 0rem!important;
    margin-bottom: 0rem!important;
}
/*****  Footer ends   *****/

/***Founder page starts***/

/* Cover image section */
.cover-image {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url(../images/father_son_mission.jpg) no-repeat center center/cover;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cover-content {
  position: relative;
  z-index: 2;
  bottom: auto;
  top: 40%;
  transform: translateY(-50%);
}

.cover-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  z-index: 1;
}

.cover-content h1 {
  animation: slideInDown 1s;
}

.cover-content p {
  animation: fadeIn 2s;
 }

@media (max-width: 768px) {
  .cover-image {
    height: 70vh;
  }

  .cover-content h1 {
    font-size: 2.5rem;
  }

  .cover-content p {
    font-size: 1rem;
  }
}

/* Next section styles */
.section-journey {
  padding: 2rem;
  font-family: Georgia, serif;

}

.section-journey p {
  font-size: 1.1rem;
  line-height: 1.5;

}

/* Animations */
@keyframes slideInDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*** founder page ends ***/

/***About page starts***/

/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-content {
  animation: slideInDown 1s;
}

.team-content p {
  animation: fadeIn 2s;
 }

/*** About page ends ***/

/*** cards ***/
    .challenge-card {
      border: 1px solid #ddd;
      border-radius: 2px;
      overflow: hidden;
      margin-bottom: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      position: relative;
    }

    .challenge-card img {
      width: 100%;
      height: auto;
      border-bottom: 1px solid #ddd;
      transition: transform 0.3s ease-in-out;
    }

    .challenge-card:hover img {
      transform: scale(1.1);
    }

    .card-body {
      padding: 20px;
      padding-top: 5px;
    }
    
    .card-title{
    font-weight: 600;
    font-size: 1.40em;
    font-family: 'Roboto', sans-serif;
    color:#000000;
    margin-bottom: 10px;
}
    .card-text{
    font-weight:350;
    font-size:16px;
}

    .profile-icon {
      max-width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-right: 10px;
      object-fit: cover;
    }

    /**====== card badge style start======**/

  .badge {
        font-size: 12px;
        position: absolute;
        top: 10px;
        right: 10px;
        font-weight: normal;
      }
  
  .badge-submitted {
    background-color: #007bff; /* Blue */
  }
  
  .badge-under-review {
    background-color: #ffc107; /* Yellow */
  }
  
  .badge-active {
    background-color: #28a745; /* Green */
    
  }
  
  .badge-accepted {
    background-color: #17a2b8; /* Teal */
  }
  
  .badge-accomplished {
    background-color: #6f42c1; /* Purple */
  }
  
  .badge-staff_review {
    background-color: #343a40; /* Dark */
  }
  
  .badge-donated {
    background-color: #000000; /* black */
  }

  .badge-completed {
    background-color: #fd7e14; /* Orange */
  }
  
  /**====== card badge style End ======**/

/* custom colors */

.text-surf { color: #C1D6C9 !important; }
.text-navy { color: #013440 !important; }
.text-lime { color: #BFB415 !important; }
.text-cherry { color: #59200B !important; }
.text-copper { color: #A6431F !important; }


.bg-surf { background-color: #C1D6C9 !important; }
.bg-navy { background-color: #013440 !important; }
.bg-lime { background-color: #BFB415 !important; }
.bg-cherry { background-color: #59200B !important; }
.bg-copper { color: #A6431F !important; }


.link-surf { color: #C1D6C9 !important; }
.link-navy { color: #013440 !important; }
.link-lime { color: #BFB415 !important; }
.link-cherry { color: #59200B !important; }
.link-copper { color: #A6431F !important; }


/* custom colors */

/***how it works section starts***/

.step-row {
    position: relative;
    background-color: #f8f9fa;
    transition: all 0.5s ease-in-out;
}

.step-content h3 {
    font-weight: bold;
}

.vertical-line {
    width: 2px;
    height: 50px;
    background-color: #BFB415;
    margin: 0 auto;
}

.step-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.animate__animated.animate__slideInUp {
    visibility: visible !important;
}


/*** how it works section ends ***/