/* Custom Banner Slider Styles */
.custom-banner-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
  }
  
  .banner-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
  }
  
  .banner-slide.active {
    opacity: 1;
  }
  
  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: 1;
  }
  
  .banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
  }
  
  .banner-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .banner-text {
    max-width: 600px;
    animation: slideInUp 1s ease-out;
  }
  
  .banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .banner-subtitle {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  .banner-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  .banner-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #007cba, #0096d6);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .banner-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 124, 186, 0.4);
    background: linear-gradient(45deg, #0096d6, #007cba);
    color: white;
    text-decoration: none;
  }
  
  /* Navigation Arrows */
  .banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
  }
  
  .banner-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
  }
  
  .banner-prev {
    left: 30px;
  }
  
  .banner-next {
    right: 30px;
  }
  
  .banner-nav i {
    font-size: 1.2rem;
  }
  
  /* Dots Indicator */
  .banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
  }
  
  .banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .banner-dot.active,
  .banner-dot:hover {
    background: white;
    border-color: white;
  }
  
  /* Animations */
  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .custom-banner-slider {
      height: 500px;
    }
  
    .banner-title {
      font-size: 2.5rem;
    }
  
    .banner-subtitle {
      font-size: 1.5rem;
    }
  
    .banner-description {
      font-size: 1rem;
    }
  
    .banner-nav {
      width: 50px;
      height: 50px;
    }
  
    .banner-prev {
      left: 15px;
    }
  
    .banner-next {
      right: 15px;
    }
  
    .banner-content .container {
      padding: 0 15px;
    }
  }
  
  @media (max-width: 480px) {
    .custom-banner-slider {
      height: 400px;
    }
  
    .banner-title {
      font-size: 2rem;
    }
  
    .banner-subtitle {
      font-size: 1.2rem;
    }
  
    .banner-button {
      padding: 12px 24px;
      font-size: 1rem;
    }
  }
  