.section-container {
      background-color: #fff;
      border-radius: 15px;
      padding: 1rem;

    }

    .gallery-indicators.carousel-indicators{
        bottom: -50px;
    }
         .stats-section-container {
            background-image: url('../../images/new/counter\ background.png'); /* Placeholder image */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 600px;
            border-radius: 0px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            max-width: 100%;
        }
        .stats-section-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .stats-row {
            position: relative;
            z-index: 2;
            color: #FFFFFF;
            text-align: center;
        }

        .stat-box {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 1.5rem 1rem;
            margin-bottom: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }

        .stat-number.is-visible {
            opacity: 1;
            transform: translateY(0);
        }


        .stat-label {
            font-size: 1.1rem;
            line-height: 1.4;
        }

        @media (max-width: 991.98px) {
            .stats-section-container {
                min-height: 300px;
                margin: 1.5rem auto;
                padding: 1.5rem 0;
            }
            .stat-box {
                padding: 1rem 0.75rem;
                margin-bottom: 1rem;
            }
            .stat-number {
                font-size: 2rem;
            }
            .stat-label {
                font-size: 1rem;
            }
        }

        @media (min-width: 992px) {
            .stats-row .col-lg-3 {
                padding-left: 0.75rem;
                padding-right: 0.75rem;
            }
        }
        .donation-item {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 200px;
            width: 100% !important;
            background-repeat: no-repeat;
        }

        .donation-item .item-icon {
            width: 3rem;
            height: 5rem;
            margin-bottom: 1.5rem;
            object-fit:contain
        }
        @media (max-width: 767.98px) {
            .donation-item {
                padding: 1.5rem 0.75rem;
            }
            .donation-item .item-icon {
                width: 4rem;
                height: 4rem;
            }
            .donation-item .item-text {
                font-size: 1.1rem;
            }
        }
        .blog-header {
            text-align: center;
        }

        .blog-header img {
            width: 40px;
            height: 30px;
            margin-bottom: 1rem;
        }

        .blog-header h1 {
            color: #ef7d07;
            font-size: 50px;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        .blog-carousel-wrapper {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .blog-carousel-wrapper .carousel-inner {
            overflow: hidden;
            padding: 0 0.75rem;
        }

        .blog-carousel-wrapper .carousel-track {
            display: flex;
            transition: transform 0.6s ease-in-out;
            flex-wrap: nowrap;
        }

        .blog-carousel-wrapper .card-wrapper {
            flex: 0 0 auto;
            width: calc(100% / 4);
            padding: 0 0.75rem;
        }
        @media (max-width: 1199.98px) {
            .blog-carousel-wrapper .card-wrapper {
                width: calc(100% / 3);
            }
        }

        @media (max-width: 991.98px) {
            .blog-carousel-wrapper .card-wrapper {
                width: calc(100% / 2);
            }
        }

        @media (max-width: 767.98px) {
            .blog-carousel-wrapper .card-wrapper {
                width: 100%;
            }
            .blog-carousel-wrapper .carousel-inner {
                padding: 0 0.75rem;
            }
        }
        .blog-carousel-wrapper .card {
            border: none;
            border-radius: 0.5rem;
            box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .blog-carousel-wrapper .card-img-top {
            border-top-left-radius: 0.5rem;
            border-top-right-radius: 0.5rem;
            object-fit: cover;
            height: 180px;
        }

        .blog-carousel-wrapper .card-body {
            padding: 1rem;
            text-align: right;
            flex-grow: 1;
        }

        .blog-carousel-wrapper .card-text {
            font-size: 1.1rem;
            font-weight: bold;
            color: #333;
            line-height: 1.4;
        }

        .blog-carousel-wrapper .carousel-control-prev,
        .blog-carousel-wrapper .carousel-control-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 3rem;
            height: 3rem;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 50%;
            opacity: 0.8;
            transition: background-color 0.3s ease, opacity 0.3s ease;
            z-index: 10;
        }

        .blog-carousel-wrapper .carousel-control-prev:hover,
        .blog-carousel-wrapper .carousel-control-next:hover {
              background:linear-gradient(#EF7B03, #FFC181);
            opacity: 1;
        }

        .blog-carousel-wrapper .carousel-control-prev {
            right: -1.5rem;
        }
        .blog-carousel-wrapper .carousel-control-prev-icon,
        .blog-carousel-wrapper .carousel-control-next-icon {

            width: 1.5rem;
            height: 1.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .blog-carousel-wrapper .carousel-control-prev-icon::after {
            background: url(../../images/new/left\ arrow\ slider\ carousel.svg);
            font-size: 1.5rem;
            color: white;
            font-weight: bold;
        }

        .blog-carousel-wrapper .carousel-control-next-icon::after {
            background: url(../../images/new/right\ arrow\ slider\ carousel.svg);
            font-size: 1.5rem;
            color: white;
            font-weight: bold;
        }
        .blog-carousel-wrapper .carousel-indicators {
            position: static;
            margin-top: 2rem;
            margin-bottom: 0;
            justify-content: center;
        }

        .blog-carousel-wrapper .carousel-indicators [data-bs-target] {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ccc;
            opacity: 0.7;
            margin: 0 5px;
            border: none;
        }

        .blog-carousel-wrapper .carousel-indicators .active {
            background-color: #ef7d07;
        }
        p.clr-primary.display-1.display-md-3.fs-2.pb-4.sub {
             color: #304998 !important;
        }
        @media (max-width: 767.98px) {
  p.clr-primary.display-1.display-md-3.fs-2.pb-4.sub {
    padding: 0px 30px!important;
  }
}


@media (max-width: 575.98px) {
  .object-fit-contain {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
    width: 90px;
    height:100px;

  }
  .almdona-mob {
    display: flex;
    justify-content: center;
    align-items: center !important;
    font-size: 20px !important;
    font-weight: 400 !important;
}
}
h5.almdona-mob.pb-4.fs-4.fs-sm-2.d-flex.justify-content-center.align-items-center.f-sm-6.m-auto {
    text-align: center;
}

h5.almdona-mob.pb-4.fs-3.fs-sm-2.d-flex.justify-content-center.align-items-center.f-sm-6.m-auto {
    text-align: center;
}
@med
@media (min-width: 576px) and (max-width: 991.98px) {
  .object-fit-contain {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 200px;
    height: 400px;
    margin-bottom: 70px;
  }
    [dir="ltr"] .object-fit-contain {
    height: 400px;
    margin-bottom: 70px;
  }
}
@media (max-width: 767.98px) {
  #carouselExampleIndicators .carousel-item {
    height: 400px !important;
  }
  #carouselExampleIndicators .carousel-item {
    height: 400px !important;
  }
  #carouselExampleIndicators .carousel-inner {
    height: 400px !important;
  }
  #carouselExampleIndicators .carousel-item.active {
    height: 400px !important;
  }
}
@media (max-width: 991.98px) {
  #carouselExampleIndicators .carousel-item {
    height: 400px;
  }
}
#carouselExampleIndicators .carousel-item {
  height: 600px;
}
@media (max-width: 1280px) {
  #carouselExampleIndicators .carousel-item {
    height: 400px;
  }
}

#storiesCarousel .carousel-inner{
    padding:15px
}
[dir="rtl"] p.display-1.d-flex.display-md-3.fs-2.pb-4.sub {
  text-align: right;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  [dir="ltr"] p.display-1.d-flex.display-md-3.fs-2.pb-4.sub {
    text-align: left;
  }
}
