/*--------------------------------------------------------------
 emergency exit light styling
--------------------------------------------------------------*/
.emergency-light-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
  }
  
  .emergency-light-item {
    flex: 1 1 calc(50% - 20px); 
    display: flex;
    flex-direction: column;
    gap: 5px;
    background-color: #f9f9f9; 
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .emergency-light-item:hover {
    transform: translateY(-5px); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
  }
  
  .emergency-light-item h6 {
    font-weight: bold;
    margin: 0;
    color: #333; 
  }
  
  .emergency-light-item p {
    margin: 0;
    line-height: 1.6;
    color: #555; 
  }
  
  
  @media (max-width: 768px) {
    .emergency-light-item {
        flex: 1 1 100%; 
    }
  }
  
  /*--------------------------------------------------------------
  # ends
  --------------------------------------------------------------*/