


        .header {
            text-align: center;
            margin-bottom: 40px;
            max-width: 800px;
            animation: fadeIn 1s ease-out;
        }

        h1 {
            font-size: 2.8rem;
            margin-bottom: 16px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .gallery-container {
            width: 100%;
            max-width: 1400px;
            position: relative;
            padding: 0 50px;
            margin: 0 auto;
        }

        .gallery-wrapper {
            position: relative;
        }

        .gallery {
            display: flex;
            gap: 30px;
            padding: 20px 10px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: #ff7e5f #f0f0f0;
            scroll-snap-type: x mandatory;
        }

        /* Custom scrollbar styling */
        .gallery::-webkit-scrollbar {
            height: 12px;
        }

        .gallery::-webkit-scrollbar-track {
            background: rgba(240, 240, 240, 0.3);
            border-radius: 10px;
        }

        .gallery::-webkit-scrollbar-thumb {
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            border-radius: 10px;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .gallery::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(to right, #ff6b4a, #fea05a);
        }

        .image-container {
            flex: 0 0 auto;
            width: 380px;
            height: 420px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            scroll-snap-align: start;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
        }

        .image-container:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .gallery-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease;
        }

        .image-container:hover .gallery-image {
            transform: scale(1.05);
        }

        .image-info {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .image-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: #fff;
        }

        .image-description {
            font-size: 1rem;
            opacity: 0.9;
            line-height: 1.5;
        }

        .scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .scroll-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .scroll-btn:active {
            transform: translateY(-50%) scale(0.95);
        }

        .scroll-btn.left {
            left: -10px;
        }

        .scroll-btn.right {
            right: -10px;
        }

        .btn-icon {
            filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
        }

        .gallery-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .nav-btn {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-btn.active {
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            transform: scale(1.3);
        }

        .instructions {
            max-width: 800px;
            margin: 40px auto 0;
            background: rgba(0, 0, 0, 0.2);
            padding: 25px;
            border-radius: 15px;
            font-size: 1rem;
            line-height: 1.6;
            animation: slideUp 1s ease-out;
        }

        .instructions h2 {
            margin-bottom: 15px;
            text-align: center;
            color: #ffd700;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .feature {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .feature:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease-out;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .lightbox-img {
            max-height: 80vh;
            max-width: 90vw;
            border-radius: 10px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
        }

        .lightbox-caption {
            margin-top: 20px;
            font-size: 1.5rem;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 10px 20px;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 8px;
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: -10px;
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .lightbox-close:hover {
            transform: rotate(90deg) scale(1.1);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 2rem;
            color: white;
            transition: all 0.3s ease;
        }

        .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev {
            left: 30px;
        }

        .lightbox-next {
            right: 30px;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .gallery-container {
                max-width: 1000px;
            }
            
            .image-container {
                width: 340px;
                height: 380px;
            }
            
            .gallery-image {
                height: 270px;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            
            .gallery-container {
                padding: 0 40px;
            }
            
            .image-container {
                width: 320px;
                height: 360px;
            }
            
            .gallery-image {
                height: 250px;
            }
            
            .scroll-btn {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .header {
                margin-bottom: 30px;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            .gallery-container {
                padding: 0 30px;
            }
            
            .image-container {
                width: 280px;
                height: 330px;
            }
            
            .gallery-image {
                height: 220px;
            }
            
            .gallery {
                gap: 20px;
            }
            
            .scroll-btn {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
            
            .lightbox-nav {
                width: 45px;
                height: 45px;
                font-size: 1.5rem;
            }
        }
		
		
		
		
        .container_2 {
            max-width: 1200px;
            margin: 30px auto;
            padding: 20px;
        }

        
        header h1 {
            font-size: 2.8rem;
            margin-bottom: 10px;
        }

        header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .content-row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
        }

        .form-container {
            flex: 1;
            min-width: 300px;
            padding: 40px;
            background: linear-gradient(145deg, #f8f9fa, #e9ecef);
        }

        .map-container {
            flex: 1;
            min-width: 300px;
            background: #eee;
            position: relative;
        }

        .form-title {
            text-align: center;
            margin-bottom: 30px;
            color: #2c3e50;
            font-size: 2.2rem;
            position: relative;
            padding-bottom: 15px;
        }

        .form-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #3498db, #2c3e50);
            border-radius: 2px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }

        input, select, textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        input:focus, select:focus, textarea:focus {
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
            outline: none;
        }

        textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(to right, #3498db, #2c3e50);
            color: white;
            border: none;
            padding: 16px 30px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(52, 152, 219, 0.4);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            min-height: 500px;
            border: none;
            display: block;
        }

        .map-overlay {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.9);
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            max-width: 250px;
        }

        .map-overlay h3 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .map-overlay p {
            margin-bottom: 5px;
            font-size: 0.95rem;
        }

        .map-overlay i {
            color: #3498db;
            margin-right: 8px;
            width: 18px;
        }

        footer {
            text-align: center;
            margin-top: 40px;
            color: white;
            font-size: 1rem;
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .content-row {
                flex-direction: column;
            }
            
            .form-container, .map-container {
                min-width: 100%;
            }
            
            header h1 {
                font-size: 2.2rem;
            }
        }