


   /* Section Container */
  .wcu-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
  }

  .wcu-title {
    font-size: 36px;
    color: #000;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .wcu-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
  }

  /* Cards Grid */
  .wcu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  /* Individual Card */
  .wcu-card {
    background-color: #fff;
    padding: 20px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .wcu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  }

  /* Hover Overlay */
  .wcu-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #d67e3c;
    opacity: 0.05;
    transition: height 0.3s;
    z-index: 0;
  }

  .wcu-card:hover::before {
    height: 100%;
  }

  .wcu-card img {
 
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
  }



  .wcu-card-text {
    font-size: 17px;
    color: #555;
    position: relative;
    z-index: 1;
  }
  .wcu-card i {
    color: #d67e3c;
    font-size: 50px;
  }
.wcu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wcu-card-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #38006f;
  font-weight: bold;
  position: relative;
  z-index: 1;
  min-height: 60px; /* adjust this based on your tallest title */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

  /* Responsive */
  @media(max-width:768px) {
    .wcu-title {
      font-size: 28px;
    }
    .wcu-subtitle {
      font-size: 16px;
    }
    .wcu-card {
      padding: 20px 15px;
    }
  }
  .prolite_event img {
    height: 234px;
    object-fit: cover;
  }

      
      /* -------- BLOG CARD -------- */
      .custom-blog-card {
        position: relative;
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); */
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
        cursor: pointer;
      }

      .custom-blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
      }

      .custom-blog-img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: transform 0.5s ease;
        position: relative;
        z-index: 0;
      }

      /* ---------- OVERLAY EFFECT ON HOVER ---------- */
      .custom-blog-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        right: 51%;
        bottom: 0;
        background: rgba(255, 255, 255, 0.3);
        opacity: 0;
        pointer-events: none;
        transition: all 400ms linear;
        z-index: 1;
        border-radius: 20px;
      }

      .custom-blog-card:hover::after {
        left: 0;
        right: 0;
        opacity: 1;
      }

      /* ---------- HOVER IMAGE ZOOM ---------- */
      .custom-blog-card:hover .custom-blog-img {
        transform: scale(1.1) rotate(1deg);
      }

      .custom-blog-content {
        padding: 25px;
        padding-bottom: 10px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        z-index: 2; 
        background-color: #EBEBEB;
        border-bottom-right-radius: 55px;
      }

      .custom-blog-category {
        display: inline-block;
        background: #d67e3c;
        color: #fff;
        font-size: 16px;
        padding: 5px 14px;
        border-radius: 30px;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      .custom-blog-title {
        font-size: 17px;
        color: #2C2A4A;
        font-weight: 600;
        margin-bottom: 10px;
        transition: color 0.3s ease;
        min-height: 60px;
      }

      .custom-blog-card:hover .custom-blog-title {
        color: #d67e3c;
      }

      .custom-blog-desc {
        font-size: 16px;
        color: #858383;
        line-height: 1.6;
        flex-grow: 1;
        margin-bottom: 15px;
      }

      .custom-blog-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 15px;
        margin-top: auto;
        position: relative;
      }

      .custom-author {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
      }

      .custom-author img {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        border: 2px solid #d67e3c;
        flex-shrink: 0;
      }

      .custom-author span {
        font-size: 16px;
        font-weight: 500;
        color: #858383;
      }

      .custom-blog-date {
        font-size: 16px;
        color: #858383;
        margin-bottom: 10px;
        font-style: italic;
      }

      .custom-read-more {
        color: #d67e3c;
        font-weight: 600;
        text-decoration: none;
        position: relative;
        font-size: 17px;
      }

      .custom-read-more::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 100%;
        height: 2px;
        background: linear-gradient(45deg, #6a11cb, #d67e3c);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
      }

      .custom-read-more:hover::after {
        transform: scaleX(1);
        transform-origin: left;
      }

      
      /* ---------- RESPONSIVE ---------- */
      @media (max-width: 768px) {
      .about-section-design h4{
        font-size: 17px !important;
      }

      }

      @media (max-width: 480px) {
        .custom-blog-title {
          font-size: 1.1rem;
        }

        .custom-blog-card {
          border-radius: 15px;
        }

        .custom-blog-img {
          height: 180px;
        }
      }
      .custom-read-button {
        background: #F2F2F2;
        position: absolute;
        right: -44px;
        padding-top: 10px;
        padding-bottom: 32px;
        bottom: -30px;
        width: 150px;
        /* height: 97px; */
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 30px;
      }
         
.custom-service-bg{
  background-color: #F2F2F2;
}

 .custom-service-card {
        position: relative;
        background-color: #fff;
        border: none;
        border-top-right-radius: 40px;
        border-bottom-left-radius: 40px;
        border-top-left-radius: 40px;

        height: 100%;
        color: #fff;
        transition: all 0.4s ease;
      }
      /* Second image layer */
      .custom-service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: #38006f;
        opacity: 0;
        transition: opacity 0.6s ease;
        border-top-right-radius: 40px;
        border-bottom-left-radius: 40px;
        border-top-left-radius: 40px;
        z-index: 0;
      }

      /* When hover: show second image */
      .custom-service-card:hover::before {
        opacity: 1;
      }

      /* Keep text/content above */
      .custom-service-card .content {
        position: relative;
        z-index: 1;
        padding: 30px;
      }

      .custom-service-card:hover h5,
      .custom-service-card:hover ul li {
        color: #fff;
      }

      .custom-service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        transition: background 0.4s ease;
      }

       .custom-service-card:hover::before {
        background:#38006f;
       
      } 
      .custom-service-card li {
        color: #38006f;
      }

      .custom-service-card .card-body {
        position: relative;
        z-index: 2;
        padding: 2rem;
      }

      .custom-service-card h5 {
        font-weight: 700;
        font-size: 24px;
        line-height: 1.4;
        min-height: 3.5rem;
        color: #38006f;
        line-height: 23px;
      }

      .custom-service-card ul {
        margin-top: 15px;
        padding-left: 22px;
        height: 9.5rem;
      }

      .custom-service-card ul li {
        position: relative;
        margin-bottom: 0.7rem;
        font-size: 17px;
      }

      .custom-service-card ul li::before {
        font-weight: 900;
        position: absolute;
        left: 3px;
        color: #ffb703;
        font-size: 7px;
        top: 8px;
      }

       .custom-service-card:hover {
        transform: translateY(-8px);
      } 
      .custom-service-card:hover .plus-icon {
        background-color: #38006f;
      }

      .custom-service-card .card-body {
        display: flex;
        flex-direction: column;
        height: 100%;
      }

      .custom-service-card h5 {
        min-height: 3.5rem;
      }

      .custom-service-card img {
        flex-shrink: 0;
        margin-top: 15px;
        margin-bottom: 1rem;
        height: 234px;
        object-fit: cover;
      }

      .custom-service-card-bg {
            position: absolute;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: #f2f2f2;
    border-top-left-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
      }
      .custom-service-card-bg-border-one {
        position: absolute;
        right: -11.5%;
        bottom: 73.1%;
        width: 50px;
        height: 50px;
        border-right: 16px solid #f2f2f2;
        border-bottom: 16px solid #f2f2f2;
     
      }
      .custom-service-card-bg-border-two {
        position: absolute;
        left: -27.6px;
        bottom: -13px;
        width: 40px;
        height: 50px;
        border-right: 13px solid #f2f2f2;
        border-bottom: 13px solid #f2f2f2;
       
      }
      .custom-service-card-bg-text{
           position: absolute;
    z-index: 1;
    background-color: #d67e3c;
    width: 96%;
    height: 91%;
    margin-left: 5px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-bottom-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 40px !important;

        
      }
       .custom-service-card a{
         position: absolute;
        bottom: 0px;
        right: 0px;
        width: 40%;
        height: 60px;
        background-color: #f2f2f2;
        border-top-left-radius: 20px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
         z-index: 22;
       }
       .custom-service-card:hover .custom-service-card-bg-text{
           background-color: #d67e3c;
       }

      /* + icon style */
      .plus-icon {
           position: absolute;
    bottom: 2px;
    right: 0px;
    background-color: #d67e3c;
    color: #fff;
    font-size: 1.2rem;
    /* padding: 8px 12px; */
    width: 50px;
    border-radius: 20px;
    display: flex
;
    z-index: 3;
    /* transition: transform 0.3s 
   ease; */
    height: 70px;
    justify-content: center;
    align-items: center;
      }

      /* .plus-icon:hover {
        transform: rotate(90deg);
      } */
       .plus-icon i{
             transition: transform 0.3s ease; 
       }
          .plus-icon i:hover {
        transform: rotate(90deg);
      } 


      
         
      .custom-our-impact{
            padding-bottom: 2rem;
    border-bottom: 1px solid #fff;
      }
      
      .custom-about-us .custom-span-line{
            
    width: 100px;
    height: 3px;
    margin-top: 5px;
    background-color: #d67e3c;
      }
      .custom-our-services-index{
        border-radius: 40px;
        width: 100%;
        height: 100%;
        padding: 40px 30px;
        background: url(/static/website-img/our-services-card-bg.webp) no-repeat center center;
        background-size: cover;
      }
      .custom-our-services-index h2{
         font-size: 35px;
         color: #fff;
         font-weight: bold;
         
      }
      .custom-our-services-index p{
         font-size: 20px;
         color: #fff;
      }
      @media screen and (max-width:769px) {
        .custom-our-services-index{
          height: 536px !important;
        }

      .custom-image-home{
        height: 100% !important;
      }

      }
      .custom-image-home{
        height: 75% ;
      }
      .custom-contact-us-bg{
        background-color: #f2f2f2 !important;
      }
      .custom-impact-number{
        width: 100%;
        height: 100%;
        background: url(/static/website-img/bg-of-internal-banners.webp) no-repeat center center;
        background-size: cover;
      }
     
      
