/* Areas Section */
.areas-covered {
    background: linear-gradient(135deg, #f0f8ff, #e0f7fa);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  }
  
  .areas-covered h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .areas-covered .areas-img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .areas-covered .areas-img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  }
  