.use-cases-section{
    background: #fff;
    /* padding: 25px 0; */
    padding-top: 25px;
    position: relative;
}
.use-case-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Image container */
.use-case-image {
  position: relative;
  overflow: hidden;
}

/* Before effect like .our-team */
.use-case-image::before {
  content: "";
  width: 100%;
  height: 0;
  /* background-color: rgba(3,146,154,0.9); */
  background: #0d1e46;
  position: absolute;
  bottom: 100%;
  left: 0;
  transition: all 0.3s linear;
  border-radius: 0;
  z-index: 1;
  opacity: .7;
}

/* Hover: overlay grows */
.use-case-card:hover .use-case-image::before {
  height: 100%;
  bottom: 0;
}

/* Image animation */
.case-image {
  width: 100%;
  transition: all 0.6s ease;
  display: block;
}

.use-case-card:hover .case-image {
  transform: scale(0.9);
  box-shadow: 0 0 0 8px #fff;
}

/* Details section */
.use-card-details {
  padding: 20px;
  position: relative;
  z-index: 2;
  height: 140px;
  padding: 20px 0;
}

.case-header {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0d1e46;
}

/* Button */
.case-btn {
  display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid #142b63;
    border-radius: 6px;
    background: transparent;
    color: #142b63;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.use-case-card:hover .case-btn {
  background: #0d1e46;
  color: #fff;
}

.wave-top {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg); 
  margin-top: 20px;
}

.wave-top svg {
  position: relative;
  display: block;
  width: 100%;
  height: 80px; /* medium height, adjust as needed */
}
.wave-top svg path {
  fill: #0d1e46; /* wave color */
}

.asset-solution-section {
  padding: 80px 0px 0px 0px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.asset-solution-container {
  max-width: 1200px;
  margin: 0 auto;
}

.asset-solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.asset-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.asset-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.asset-card-image {
  height: 200px;
  overflow: hidden;
}

.asset-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asset-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.asset-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -30px 25px 20px;
  position: relative;
  z-index: 1;
}

.asset-card-challenge .asset-card-icon {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.2);
}

.asset-card-strategy .asset-card-icon {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
}

.asset-card-outcome .asset-card-icon {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.asset-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 15px;
  padding-left: 25px;
}

.asset-card-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.asset-card-content p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .asset-solution-section {
    padding: 50px 15px;
  }
  
  .asset-solution-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .asset-card-content {
    padding: 20px;
  }
  
  .asset-card-icon {
    margin: -30px 20px 20px;
  }
}

@media (max-width: 480px) {
  .asset-solution-cards {
    grid-template-columns: 1fr;
  }
}

.wave-top {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg); 
  margin-top: 20px;
}

.wave-top svg {
  position: relative;
  display: block;
  width: 100%;
  height: 80px; /* medium height, adjust as needed */
}
.wave-top svg path {
  fill: #0d1e46; /* wave color */
}