.individual-service-hero {
    background-color: var(--primary-bg);
    padding: 4rem 2rem;
}
  
  .hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 2rem;
  }
  
  .hero-left {
    flex: 1;
    min-width: 280px;
    color: #fff;
  }
  
  .hero-left h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 5px rgba(204, 178, 68, 0.7), 0 0 10px rgba(204, 178, 68, 0.5);
  }
  
  .hero-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 0 0 5px rgba(204, 178, 68, 0.7), 0 0 10px rgba(204, 178, 68, 0.5);
    color: #fff;
  }
  
  
  .hero-btn {
    display: inline-block;
    background: transparent;
    color: var(--text-light);
    border: 2px solid #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);

  }
  
  .hero-btn:hover {
    background: #fff;
    color: var(--primary-bg-dark);
  }
  
  .hero-right {
    flex: 1;
    min-width: 280px;
    text-align: center;
  }
  
  .hero-right img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-container {
      flex-direction: column-reverse;
      text-align: center;
    }
  
    .hero-left h1 {
      font-size: 2rem;
    }
  
    .hero-left p {
      font-size: 1rem;
    }
  
    .hero-btn {
      margin-top: 1rem;
    }
  }

  /* HOW IT WORKS SECTION */
  .timeline {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
  }
  
  .circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid var(--primary-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    flex-shrink: 0;
    background-color: white;
  }
  
  .text h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #222;
  }
  
  .text p {
    margin: 0.25rem 0 0;
    color: #555;
    line-height: 1.4;
  }
  
  /* Optional line between steps */
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 4px;
    height: calc(100% - 60px);
    background-color: var(--primary-bg-darker);
    z-index: -1;
  }
  
  /* Mobile Styles */
  @media (max-width: 600px) {
    .step {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .step:not(:last-child)::after {
      left: 50%;
    }
  
    .circle {
      margin-bottom: 0.5rem;
    }
  }

  .hiw-heading{
    text-align: center;
    color: var(--primary-bg-dark);
    font-size: 2em;
  }

  /* WHAT WE DELIVER */
  
.what-we-deliver {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
  }
  
  .what-we-deliver .content {
    flex: 1 1 400px;
  }
  
  .what-we-deliver h2 {
    font-size: 2rem;
    color: var(--primary-bg-dark);
    margin-bottom: 1rem;
  }
  
  .what-we-deliver p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1rem;
  }
  
  .what-we-deliver ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: #333;
  }
  
  .what-we-deliver ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  
  .what-we-deliver .image-container {
    flex: 0 0 300px;
    text-align: center;
  }
  
  .what-we-deliver img {
    max-width: 100%;
    border-radius: 12px;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .what-we-deliver {
      flex-direction: column;
      text-align: center;
    }
  
    .what-we-deliver .content {
      padding: 0 1rem;
    }
  
    .what-we-deliver ul {
      list-style: none;
      padding: 0;
    }
  
    .what-we-deliver ul li::before {
      content: '• ';
      color: var(--primary-bg-darker);
      font-weight: bold;
    }
  }

  /* INFORMATION SECTION */
  .info-section {
    background-color: var(--primary-bg-dark);
    color: #fff;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 1rem;
  }
  
  .info-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #fff;
    padding-bottom: 0.5rem;
  }
  
  .info-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .info-section li {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
  }
  
  .info-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .info-section {
      grid-template-columns: 1fr;
      padding: 2rem 1rem;
    }
  }
  