.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background: #1e252f;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 60rem;
  padding: 10px 0;
}

.marquee-wrapper {
  gap: 30px;
  animation: marquee 20s linear infinite;
  will-change: transform;
  transform: translateX(100%);
}
.marquee-content {
  display: inline-block;
  padding-right: 50px;
  color: #fff;
}
@keyframes marquee {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
.marquee-container:hover .marquee-wrapper {
  animation-play-state: paused;
}

.notice-box {
  background: #1e252f;
  width: 30px;
  height: 20px;
  z-index: 99;
}

.ul-feature {
  height: 260px;
  width: 240px;
  background: rgb(144, 87, 62);
  background: linear-gradient(
    80deg,
    rgba(192, 121, 90, 0.961) 3%,
    rgba(227, 95, 38, 1) 100%
  );
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* .ul-feature{
    height: 18rem;
    width: 13rem;
    margin: 2rem;
    background: rgb(144,87,62);
    background: linear-gradient(80deg, rgb(157, 95, 69) 3%, rgba(227,95,38,1) 100%);
      position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
   
} */
.card-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 60px;
}

.ul-feature h3 {
  color: #fff;
  margin-top: 2rem;
}
.ul-feature a {
  margin-top: 1rem;
  color: #eb5310;
  background: #ffffff48;
  border: 1px solid;
  padding: 8px;
  border-radius: 5rem;
  padding: 4px;
  text-align: center;
  font-size: 12px;
  border-color: transparent;
  width: 150px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ul-feature a:hover {
  background-color: #1e252f;
}

.box {
  transition: transform 0.3s ease;
}

.box:hover {
  transform: scale(1.05);
}

#footer-txt {
  width: 300px;
}

#footer-contant {
  padding-right: 200px;
}

.pdf-btn {
  background-color: #ec672e;
  border-radius: 10px;
  padding: 10px;
  width: 130px;
  margin-left: 50px;
  margin-bottom: 20px;
}

#noties {
  width: 80%;
  margin-left: 20px;
}

.donation-form .ul-btn {
  padding: 25px;
}
#resposive-box {
  margin-left: 25px;
}
@media (max-width: 768px) {
  #resposive-box {
    margin-left: 70px;
  }

  .card-img {
    margin-left: 70px;
  }

  #logo-container .ul-section-title img {
    width: auto;
  }
}

@media (max-width: 400px) {
  #resposive-box {
    margin-left: 30px;
  }
  #logo-container .ul-section-title img {
    width: auto;
  }
}

/* Base styles for the right section */
.ul-header-top-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 30px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.phone-link {
  white-space: nowrap;
}

.phone-link a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-link a:hover {
  color: #ddd;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .ul-header-top-right {
    margin-left: 15px;
    gap: 15px;
  }

  .social-links {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .ul-header-top-right {
    display: none;
  }
}

.experience-section {
  padding: 60px 0;
  background-color: #fff;
}

.section-title {
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.section-title p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.experience-card {
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.experience-icon {
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  border-radius: 50%;
  background: rgb(255 154 53 / 10%);
  margin: 0 auto 25px;
  font-size: 36px;
  color: #eb5310;
  transition: all 0.3s ease;
}

.experience-card:hover .experience-icon {
  background: #eb5310;
  color: #fff;
}

.experience-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.experience-card p {
  color: #666;
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.experience-card .number {
  font-size: 40px;
  font-weight: 700;
  color: #eb5310;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.experience-card .number span {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}

.ul-team-member{
  height: 315px !important;
}
/*  auto scroller */

.auto-scroll-container {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 15px;
}

.auto-scroll-wrapper {
  display: inline-flex;
  white-space: nowrap;
  gap: 20px;
  margin-left: 50px;
}


.auto-scroll-item {
  flex: 0 0 auto;
  width: 240px !important;
  height: 300px !important;
}


.auto-scroll-container::-webkit-scrollbar {
  display: none;
}

.auto-scroll-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (max-width: 991.98px) {
  .ul-project-title {
    font-size: 1rem !important;
    /* Adjust as needed */
    line-height: 1.3 !important;
  }

  .ul-project-descr {
    font-size: 0.8rem !important;
    /* Adjust as needed */
    line-height: 1.2 !important;
  }

  .ul-project-btn {
    font-size: 0.9rem !important;
  }
}

/* blog section style auto scroll */

@media (min-width:991.98px){
    .ul-blog-marquee-container{
      margin-left: 40px;
    }
    .team-scrolling{
      margin-left: 90px;
    }
}

.ul-blog-marquee-container {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  /* Space for scrollbar */
}

.ul-blog-marquee-track {
  display: inline-flex;
  gap: 20px;
  padding: 10px 0;
}

.ul-blog-marquee-item {
  display: inline-block;
  width: 350px;
  /* Adjust width as needed */
  white-space: normal;
  vertical-align: top;
}

/* Hide scrollbar but keep functionality */
.ul-blog-marquee-container::-webkit-scrollbar {
  display: none;
}


/* Base styles */
.ul-section-title.card-title {
    font-size: 1.2rem; /* Default size */
    margin: 0.5rem 0;
    text-align: center;
    word-wrap: break-word;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .ul-section-title.card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .ul-section-title.card-title {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .ul-section-title.card-title {
        font-size: 0.98rem;
    }
}

@media (max-width: 576px) {
    .ul-section-title.card-title {
        font-size: 0.98rem;
    }
}

@media (min-width: 1400px) and (max-width: 1920px){
  .auto-scroll-wrapper {
    margin-left: 120px;
  }
}
