.logo-with-white-shadow {
    max-height: 60px;
    /* This adds a white drop shadow that can appear as a glow if your logo has transparent edges */
    filter: drop-shadow(0px 0px 10px #fff);
  }

/* Custom Styles */

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }
  
  .navbar-brand {
    font-weight: bold;
  }
  
  .navbar-nav .nav-link {
    color: #fff;
  }
  
  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:hover {
    color: #ccc;
  }
  
  .hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    padding: 100px 0;
  }
  
  .hero h2 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.5rem;
  }
  
  .card {
    border: none;
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: scale(1.05);
  }
  
  .why-choose-us .benefit-icon {
    margin-bottom: 15px;
    color: #28a745;
  }
  
  .why-choose-us h5 {
    margin-top: 10px;
  }
  
  .testimonials blockquote {
    border-left: 5px solid #ccc;
    padding-left: 15px;
    font-style: italic;
  }
  
  .how-it-works .step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px auto;
    background-color: #28a745;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 60px;
  }
  
  .talent-showcase .card {
    transition: transform 0.3s;
    border: none;
  }
  
  .talent-showcase .card:hover {
    transform: scale(1.05);
  }
  
  .contact {
    background-color: #f8f9fa;
  }
  
  footer p {
    margin: 0;
  }