/* Custom styles to enhance Bootstrap and Tailwind */
:root {
    --primary-color: #006aff;
    --accent-color: #d52b1e;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .btn-primary:hover {
    background-color: #0056cc;
    border-color: #0056cc;
  }
  
  .text-primary {
    color: var(--primary-color) !important;
  }
  
  .bg-primary {
    background-color: var(--primary-color) !important;
  }
  
  .text-warning {
    color: var(--accent-color) !important;
  }
  
  .bg-warning {
    background-color: var(--accent-color) !important;
  }
  
  .border-warning {
    border-color: var(--accent-color) !important;
  }
  
  /* Icon sizing */
  [data-lucide] {
    width: 1rem;
    height: 1rem;
  }
  
  .w-4 {
    width: 1rem;
  }
  
  .h-4 {
    height: 1rem;
  }
  
  /* Smooth transitions */
  .btn,
  .card,
  a {
    transition: all 0.2s ease-in-out;
  }
  
  .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Custom spacing */
  .gap-3 {
    gap: 1rem;
  }
  
  /* Backdrop blur effect */
  .backdrop-blur {
    backdrop-filter: blur(8px);
  }
  
  /* Text balance for better line breaks */
  .text-balance {
    text-wrap: balance;
  }
  
  /* Carousel Styling */
  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
  }
  
  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    opacity: 1;
    background-color: #0056cc;
  }
  
  .carousel-control-prev {
    left: -25px;
  }
  
  .carousel-control-next {
    right: -25px;
  }
  
  .carousel-indicators {
    bottom: -50px;
  }
  
  .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dee2e6;
    border: none;
    margin: 0 4px;
    transition: all 0.3s ease;
  }
  
  .carousel-indicators button.active {
    background-color: var(--primary-color);
  }
  
  .carousel-indicators button:hover {
    background-color: var(--primary-color);
    opacity: 0.7;
  }
  
  /* Carousel item styling */
  .carousel-item {
    transition: transform 0.6s ease-in-out;
  }
  
  /* Image styling in carousel */
  .carousel-item img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .display-2 {
      font-size: 2.5rem;
    }
  
    .display-5 {
      font-size: 2rem;
    }
    
    /* Mobile carousel adjustments */
    .carousel-control-prev,
    .carousel-control-next {
      width: 40px;
      height: 40px;
    }
    
    .carousel-control-prev {
      left: -20px;
    }
    
    .carousel-control-next {
      right: -20px;
    }
    
    .carousel-indicators {
      bottom: -40px;
    }
    
    .carousel-indicators button {
      width: 10px;
      height: 10px;
      margin: 0 3px;
    }
    
    /* Stack image and content vertically on mobile */
    .carousel-item .row.g-3 {
      flex-direction: column;
    }
    
    .carousel-item .col-md-4 {
      margin-bottom: 1rem;
    }
    
    .carousel-item img {
      height: 150px !important;
    }
  }
  
  @media (max-width: 576px) {
    .carousel-control-prev,
    .carousel-control-next {
      display: none;
    }
    
    .carousel-indicators {
      bottom: -30px;
    }
  }
  