.logo-scroller {
  overflow: hidden;
  position: relative;
}

.scrolling-logos {
  display: flex;
  width: fit-content;
  animation: scroll-left 30s linear infinite;
}

.logos {
  display: flex;
}

.client-logo {
  padding: 0 30px;
  min-width: 120px; /* adjust as needed */
}
/* Floating button style - middle right */
.contact-us-btn {
  position: fixed;
  right: 20px; /* Adjust as needed */
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  padding: 15px 10px; /* Adjust padding for button size */
  /* Remove default Bootstrap horizontal padding if needed */
  /* You may want to customize this further */
}

.contact-us-btn span {
  display: inline-block; /* Essential for rotating text within the button */
  transform: rotate(-90deg); /* Rotates text 90 degrees counter-clockwise */
  white-space: nowrap; /* Prevents text from wrapping */
}

.services-icons img{
  margin: 20px;
  height: 60px; /* Adjust height as needed */
  width: 60px; /* Full width */
}
.circle-img-bordered {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ecc362; /* Border color */
}
/* Floating Contact Us Button - CSS Only */
.floating-contact-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: white;;
    text-decoration: none;
    padding: 15px 8px;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
    cursor: pointer;
    outline: none;
    border: 2px solid var(--accent-color);
    background: rgba(9, 16, 48, 1);;
}

.floating-contact-btn:hover {
    transform: translateY(-50%) translateX(-5px);
    color: white;
    /* background: var(--accent-color); */
    border-color: var(--accent-color);
}

.floating-contact-btn:active {
    transform: translateY(-50%) translateX(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.contact-text {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-md);
    letter-spacing: 2px;
    white-space: nowrap;
    color: white;
  
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-contact-btn {
        font-size: 12px;
        padding: 12px 6px;
    }
    .contact-text {
        font-size: var(--font-size-sm);
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .floating-contact-btn {
        font-size: 11px;
        padding: 10px 5px;
        right: -2px;
    }
    .contact-text {
        font-size: var(--font-size-sm);
        letter-spacing: 1px;
    }
}




/* Animation for page load */
@keyframes slideInRight {
    from {
        transform: translateY(-50%) translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

.floating-contact-btn {
    animation: slideInRight 0.8s var(--ease-standard) 0.5s both;
}

/* Focus styles for accessibility */
.floating-contact-btn:focus-visible {
    outline: var(--focus-outline);
    outline-offset: 2px;
}



.floating-contact-btn {
    z-index: 1000;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
