.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo-image {
    width: 80px;
    height: auto;
  }
  
  .text-container {
    display: flex;
    flex-direction: column;
  }
  
  .ramca-title {
    font-family: 'Black Ops One', cursive;
    font-size: 2.7rem;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.0;
    text-transform: uppercase;
    text-align: center;
    transition: color 0.3s ease;
  }
  
  .industrial-text {
    font-family: 'Black Ops One', cursive;
    font-size: 1.3rem;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.0;
    text-transform: uppercase;
    text-align: center;
    transition: color 0.3s ease;
  }
  
  .logo-container:hover .ramca-title,
  .logo-container:hover .industrial-text {
    text-shadow: 0 0 10px rgba(47, 86, 124, 0.5);
    transition: text-shadow 0.3s ease;
  }

