.header-frostbyte {
    
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
    margin-top: 10px;
  }
  
  .wrap-bumblebee {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .breadcrumbs-marshmallow {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .breadcrumbs-marshmallow a {
    color: #666;
    text-decoration: none;
  }
  
  .breadcrumbs-marshmallow span {
    color: #999;
  }
  
  .title-giraffe {
    font-size: 28px;
    
  }
  
  /* Filters */
  .filters-squidward {
    
    padding: 20px 0;
    border: 1px solid #6685c2;
    background-color: #6685c22c;
  }
  
  .filter-octopus {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .filter-octopus select,
  .filter-octopus input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1 1 200px;
  }
  
  /* Portfolio Grid */
  .portfolio-penguin {
    padding: 40px 0;
  }
  
  .grid-dragon {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
  }
  
  .card-unicorn {
    
    border: 1px solid #e0e0e0;
    background-color: white;
    
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: box-shadow 0.3s ease;
  }
  
  .card-unicorn:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .card-unicorn img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  /* No Results */
  .no-results-snake {
    text-align: center;
    padding: 20px;
    font-size: 18px;
    color: #999;
    display: none;
  }
  
  .hidden-snake {
    display: none;
  }
  
  /* Footer */
  .footer-elephant {
    text-align: center;
    padding: 20px 0;
    background-color: #f8f8f8;
    font-size: 14px;
    color: #777;
  }

  /* Modal animation */
.modal-hawk {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .modal-hawk.active-falcon {
    opacity: 1;
    visibility: visible;
  }
  


  /* General Card Styles */
.card-unicorn {
    background: white;
    border: 1px solid #e0e0e0;
    box-shadow: 5px 5px #6685c2;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .card-unicorn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .card-unicorn img {
    width: 60%;
    object-fit: contain;
    margin-right: 10px;
    
  }
  video {
  width: 100px;
    
    min-width: 100%;
    min-height: 100%;
  
    object-fit: cover;
    z-index: -1;
  }
  .card-unicorn {
    display: none; /* Hide all cards by default */
  }
  
  

  
  /* Modal Styles */
  .modal-hawk {
    display: none;
    position: fixed;
    top: 20%;
    left: 30%;
    width: 100%;
    height: 100%;
    background-color: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .modal-hawk img{
   
  }

  @media (max-width: 768px) {
    .modal-hawk {
      display: none;
      position: fixed;
      top: 20%;
      left: 15%;
      width: 100%;
      height: 100%;
      background: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .card-unicorn img{
      width: 40%;
    }

  }
  
  .modal-hawk.active-falcon {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
  
  .modal-content {
    
    padding: 20px;
    border-radius: 5px;
    width: 70%;
    max-width: 500px;
    text-align: center;
    background-color: white;
  }
  .modal-content h2{
    color: rgb(0, 0, 15);
    font-weight: 600;
  }
  .modal-content p{
    color: rgb(0, 0, 15);
    font-weight: 600;
  }
  
  .close-modal {
    font-size: 30px;
    color: #aaa;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  
 
  
  /* For the profile details inside the modal */
  #company-name {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  #company-logo {
    max-width: 150px;
    margin-bottom: 20px;
  }
  
  #company-description {
    font-size: 16px;
    color: black;
  }
  
  /* Adjust the button for toggling details */
  .toggle-parrot {
    padding: 10px;
    border: 1px solid #6685c2;
    border-radius: 4px;
    background-color: transparent;
    color: #6685c2;
    cursor: pointer;
    font-size: 10px;
  }
  
  .toggle-parrot:hover {
    background-color: #4a6a9d;
  }
  /* Hero Section Styles */
.hero-eagle {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('/img/Vista_Companies_Portfolio_Header.jpg') center/cover no-repeat;
    color: #fff;
   
    text-align: center;
    position: relative;
    height: 100vh;
    display: flex; /* enable flexbox */
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */
    text-align: center;
    padding: 0 20px; /* small padding for mobile */
    position: relative;
      
      
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .hero-content p {
    font-size: 20px;
    line-height: 1.6;
  }
  