/* Card Container */



  @media (max-width: 1068px) {
    .about-btn {
      transform: translate(135%, 50%);
    }
  }

 
  
  .lead-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
  }
  
  .lead-image-area {
    position: relative;
    
    height: auto;
    flex-shrink: 0;
  }
  
  .lead-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #ffb347 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(50px);
    top: 0;
    left: 0;
  }
  
  .lead-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
  }
  
  .lead-content {
    max-width: 600px;
  }
  
  .lead-content h1 {
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .text-highlight {
    color: #ff7a45;
  }
  
  .text-bold {
    font-weight: bold;
  }
  
  .lead-content p {
    margin-bottom: 20px;
    line-height: 1.8;
  }
  
  .lead-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: transparent;
    color: #fff;
    border: 2px solid #ffb347;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .lead-button:hover {
    background: #ffb347;
    color: #0e001d;
  }
  
  .arrow {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease;
  }
  
  .lead-button:hover .arrow {
    transform: translateX(5px);
  }
  
  @media (max-width: 768px) {
    .lead-wrapper {
      flex-direction: column-reverse;
      text-align: center;
    }
  }
/* expertise card */
.expertise-card {
  border-radius: 20px;
  background-color:#1A0505	;
  color: white;
  border: 1px solid transparent;
  transition: 50ms;
}

.expertise-card:hover{
  border-color: #911115;
}
