

.color-white{
  color: #ffffff;
}
.color-black{
  color: #000000;
}
.color-theme{
  color: var(--theme-color);
}

.sec-title h2 {
  font-size: 55px;
}
.list-item li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  padding-left: 34px;
  margin-bottom: 16px;
}
.list-item li i {
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 8px;
  color: #fff;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  background: var(--theme-color);
}
.event-details-content .content-four .list-item li i {
  font-size: 8px;
  color: #fff;
  line-height: 20px;
  text-align: center;
}

.header-logo {
  width: 280px;
  padding: 10px;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a{
  color: var(--theme-color);  
}

.main-footer {
  position: relative;
  background-color: var(--text-color);
}

.handle-preloader .animation-preloader .spinner {
  border: 3px solid #000;
  border-top-color: rgb(0, 0, 0);
  border-top-color: rgba(0, 0, 0, 1);
}
.handle-preloader .animation-preloader .spinner {
  animation: spinner 4s infinite linear;
  border-radius: 50%;
  height: 150px;
  margin: 0 auto 45px auto;
  width: 150px;
}

.mobile-menu .nav-logo img {
  max-width: 250px;
}
.mobile-menu .nav-logo {
  padding: 50px 15px;
  padding-bottom: 20px;
}
.banner-style-four .slide-item .bg-layer::before {
  opacity: 0;
}
.banner-style-four .slide-item::before {
  opacity: 0;
}

/* Donate - Popup */
.donate-content .item-quantity::before {
  position: absolute;
  content: 'Rs';
  left: 55px;
  top: 9px;
  font-size: 20px;
  font-weight: 700;
  color: #232323;
  font-family: 'Quicksand', sans-serif;
}


/* About */
.content_block_four .content-box .tab-btns li {
  width: 50%;
}
.content_block_four .content-box .inner-box p {
  font-size: 18px;
  line-height: 28px;
}

.about-style-four .image_block_three .image-box .curve-text {
  background-color: #F8EFE8;
}

.image-border {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #fff;
  border-radius: 20px;
  border: 4px solid #fff;
  margin-bottom: 30px;
  /* z-index: 1; */
}

.image_block_three .image-box .curve-text {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 156px;
  height: 156px;
  /* line-height: 156px; */
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* center vertically */
}

.image_block_three .image-box .curve-text .icon-box {
  position: relative;
  display: inline-block;
  width: 104px;
  height: 104px;
  line-height: 104px;
  line-height: 0px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
}

.image_block_three .image-box .curve-text .curved-circle {
  position: absolute;
  left: 78px;
  top: 0px;
  font-size: 14px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(-30deg);
  letter-spacing: 1.2px;
  /* font-size: 14px; */
  /* word-spacing: 23px; */
  /* letter-spacing: 2px; */
}

.curved-circle {
    /* Rotate animation */
    animation: rotateText 15s linear infinite;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Team */
.team-block-two .inner-box .content-box h3 {
  display: block;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 2px;
}
.team-details-content .image-box {
  position: relative;
  display: block;
  padding-left: 55px;
  padding-right: 66px;
  padding-bottom: 20px;
}


/* About */
.accordion-box .accordion .acc-btn h4 {
  font-size: 18px;
  line-height: 24px;
}

/* Team Details */
.team-details-content .content-box p {
  max-width: 800px;
  color: #444;
  margin-bottom: 27px;
}
.team-details-content .content-box h2 {
  font-size: 30px;
  line-height: 50px;
  margin-bottom: 4px;
}

/* Events */
.news-block-two .inner-box .image-box .post-date {
  position: absolute;
  right: 30px;
  bottom: -20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 20px;
  color: var(--title-color);
  font-weight: 500;
  padding: 10px 10px;
  max-width: 141px;
  width: 141px;
  text-align: center;
  justify-content: center;
  z-index: 1;
  background: white;
  border-radius: 20px;
}


/* Team Popup modal*/
	/* Popup modal base */
	.team-modal {
	  display: none; 
	  position: fixed; 
	  z-index: 1000; 
	  left: 0; top: 0;
	  width: 100%; height: 100%; 
	  background: rgba(0,0,0,0.7);
	  justify-content: center;
	  align-items: center;
	  overflow-y: auto; /* allow scroll if content overflows */
	  padding: 40px 15px; /* spacing so content isn’t stuck at edges */
	}

	/* Popup content */
	.team-modal-content {
	  background: #fff;
	  padding: 30px;
	  border-radius: 10px;
	  max-width: 90%;
	  width: 100%;
	  max-height: 90vh;   /* limit height */
	  overflow-y: auto;   /* scroll inside the modal */
	  text-align: left;
	  position: relative;
	  animation: popupFade 0.3s ease;
	}

	/* Close button */
	.team-modal-close {
	  position: absolute;
	  top: 10px; right: 15px;
	  font-size: 24px;
	  cursor: pointer;
	}

	/* Animation */
	@keyframes popupFade {
	  from { transform: scale(0.7); opacity: 0; }
	  to { transform: scale(1); opacity: 1; }
	}