body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
.top-header {
    background-color: white;
    color: rgb(101, 197, 232);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap; /* keep items in one line */
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    flex-shrink: 0;
}

.company-name {
    font-size: 32px;
    
    text-transform: uppercase;
    font-weight: bolder;
    letter-spacing: 1px;
    color: rgb(240, 158, 6);
    margin: 0;
    padding: 0;
    white-space: nowrap; /* prevent breaking into 2 lines */
}

.text-highlight {
    color: rgb(0, 191, 255);
}

.owner-img {
    height: 60px;
    width: auto;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
    flex-shrink: 0;
}

/* Responsive: Mobile adjustments */
@media (max-width: 767.98px) {
    .logo-img {
        height: 40px;
    }

    .company-name {
        font-size: 16px;
    }

    .owner-img {
        height: 40px;
    }
}


  .phone-call-button {
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 1000;
    
  }
  
  .phone-call-button a {
    position: relative;
    display: inline-block;
  }
  
  .phone-call-button a img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .phone-call-button a img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  
  .phone-tooltip {
    visibility: hidden;
    background-color: #25d366;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    bottom: 60px;
    left: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
  }
  
  .phone-call-button a:hover .phone-tooltip {
    visibility: visible;
    opacity: 1;
  }
  
  @media (max-width: 600px) {
    .phone-call-button a img {
      width: 50px;
      height: 50px;
    }
  }
  .disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  