@charset "utf-8";
/* CSS Document */
 /* Popup Gallery Styles */
        .gallery-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.92);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .gallery-popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .gallery-container {
            width: 90%;
            max-width: 1000px;
            background: #1e1e2e;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .gallery-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: #2a2c3c;
            color: white;
        }
        
        .gallery-title {
            font-size: 24px;
            font-weight: 600;
        }
        
        .close-gallery {
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .close-gallery:hover {
            color: #ff6b6b;
        }
        
        .gallery-slider {
            position: relative;
            height: 500px;
        }
        
        .slide {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .slide img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .gallery-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            pointer-events: none;
        }
        
        .gallery-controls button {
            pointer-events: auto;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .gallery-controls button:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .gallery-dots {
            display: flex;
            justify-content: center;
            padding: 20px;
            gap: 10px;
            background: #2a2c3c;
        }
        .gallery-dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
}
.gallery-dot.active {
   background: #4ecdc4;
}
       
        
        @media (max-width: 768px) {
            .gallery-slider {
                height: 300px;
            }
            
            .gallery-controls button {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
}