/* Base Styles */
.animated-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
   
  }
  .col1{
    color: #cad0d9;
  }
  .particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .hero-slideshow {
    position: relative;
    height: 100%;
  }
  
  .hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 1s ease;
  }
  
  .hero-slide.active {
    opacity: 1;
  }
  
  .slide-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 45, 91, 0.7);
    z-index: 2;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem;
  }
  
  /* Animations */
  .fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
  }
  
  .slide-up {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s forwards;
  }
  
  .zoom-in {
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 1s forwards;
  }
  
  .float-in {
    opacity: 0;
    transform: translateX(100px);
    animation: floatIn 1s forwards;
  }
  
  .pulse-on-hover:hover {
    animation: pulse 1s infinite;
  }
  
  /* Keyframes */
  @keyframes fadeIn {
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    to { 
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes zoomIn {
    to { 
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes floatIn {
    to { 
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }



  /* Navigation Container */
.slide-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
  }
  
  /* Navigation Buttons */
  .slide-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slide-nav button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
  }
  
  .slide-nav button:active {
    transform: scale(0.95);
  }
  
  /* Dots Container */
  .slide-dots-container {
    flex-grow: 1;
    max-width: 200px;
    display: flex;
    justify-content: center;
  }
  
  .slide-dots {
    display: flex;
    gap: 10px;
  }
  
  /* Individual Dots */
  .slide-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .slide-dots .dot.active {
    background: white;
    transform: scale(1.2);
  }
  
  .slide-dots .dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.7);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .slide-nav {
      bottom: 20px;
      gap: 10px;
    }
    
    .slide-nav button {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
    
    .slide-dots .dot {
      width: 10px;
      height: 10px;
    }
  }