 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
            background: #fff;
            line-height: 1.6;
        }

       
   nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding-top: 10px;
    transition: transform 0.3s ease; 
}
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            margin-top: 5px;
            height: 90px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .content-box {
            background: whitesmoke;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-left: 5px solid #BA8452;
        }

        .logo-img {
            height: 85px;
            width: auto;
            margin-top: 10px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin-right: 720px;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: color 0.3s;
            font-weight: bold;
        }

        .nav-links a:hover {
            color: #BA8452;
            text-decoration: underline;
        }

        .nav-links a.active {
            color: #BA8452;
            text-decoration: underline; 
        }

        html {
            scroll-behavior: smooth;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            z-index: 1002;
            padding: 10px;
            position: relative;
        }
        
        .logo-container {
            z-index: 1003;
            position: relative;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background-color: #333;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .hero-wrapper {
            margin-top: 100px;
        }

        .hero {
            position: relative;
            height: 470px;
            overflow: hidden;
        }

        .hero-slider {
            width: 100%;
            height: 100%;
        }

        .slide {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .hero-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 30px;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 10px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
        }

        .gallery-section {
            max-width: 1400px;
            margin: 60px auto;
            padding: 0 40px;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 80px;
            margin-bottom: 80px;
        }

        .gallery-item {
            display: flex;
            flex-direction: column;
        }

        .gallery-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 400;
            color: #333;
            text-align: center;
            margin-bottom: 30px;
        }

        .main-image-container {
            position: relative;
            width: 100%;
            height: 350px;
            margin-bottom: 25px;
            overflow: hidden;
            border-radius: 0;
        }

        .main-gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 0;
            font-size: 1.8rem;
            color: #333;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .slider-arrow:hover {
            background: #BA8452;
            color: white;
        }

        .slider-prev {
            left: 0;
        }

        .slider-next {
            right: 0;
        }

        .thumbnail-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

        .thumbnail-grid img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 0;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .thumbnail-grid img:hover {
            transform: scale(1.02);
            border-color: #BA8452;
        }

        .thumbnail-grid img.active {
            border-color: #BA8452;
        }

        footer {
            background: #BA8452;
            color: white;
            padding: 0;
            margin-top: 120px;
        }

        .footer-main {
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem;
        }

        .footer-section h3 {
            font-size: 2.1rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .footer-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.8rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
            font-size: 1.15rem;
        }

        .footer-links a:hover {
            opacity: 0.7;
            text-decoration: underline;
        }

        .footer-section .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            margin-bottom: 1.2rem;
        }

        .footer-section .contact-item svg {
            width: 20px;
            height: 20px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .newsletter-text {
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
        }

        .social-icon:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .social-icon svg {
            width: 18px;
            height: 18px;
            fill: white;
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.15);
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
        }

        .footer-bottom-content {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand-tag {
            color: #000000;
            font-weight: bold;
        }

        .qr-code {
            width: 100px;
            height: 100px;
            display: block;
            background-image: url('qr-code (2).png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            border-radius: 5px;
            margin-top: 1rem;
        }

      
        .main-gallery-image {
    cursor: zoom-in;
}


.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomIn 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: #bbb;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: translate(-50%, -50%) scale(0.8); }
    to { transform: translate(-50%, -50%) scale(1); }
}


        @media (max-width: 1068px) {
            .burger {
                display: flex;
            }

            .nav-links {
                position: absolute;
                top: 90px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
                padding: 2rem 0;
                display: none;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                margin-right: 0;
            }
.logo-img {
  height: 65px;
}
            .nav-links.active {
                display: flex;
            }

            .hero {
                height: 300px;
            }

            .hero-title { 
                font-size: 2.2rem; 
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom-content {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .gallery-section {
                padding: 0 20px;
            }

            .gallery-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .main-image-container {
                height: 300px;
            }
            
            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }
            
            .slider-prev {
                left: 10px;
            }
            
            .slider-next {
                right: 10px;
            }
            
            .thumbnail-grid {
                gap: 10px;
            }
            
            .thumbnail-grid img {
                height: 100px;
            }
            
            .gallery-title {
                font-size: 2rem;
            }
        }
          @media (max-width: 768px) {
            .burger {
                display: flex;
            }
           
            .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
            .nav-links {
                position: absolute;
                top: 90px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
                padding: 2rem 0;
                display: none;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                margin-right: 0;
            }

            .nav-links.active {
                display: flex;
            }

            .hero {
                height: 300px;
            }

            .hero-title { 
                font-size: 2.2rem; 
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom-content {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .gallery-section {
                padding: 0 20px;
            }

            .gallery-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .main-image-container {
                height: 300px;
            }
            
            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }
            
            .slider-prev {
                left: 10px;
            }
            
            .slider-next {
                right: 10px;
            }
            
            .thumbnail-grid {
                gap: 10px;
            }
            
            .thumbnail-grid img {
                height: 100px;
            }
            
            .gallery-title {
                font-size: 2rem;
            }
        }