.text-white {
   color: #f9f9f9;
}

.theme-color {
   color: #2957a4;
}



/*******************************************/
/* Optional: To isolate styles for .values section if needed */
.event.values {
   padding: 60px 0;
   background: #f9f9f9;
}

.values .event-item {
   background: #ffffff;
   border: 1px solid #ddd;
   border-radius: 8px;
   padding: 20px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease-in-out;
}

.values .event-item:hover {
   box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
   transform: translateY(-5px);
}

.values .event-text h3 {
   font-size: 20px;
   font-weight: 600;
   margin-bottom: 10px;
   color: #333;
}

.values .event-text p {
   font-size: 15px;
   color: #555;
   line-height: 1.6;
   margin-bottom: 0;
}

@media (max-width: 767.98px) {
   .values .event-item {
      padding: 15px;
   }

   .values .event-text h3 {
      font-size: 18px;
   }

   .values .event-text p {
      font-size: 14px;
   }
}


@media (max-width: 768px) {
   [data-parallax="scroll"] {
      background-size: cover !important;
      background-position: center center !important;
      background-repeat: no-repeat !important;
      background-attachment: scroll !important;
   }
}



/***************************************/
/* Partnership Section */
.csr-partners-section {
   background-color: #f9f9f9;
}

.csr-box {
   /* background: #ffffff; */
   border: 1px solid #ddd;
   border-radius: 12px;
   padding: 20px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
}

.csr-box:hover {
   transform: translateY(-5px);
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.icon-box {
   flex-shrink: 0;
   width: 40px;
   height: 40px;
   background-color: #007bff;
   /* color: #fff; */
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-right: 15px;
   font-size: 18px;
}

.csr-text p {
   margin: 0;
   font-size: 16px;
   line-height: 1.6;
   color: #f9f9f9;
}

.partner-card {
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   border: 1px solid #e0e0e0;
}

.partner-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-card img {
   object-fit: contain;
}
/* Partnership Section Ends */
/***************************************/


.themed-list li {
   position: relative;
   padding-left: 30px;
   margin-bottom: 15px;
   font-size: 16px;
   color: #333;
   line-height: 1.6;
}

.themed-list li i {
   position: absolute;
   left: 0;
   top: 2px;
   color: #007bff;
   font-size: 25px;
}

/********************************************/
/* Facilities Section */
/**********************************************/
.card {
   transition: all 0.3s ease;
}

.card:hover {
   transform: translateY(-6px);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.carousel-inner img {
   height: 240px;
   object-fit: cover;
}

/********************************************/
/* Gallery Section Home Page*/
/**********************************************/
.gallery-card {
   border-radius: 10px;
   overflow: hidden;
   transition: all 0.4s ease;
}

.home-gallery .gallery-card h5 {
   font-size: 25px;
   font-weight: 700;
   margin-bottom: 10px;
}

.gallery-img-wrap {
   height: 250px;
}

.gallery-img {
   object-fit: cover;
   height: 100%;
   transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-img {
   transform: scale(1.05);
}

.overlay {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   background-color: rgba(0, 0, 0, 0.4);
   opacity: 0;
   transition: all 0.3s ease;
}

.gallery-card:hover .overlay {
   opacity: 1;
}

.gallery-details {
   border-top: 1px solid #eee;
   transition: background 0.3s ease;
}

.gallery-card:hover .gallery-details {
   background-color: #f7f9fb;
}

/********************************************/
/* Gallery Section Page*/
/**********************************************/

.gallery-card {
   transition: 0.3s ease-in-out;
   border: none;
   border-radius: 10px;
   overflow: hidden;
   background: #fff;
}

.gallery-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.gallery-card .carousel-inner img {
   height: 220px;
   object-fit: cover;
}

.gallery-card .card-body h5 {
   font-weight: 600;
}

.fixed-height {
   height:600px;
}

.event-text {
   height: 250px;
   /* adjust as needed */
   overflow: hidden;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.event-text p {
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 4;
   /* max lines shown */
   -webkit-box-orient: vertical;
}

.causes-item {
   height: 250px;
   /* adjust as needed */
   overflow: hidden;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.causes-item p {
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 4;
   /* max lines shown */
   -webkit-box-orient: vertical;
}