/* Default: stays at bottom */
.bpFabWrapper {
  bottom: 20px !important; /* adjust as needed */
  right: 20px !important;
}

/* Mobile screens: push it up more */
@media (max-width: 768px) {
  .bpFabWrapper {
    bottom: 70px !important; /* move it above your footer & mobile sticky bar */
  }
}


:root{
  --contact-bg: rgba(14,19,25,0.88); /* matches your primary */
  --contact-bg-hover: rgba(14,19,25,1);
  --contact-accent: #ffffff;
  --contact-shadow: 0 8px 24px rgba(0,0,0,.18);
}

/* Desktop pill (right side) */
.contact-fab{
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}
.contact-fab .fab{
  width: 48px;
  height: 48px;
  background: var(--contact-bg);
  color: var(--contact-accent);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  display: grid;
  place-items: center;
  box-shadow: var(--contact-shadow);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  text-decoration: none;
}
.contact-fab .fab:hover{
  background: var(--contact-bg-hover);
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.45);
}

/* Mobile bottom bar (hidden on desktop) */
.contact-bottom{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 8px calc(10px + env(safe-area-inset-bottom));
  background: var(--contact-bg);
  display: none; /* shown on mobile only */
  justify-content: space-around;
  align-items: center;
  gap: 6px;
  z-index: 1000;
  backdrop-filter: saturate(140%) blur(6px);
}
.contact-bottom a{
  color: var(--contact-accent);
  text-decoration: none;
  font-size: 12px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  min-width: 90px;
  border-left: 1px solid rgba(255,255,255,.12);
}
.contact-bottom a:first-child{ border-left: 0; }
.contact-bottom .icon{
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
}

/* Responsive switch */
@media (max-width: 768px){
  .contact-fab{ display: none; }
  .contact-bottom{ display: flex; }
}

/* Optional: avoid overlapping a bottom cookie bar/footer spacer */
.has-bottom-bar{
  padding-bottom: 70px; /* add this class to body if needed */
}


.btn-dark {
  background-color: #0E1319;
  color: #ffffff;
  transition: background-color 0.3s ease;
  font-weight: 600;
  border-radius: 0.5rem; /* adjust if needed */
  
}

.btn-dark:hover {
  background-color: #1a222d; /* slightly lighter/darker shade */
}


  :root { --header-bg-pad: 18px; } /* tweak this */

  /* make sure the header can show the bleed below it */
  #site-header { overflow: visible; }

  /* background-only extender; off by default */
  #site-header::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    bottom: calc(-1 * var(--header-bg-pad));
    height: 0;                    /* collapsed by default */
    background: inherit;          /* uses current header background (even transparent) */
    pointer-events: none;         /* won’t block clicks under it */
    transition: height .2s ease;  /* smooth in/out */
  }

  /* turn the extender on only when header is revealed */
  #site-header.is-revealed::after {
    height: var(--header-bg-pad);
  }

.counter::after {
    content: "+";
}

/* Hide all carousel controls */
.carousel-control,
.nav-control {
    display: none;
}

/* Carousel container */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
}

/* Hide all slides by default */
.carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show slide 1 when slide-1 is checked */
#slide-1:checked ~ .carousel-container .slide-1 {
    display: block;
    opacity: 1;
}

/* Show slide 2 when slide-2 is checked */
#slide-2:checked ~ .carousel-container .slide-2 {
    display: block;
    opacity: 1;
}

/* Show slide 3 when slide-3 is checked */
#slide-3:checked ~ .carousel-container .slide-3 {
    display: block;
    opacity: 1;
}

/* Custom radio button styling for navigation */
.testimonials-carousel input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Navigation button states */
label[for="prev-testimonials"],
label[for="next-testimonials"] {
    transition: all 0.2s ease;
}

label[for="prev-testimonials"]:hover,
label[for="next-testimonials"]:hover {
    background-color: #f3f4f6;
    transform: translateY(-1px);
}

label[for="prev-testimonials"]:active,
label[for="next-testimonials"]:active {
    transform: translateY(0);
}

/* Fixed testimonial card structure */
.testimonial-card {
    display: flex;
    flex-direction: column;
    min-height: 280px;
    max-height: 280px;
    min-width: 250px;
    max-width: 250px;
}

.testimonial-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    max-height: 80%;
    overflow: scroll;
    scrollbar-width: none; /* Firefox */
}
.testimonial-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial-text {
    flex-grow: 1;

}

.testimonial-author {
    margin-top: auto;
    flex-shrink: 0;
}

/* Responsive height adjustments */
@media (max-width: 640px) {
    .testimonial-card {
        min-height: 260px;
        max-height: 260px;
    }
}

@media (min-width: 641px) {
    .testimonial-card {
        min-height: 300px;
        max-height: 300px;
    }
}

/* Ensure equal width on desktop */
@media (min-width: 640px) {
    .carousel-slide .flex {
        display: flex;
    }
    
    .testimonial-card {
        flex: 1;
        width: 50%;
    }
}

/* Ensure images are properly displayed */
.testimonial-author img {
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

/* Ensure text content is properly spaced */
.testimonial-content > div:first-child {
    margin-bottom: 1rem;
}

.testimonial-text {
    margin-bottom: 1rem;
}
/* why choose us section  */
/* Hover effects */
.group:hover .group-hover\:shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .group {
        margin-bottom: 1rem;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* .group {
    animation: fadeInUp 0.6s ease-out;
} */

.group:nth-child(1) {
    animation-delay: 0.1s;
}

.group:nth-child(2) {
    animation-delay: 0.2s;
}

.group:nth-child(3) {
    animation-delay: 0.3s;
}