CSS FILE START


/*
Theme Name: HelpChildren
Theme URI: https://templatesjungle.com/downloads/help-children-free-bootstrap-5-html-nonprofit-template/
Author: TemplatesJungle
Author URI: https://templatesjungle.com/
Description: HelpChildren is Bootstrap 5 HTML Template for nonprofit organizations by TemplatesJungle.
Version: 1.2
*/


/*------------------------------------*\
    Colours
\*------------------------------------*/
/*
 - Primary color - #014D4E (Dark Teal)
 - Background color - #d3d3d3 (Light Grey)
 - Secondary color - #44A9AA(Soft teal), #aee6c5(Mint Green), #83A1CD(Muted Blue) 
  */

/** Base Styles
--------------------------------------------------------------*/
:root {
  --accent-color: #aee6c5;
  --secondary-color: #83A1CD;
  --dark-color: #014D4E;
  --grey-color: #E2EAF1;
  --body-text-color: #092035;
  --light-text-color: #9CA5AD;
  --link-color: #092035;
}


/** Typography
--------------------------------------------------------------*/
body {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 14px;
  line-height: 1.6em;
  /*color: var(--dark-color);*/
  color:#092035;
  background: linear-gradient(135deg,#d3d3d3) !important;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #014D4E;
}
em {
  font-weight: 700;
}
p {
  font-family: 'Inter', sans-serif;
  color: var(--body-text-color);
}
a {
  color: var(--link-color);
  text-decoration: none;
  transition: all 0.3s ease-out;
}
a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

/* Image Hover Effects
------------------------------------------------------------- */
/*logo image*/

img.logo {
  height: 75px;
  width: 100px;
  object-fit: cover;
  border-radius: 10%;
}

/*background contrast*/
@media (min-width: 992px) {
img.jarallax-img.effect {
        filter: brightness(0.5);
}
}

/*nav bar dropdown*/
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* Removes flickering */
  border-left: 6px solid white;
}


.zoom-effect {
  /*margin-bottom: 30px;*/
  overflow: hidden;
  margin: 50px;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
.zoom-in img {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  width: 100%;
  height: 100%;
  border-radius: 10%;
  object-fit: cover;
}

.zoom-effect:hover .zoom-in img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

/* - Button
------------------------------------------------------------- */
.button a {
   font-weight: 700;
   text-transform: uppercase;
}
.btn-common {
  border-radius: 50px;
  padding: 12px 35px;
}
.btn-submit {
    width: 100%;
    font-weight: 500;
    letter-spacing: 4px;
    padding: 1.6em 0;
}

a.btn-yellow,
button.btn-yellow {
  background-color: #FFB61D;
}

a.btn-yellow:hover,
.btn-yellow:hover {
  background-color: #111;
  color: #FFB61D;
}

/* Section Padding
--------------------------------------------------------------*/
.padding-xsmall {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.padding-small {
  padding-top: 2em;
  padding-bottom: 2em;
}
.padding-medium {
  padding-top: 4em;
  padding-bottom: 4em;
}
.padding-large {
  padding-top: 3em;
  padding-bottom: 5em;
}
.padding-xlarge {
  padding-top: 9.5em;
  padding-bottom: 9.5em;
}
.padding-2xlarge {
  padding-top: 15em;
  padding-bottom: 15em;
}

@media only screen and (max-width: 768px) {
  .padding-small,
  .padding-medium,
  .padding-large,
  .padding-xlarge {
    padding-top: 2em;
    padding-bottom: 2em;
  }
}

/* no padding */
.no-padding-bottom {
  padding-bottom: 0 !important;
}
.no-padding-top {
  padding-top: 0 !important;
}

/* Section margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 3em;
  margin-bottom: 3em;
}
.margin-medium {
  margin-top: 4.5em;
  margin-bottom: 4.5em;
}
.margin-large {
  margin-top: 6em;
  margin-bottom: 6em;
}
.margin-xlarge {
  margin-top: 7.5em;
  margin-bottom: 7.5em;
}

@media only screen and (max-width: 768px) {
  .margin-small,
  .margin-medium,
  .margin-large,
  .margin-xlarge {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}

/* Preloader
--------------------------------------------------------------*/
#overlayer {
  width:100%;
  height:100%;  
  position:fixed;
  z-index:20;
  /*background: var(--dark-color);*/
  background: linear-gradient(to bottom,#005660,#007574,#008081)!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  filter: url('#goo');
  animation: rotate-move 2s ease-in-out infinite;
}
.dot { 
  width: 70px;
  height: 70px;
  border-radius: 50%;
  /*background-color: #000;*/
  background: linear-gradient(to bottom,#008081,#007574,#005660)!important;

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.dot-3 {
  background-color: #f74d75;
  animation: dot-3-move 2s ease infinite, index 6s ease infinite;
}

.dot-2 {
  background-color: #10beae;
  animation: dot-2-move 2s ease infinite, index 6s -4s ease infinite;
}

.dot-1 {
  background-color: #ffe386;
  animation: dot-1-move 2s ease infinite, index 6s -2s ease infinite;
}

@keyframes dot-3-move {
  20% {transform: scale(1)}
  45% {transform: translateY(-18px) scale(.45)}
  60% {transform: translateY(-90px) scale(.45)}
  80% {transform: translateY(-90px) scale(.45)}
  100% {transform: translateY(0px) scale(1)}
}

@keyframes dot-2-move {
  20% {transform: scale(1)}
  45% {transform: translate(-16px, 12px) scale(.45)}
  60% {transform: translate(-80px, 60px) scale(.45)}
  80% {transform: translate(-80px, 60px) scale(.45)}
  100% {transform: translateY(0px) scale(1)}
}

@keyframes dot-1-move {
  20% {transform: scale(1)}
  45% {transform: translate(16px, 12px) scale(.45)}
  60% {transform: translate(80px, 60px) scale(.45)}
  80% {transform: translate(80px, 60px) scale(.45)}
  100% {transform: translateY(0px) scale(1)}
}

@keyframes rotate-move {
  55% {transform: translate(-50%, -50%) rotate(0deg)}
  80% {transform: translate(-50%, -50%) rotate(360deg)}
  100% {transform: translate(-50%, -50%) rotate(360deg)}
}

@keyframes index {
  0%, 100% {z-index: 3}
  33.3% {z-index: 2}
  66.6% {z-index: 1}
}

/** navbar
--------------------------------------------------------------*/

.site-header {
  position: fixed;
  width: 100%;
  height:85px;
  z-index: 10;
  transition: background 0.3s ease-out;
  /*background-color: var(--dark-color) !important;*/
  /*background: linear-gradient(to bottom,#008081,#007574,#005660)!important;*/
}

.site {
  width:100%;
  height:85px;
  z-index: 10;
  position: fixed;
  background: linear-gradient(to bottom,#008081,#007574,#005660)!important;

}

/*.text-white .nav-link {
  color: var(--secondary-color);
}*/
.text-white .nav-link.active,
.text-white .nav-link:focus,
.text-white .nav-link:hover {
  color: var(--accent-color);
}

/* dark card */
.card-body {
  padding: 2rem 2rem;
}

.card-dark h3 {
  color: #ffffff;
}
/*.card-dark a {
  text-decoration-line: underline;
  color: var(--secondary-color);
}*/
.card-dark a:hover {
  color: #FFFFFF;
}

.custom-width {
  display: flex;
  align-items: flex-end !important;
  justify-content: flex-end !important;
  max-width: 100%; /* or any value */
  width: 100%;
}

/*-Header-------------------------------------------------------------*/
 
/* .container.header
 {
    padding-top: 150px;
}
*/
/* Post Item
--------------------------------------------------------------*/
.post-item {
    max-width: 370px;
    min-height: 300px;
    margin-bottom: 30px;
    margin-right: 30px;
    margin-left: 30px;
    align-content: center;
    /*background-color: var(--dark-color) !important;*/
    background: linear-gradient(to bottom,#008081,#007574,#005660)!important;
    text-align: center;
    border-radius: 10%;
    color:#ffffff;

}
.post-item .post-meta {
    margin-bottom: 10px;
}
.post-item .post-meta a,
.post-content .meta-date {
    color: #aaa;
    margin-bottom: 10px;
}
.post-item .btn-link {
    display: block;
    color: #222;
    position: relative;
    margin-top: 20px;
    text-decoration: none;
}
.post-item .btn-link:after {
    content: '';
    display: block;
    border-bottom: 1px solid #222;
    width: 20px;
    transition: width 0.3s ease-out;
}
.post-item .btn-link:hover:after {
    width: 90px;
}
/* post grid */
.post-grid .post-item .post-image {
    width: 100%;
}
/* posts list */
.post-list-with-thumb .post-item {
    display: flex;
    flex-wrap: nowrap;
}
.post-item .post-image {
    margin-right: 20px;
}

/* Footer Section
--------------------------------------------------------------*/
#footer {
    /*background-color: #111;*/
      background: linear-gradient(to bottom,#008081,#007574,#005660)!important;


}
#footer, #footer a {
    color: #777;
}
#footer a:hover {
    color: #a29d92;
}
#footer ul {
  list-style: none;
}

/* Comment section */
.commentorImg {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}

/* Bootstrap theme override 
--------------------------------------------------------------*/
.accordion-button:not(.collapsed) {
    color: var(--dark-color);
    background-color: transparent;
}
.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active {
  border-color: transparent;
}
.tab-content {
  padding: 20px 0;
}
.accordion-button:focus {
  border-color: var(--grey-color);
  box-shadow: none;
}
.accordion-item {
  border-left: 0;
  border-right: 0;
}

/* primary button */
.link-primary {
  color: var(--accent-color);
}
.link-primary:focus, .link-primary:hover {
  color: var(--secondary-color);
}
.btn {
  /*padding: 0rem 0rem;*/
  font-weight: bold;
}
.btn-link,
.btn-link:hover {
  color: var(--dark-color);
}

/*.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--dark-color);
}*/

.btn-primary {
  background-color:#aee6c5;
  border-color: #aee6c5;
  color:  #014D4E;
}

.btn-primary:hover {
  color: #fff;
  background-color: var(--dark-color);
  border-color: var(--dark-color);
}
.btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.border-primary {
  border-color: var(--accent-color) !important;
}
.bg-primary {
    --bs-bg-opacity: 1;
    background-color: var(--accent-color) !important;
}
.bg-dark {
      background: linear-gradient(to bottom,#008081,#007574,#005660)!important;

}
.bg-grey {
    background-color: var(--grey-color) !important;
}
.text-white .border-top {
    border-top: 1px solid #3b3e42!important;
}

/* blockquote */
.blockquote {
  padding: 10px;
  background-color: var(--secondary-color);
  margin: 0;
}
.blockquote p {
  font-size: 18px;
  line-height: 150%;
  color: #092035;
}
.blockquote cite {
  font-size: 18px;
  margin-top: 27px;
}

@media (max-width: 768px) {
  .blockquote {
    padding: 40px;
  }
}

/* display text */
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-weight: 700;
}
.display-2 em {
  color: var(--accent-color);
}
a:hover {
  color: var(--accent-color);
}

/* nav-link active */
.nav-link {
  color: #ffffff;
  position: relative;
}
.nav-link:not(.dropdown-toggle):after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  background: var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  transition: width 0.3s ease-out;
}
.nav-link:focus,
.nav-link:hover,
.nav-link.active {
  color: var(--dark-color);
}
.nav-link.active:after {
  width: 100%;
}

/* list group */
.list-group-item {
  color: var(--dark-color);
}

/* section header */
section header h2 {
  font-weight: 400;
  font-size: 2.1em;
}
section header .text-muted {
  font-weight: 700;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.offcanvas.show {
  /*background-color: var(--dark-color);*/
  background-color: #014D4E;
}

/**vision and mission start--*/

@media (max-width: 576px) {
.custom-bg {
        margin-left: 10px;
        margin-right: 10px;
}
}


.custom-bg {
 /*background-color: #aee6c5;*/ 
 background: linear-gradient(135deg, #44A9AA, #aee6c5,  #83A1CD);
 animation: rgbShift 20s linear infinite;
 @keyframes rgbShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%}
      100% { background-position: 0% 50%; }
    }
 gap: 30px;
 border-radius: 15px;

}


/**vision and mission end*/


/**counter section start*/

#counter-section {
  padding: 50px 0;
  background: linear-gradient(135deg,#d3d3d3); !important;

}

.box {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 0 30px #44A9AA;/* Soft teal shadow */
  transition: transform 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
}

/* Counter number style */
#counter-section span {
  font-size: 48px;
  font-weight: 700;
  color: #014D4E; /* Dark teal */
  display: block;
  margin-bottom: 10px;
}

/* Counter label (p tag) style */
#counter-section p {
  /*font-size: 18px;*/
  color: #333333;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 576px) {
.box{
        margin-left: 30px;
        margin-bottom: 10px;
}
}


/**counter section end*/

/**team section start*/

/*go to line after 97 for image layout
.zoom-in img {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  width: 100%;
  height: 100%;
  border-radius: 10%;
  object-fit: cover;
}*/


img.lgpostImg {
  width: 100%;
  height: 100%;
  max-width: 300px;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .container-fluid.teamcontainer {
    padding-left: 15px;
    padding-right: 15px;
  }

  a.post-title {
    font-size: 14px;
    text-align: center;
    display: block;
    margin-top: 8px;
  }
}


/**team section end*/

/**donate section start*/

.container.donatecontainer{
  /*background: linear-gradient(to bottom,#008081,#007574,#005660)!important;*/
  background-color: #014D4E;
  min-height: 200px;
  padding-top: 75px;
  padding-left: 60px;
  padding-right: 60px;
  /*margin: 0;
  width: 100%;*/
}

@media (max-width: 767.98px) {
  .container.donatecontainer {
    padding-bottom: 50px;
  }

  .section-title {
  gap:10px; 
}

  .row1.justify-content-center.align-items-center{
    width:300px;
  }

  @media (max-width: 576px) {
 .row1.justify-content-center.align-items-center{
    width:275px;
  }
  }

  .btn.btn-primary.btn-lg.rounded-pill {
    padding: 10px;
    font-size: 10px;
    width: 100%;
  }

}


.section-title {
  display: flex;
  align-items: center !important; 
}

.btn.btn-primary.donbtn.btn-lg.rounded-pill {
    width: 300px;
    height: 75px;
    font-size: 20px;
    text-align: center;
}
/**donate section end*/

/**partners section start*/

.carousel-inner img {
  height: 100px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}


@media (min-width: 992px) {
.container {
        margin-left: 55px;
}
}

/**partners section end*/


/**stories section start*/

img.card-img-top {
  width: 100%;
  height: 250px; /* You can adjust height as needed */
  object-fit: cover; /* Ensures the image fills area without distortion */
}

/*banner carosaul changes*/



.ban img {
  height: 100vh ;
  object-fit: cover;
}

img.headerimg {
  height: 100vh ;
  object-fit: cover;
}

.header {
  padding-top: 60px;
  color: #fff;
  z-index: 10;
}*/

/*nav bar changes*/

.dropdown-menu a {
  transition: background-color 0.3s ease;
}

.dropdown-menu li:hover{
 color: #014D4E;
 background-color: #eeeeee;
}

.dropdown-menu li{
  padding:8px;
}


.dropdown-menu-dark {
  padding-left:0px;
  /*background-color: var(--dark-color);*/
  /*background: linear-gradient(to bottom,#007574,#008081,#229389);*/
}
/*
 - Primary color - #014D4E (Dark Teal)
 - Background color - #d3d3d3 (Light Grey)
 - Secondary color - #44A9AA(Soft teal), #aee6c5(Mint Green), #83A1CD(Muted Blue) 
  */


/*.dropdown-menu-dark:hover{
}*/
