body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
  }
  
  /* Hero Section */
  .hero {
    background: url('../Assets/CLIENTS/private\ client.jpg') center/cover no-repeat;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 50px 20px;
  }
  
  .hero-overlay h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .hero-overlay p {
    font-size: 18px;
  }
  
  /* Back Button */
  .back-btn {
    display: inline-block;
    margin: 20px;
    text-decoration: none;
    color: #fff;
    background: #f12711;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s;
  }
  
  .back-btn:hover {
    background: #c31432;
  }
  
  /* Logo Grid */
  .logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
  }
  
  .logo-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .logo-box:hover {
    transform: scale(1.05);
  }
  
  .logo-box img {
    max-width: 180px;
    height: auto;
  }
  