 body {
            background-color: #1a1a1a;
        }

        .navbar {
            border-bottom: 2px solid #dc3545;
        }

        .section {
            background-color: #1a1a1a;
        }

        .gallery-item {
            position: relative;
            margin-bottom: 30px;
            overflow: hidden;
            border: 2px solid #dc3545;
            border-radius: 8px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(220, 53, 69, 0.7);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .gallery-text {
            color: white;
            font-size: 1.2rem;
            text-align: center;
            padding: 1rem;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .video-container {
            border: 2px solid #dc3545;
            border-radius: 8px;
            padding: 10px;
            background-color: #2a2a2a;
        }

        .section-title {
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: #dc3545;
        }
        
        .social-icon {
            color: #dc3545;
            font-size: 24px;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .social-icon:hover {
            color: white;
        }

        .nav-link:hover {
            color: #dc3545 !important;
        }

        .btn-danger {
            background-color: #dc3545;
            border-color: #dc3545;
            transition: all 0.3s ease;
        }

        .btn-danger:hover {
            background-color: transparent;
            color: #dc3545;
            border-color: #dc3545;
        }
		 .slideshow-container {
            position: relative;
            max-width: 1000px;
            margin: auto;
        }

        .slide {
            display: none;
            position: relative;
        }

        .slide img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 8px;
        }

        .slide.active {
            display: block;
            animation: fade 1s ease-in-out;
        }

        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 24px;
            cursor: pointer;
            background-color: rgba(0,0,0,0.5);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s ease;
        }

        .prev { left: 20px; }
        .next { right: 20px; }

        .prev:hover, .next:hover {
            background-color: rgba(0,0,0,0.8);
        }

        .caption {
            position: absolute;
            bottom: 0;
            width: 100%;
            padding: 15px;
            text-align: center;
            background-color: rgba(0,0,0,0.7);
            color: white;
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
        }
		 .dot-container {
            text-align: center;
            margin: 20px 0;
        }

        .dot {
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: 0.3s ease;
        }

        .dot.active {
            background-color: #dc3545;
        }

        @keyframes fade {
            from {opacity: 0.4}
            to {opacity: 1}
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            opacity: 0;
            transition: 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-text {
            color: white;
            font-size: 1.2rem;
            text-align: center;
        }

        .video-container {
            margin-bottom: 30px;
        }


         /******responsive gallery*******/
         .slider-container {
            max-width: 1000px;
            position: relative;
            margin: auto;
            overflow: hidden;
            border: 2px solid #dc3545;
            border-radius: 8px;
            }
    
            .slide {
            display: none;
            width: 100%;
            }
    
            .slide img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 16/9;
            }
    
            .slide.active {
            display: block;
            animation: fade 0.8s ease;
            }
    
            .caption {
            text-align: center;
            padding: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            position: absolute;
            bottom: 0;
            width: 100%;
            }
    
            .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: auto;
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 24px;
            border-radius: 0 3px 3px 0;
            user-select: none;
            background: rgba(0, 0, 0, 0.3);
            border: none;
            transition: 0.3s ease;
            }
    
            .next {
            right: 0;
            border-radius: 3px 0 0 3px;
            }
    
            .prev:hover, .next:hover {
            background: rgba(0, 0, 0, 0.8);
            }
    
            .dot-container {
            text-align: center;
            padding: 15px;
            }
    
            .dot {
            cursor: pointer;
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            transition: 0.3s ease;
            }
    
            .dot.active, .dot:hover {
            background-color: #dc3545;
            }
    
            @keyframes fade {
            from {opacity: 0.4}
            to {opacity: 1}
            }
    
            @media (max-width: 768px) {
            .prev, .next {
                padding: 8px;
                font-size: 18px;
            }
            
            .caption {
                font-size: 14px;
                padding: 8px;
            }
            }