/* @tailwind base;
@tailwind components;
@tailwind utilities; */

@layer components {
  /* .btn-primary {
      @apply py-1.5 px-3 text-center bg-blue-700 rounded-md text-white;
  } */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
 
  
  .carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
  }
  
  .carousel-slide.active {
    opacity: 1;
    z-index: 2;
  }
  
  .placeholder {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .placeholder-text {
    font-size: 1.5rem;
    color: #555;
    font-weight: bold;
  }
  
  .carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  
  .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .carousel-dot.active {
    background-color: white;
  }
  
  .carousel-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
  }
  
  .arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .arrow:hover {
    background-color: rgba(255, 255, 255, 0.9);
  }
  
  /* Make carousel responsive */
  @media (max-width: 768px) {
    .carousel-container {
      height: 250px;
    }

  }
  
  @media (min-width: 769px) and (max-width: 1024px) {
    .carousel-container {
      height: 400px;
    }
  }
  
  @media (min-width: 1025px) {
    .carousel-container {
      height: 600px;
    }
  }



 .logo{
    width: 210px;
    height: auto;
    padding: 5px 0;
 }

 /* fallback if JS fails */
body.invisible {
  visibility: hidden;
}

details > summary {
  list-style: none; /* Remove default marker */
}

details > summary::-webkit-details-marker {
  display: none; /* Remove the arrow in WebKit browsers */
}



.sticky-icons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.sticky-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.sticky-icons a.call-icon {
  background-color: #007BFF; /* Blue for call */
}

.sticky-icons a:hover {
  transform: scale(1.1);
}

.sticky-icons img {
  width: 28px;
  height: 28px;
}

h1 {
  font-size: clamp(1.5rem, 5vw, 2.5rem); /* responsive size */
}


