  .sub-service-section {
      padding: 80px 0;
    }

    .sub-service-content h2 {
      font-weight: 600;
      font-size: 30px;
      margin-bottom: 20px;
    }
    .sub-service-content h4{
      font-weight: 500;
      font-size: 25px;
       color: (--text-color);
       letter-spacing: 0.3px;
       margin-bottom: 20px;
    }
    .sub-service-content p {
      color: #383838;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.6;
      letter-spacing: 0.6px;
    }

    .cta-btn {
      background: #ff5722;
      color: #fff;
      border: none;
      padding: 12px 24px;
      margin-bottom: 20px;
    }

   .service-hero {
  background-color: #fff;
  overflow: hidden;
}
.pattern-bg {
  background-image: url('assests/pattern.svg');
  opacity: 0.1;
  background-repeat: repeat;
  pointer-events: none;
  z-index: -1;
}
.img-overlay-wrapper {
  position: relative;
}
.main-img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.overlay-img {

    height: 230px;
    width: 280px;
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
    object-fit: cover;
    flex-shrink: 0;        
    max-width: none;       
    max-height: none;      
}




.display-6 {
  font-size: 2.5rem;
}


    .we-offer-section {
      padding: 60px 0;
      background: #fff;
    }

    .we-offer-section h3 {
      color: var(--text-color);
      font-weight: 700;
      text-align: center;
     
    }

    .offer-card {
      background: var(--light-gold-bg);
      padding: 30px;
      height: 200px;
      border-radius: 12px;
      transition: all 0.3s ease;
      text-align: center;
      border-bottom: 4px solid var(--secondary-color);
      /* box-shadow: 0 0 0 rgba(0,0,0,0); */
    }

    .offer-card:hover {
      background: #fff;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      transform: translateY(-5px);
    }

    .offer-card h5 {
      font-weight: 500;
      margin-top: 13px;
      color: var(--text-color);
      letter-spacing: 0.6px;
    }

    .offer-card p {
      font-size: 0.95rem;
      color: #383838;
    }
    @media (max-width: 1200px) {
      .offer-card {
        height: auto;
      }
    }
    @media (max-width: 768px) {
  .overlay-img {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
    .offer-card{
      height: auto;
    }
}