/* Parent Class */
.industry-problem-section {
      background: linear-gradient(183deg, #d1e9f2 -47.07%, rgba(241, 245, 250, 0) 84.6%);
    border-top: 2px solid #d1e9f2;
  position: relative;
}
.industry-problem-section:before {
    background: radial-gradient(ellipse at center, rgba(125, 227, 249, .55) 0, rgba(241, 245, 250, 0) 53%);
    content: "";
    height: 750px;
    left: -10%;
    position: absolute;
    top: 4%;
    width: 750px;
    z-index: -5;
}

.industry-problem-section .problem-card {
  background: linear-gradient(89.98deg, #FFFFFF -4.58%, rgba(255, 255, 255, 0.784314) 61.41%, rgba(255, 255, 255, 0) 100.52%);
  border-radius: 26px;
  padding: 40px;
  position: relative;
  
}


.industry-problem-section .problem-card:before {
  background: linear-gradient(321.91deg, #0083b0 14.12%, #caf2ff 90.18%);
    border-radius: 50%;
    box-shadow: 0 4px 55px 0 rgba(0, 0, 0, .04);
    content: "";
    filter: blur(7px);
    height: 71px;
    left: -47px;
    position: absolute;
    top: 40%;
    width: 71px;
    z-index: -5;
}



.industry-problem-section .card-divider {
  border: 0;
  height: 3px;
background: linear-gradient(89.96deg, #D1E9F1 -4.56%, rgba(255, 255, 255, 0.784314) 76.68%, rgba(255, 255, 255, 0) 103.07%);
  margin: 32px 0;
}

/* Bottom Challenge Area */
.industry-problem-section .challenge-area {
  display: flex;
  align-items: center;
  gap: 48px;
}

.industry-problem-section .challenge-left {
  flex: 0 0 280px;
}


.industry-problem-section .challenge-heading {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  display: inline-block;
  border-bottom: 3px solid rgba(206, 235, 244, 1);
  padding-bottom: 12px;
  display:block;
}


.industry-problem-section .challenge-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-problem-section .challenge-right {
  flex: 1;
  font-size
}

.industry-problem-section .challenge-right p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light-gray);
  margin: 0;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .industry-problem-section .section-title {
    font-size: 2rem;
  }
  .industry-problem-section .challenge-area {
    gap: 20px;
  }
  .industry-problem-section .challenge-left {
    width: 200px;
  }
  .industry-problem-section:before{
   display:none; 
  }
}

@media (max-width: 768px) {
 
  .industry-problem-section .problem-card {
    padding: 24px;
    padding-right:0px;
    
  }
  .industry-problem-section .challenge-left {
    flex: 0 0 auto;
    width: 100%;
}
  
  
 .industry-problem-section .challenge-heading{
   display: inline-block;
   border-bottom:0;
   font-size:initial;
  font-weight: 500;
   margin-bottom:0;
   padding-bottom: 0;
  }
  .industry-problem-section .challenge-area {
    flex-direction: column;
    align-items: center;
    gap: 13px;
  }
  .industry-problem-section .challenge-left p{
    text-align:center;
  }
 .industry-problem-section .organization-problem{
   text-align:center;
   display:flex;
   justify-content: space-between;
   align-items:center;
  }
  
  
  .industry-problem-section .challenge-arrow {
    transform: rotate(90deg); 
    margin-left: 20px;
            width: 10px;
        height: 12px;
  }
}