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

        body {
            font-family: 'Arial', sans-serif;
            overflow-x: hidden;
        }

        ::-webkit-scrollbar {
            display: none;
        }

        /* Header Styles */
        .uppertag {
            background-color: #bbb;
            font-size: 12px;
            color: #878787;
            overflow: hidden;
            height: 40px;
            display: flex;
            align-items: center;
        }

        .uppertag p {
            animation: scroller 40s linear infinite;
            white-space: nowrap;
            margin: 0;
        }

        @keyframes scroller {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        .navbar {
            background-color: white !important;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 0.5rem 0;
        }

        .navbar-brand {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .navbar-brand img {
            height: 300px;
            width: auto;
        }

        .navbar-nav .nav-item {
            text-align: center;
            font-size: 11px;
            margin: 0 5px;
        }

        .navbar-nav .nav-item i {
            font-size: 20px;
            display: block;
            margin-bottom: 3px;
        }

        .navbar-nav .nav-link {
            color: #333 !important;
            padding: 0.25rem 0.5rem;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: #007bff !important;
        }

        #whatsapp {
            color: #25D366;
        }

        /* Gallery Styles */
        .gallery {
            padding-top: 100px;
        }

        .gallery-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            padding: 0;
            position: relative;
        }

        .gallery-section img {
            display: block;
            width: 100%;
            height: 100vh;
            object-fit: cover;
        }

        /* Navigation Dots */
        .dots {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 1000;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(204, 204, 204, 0.7);
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .dot.active {
            background-color: #333;
        }

        /* Footer Styles */
        .footer {
            background-color: #f8f9fa;
            padding: 40px 0 20px;
            margin-top: 0;
        }

        .icon-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 2px solid black;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 10px;
        }

        .icon-circle img {
            width: 60%;
            height: 60%;
            object-fit: contain;
        }

        .footer-links a {
            color: black;
            text-decoration: none;
            font-size: 12px;
            line-height: 1.5;
        }

        .footer-links a:hover {
            color: #007bff;
        }

        .footer-links h6 {
            font-size: 14px;
            margin-bottom: 15px;
            color: #333;
        }

        .footer-links ul li {
            margin-bottom: 5px;
        }

        .newsletter-form input {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
            background-color: black;
            color: white;
            border: 2px solid black;
            height: 35px;
            font-size: 12px;
        }

        .newsletter-form input::placeholder {
            color: white;
            opacity: 1;
        }

        .newsletter-form button {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            background-color: #d5d5d5;
            color: black;
            font-weight: 600;
            height: 35px;
            font-size: 12px;
            border: 2px solid black;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background-color: #d5d5d5;
            border: 2px solid #d5d5d5;
            font-size: 20px;
            color: black;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: #333;
            color: white;
        }

        .payment-methods img {
            height: 25px;
            margin-right: 10px;
            margin-bottom: 5px;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 991.98px) {
            .navbar-brand {
                position: static;
                transform: none;
            }

            .navbar-brand img {
                height: 50px;
            }

            .navbar-nav .nav-item {
                font-size: 10px;
                margin: 0 2px;
            }

            .navbar-nav .nav-item i {
                font-size: 16px;
            }

            .gallery {
                padding-top: 90px;
            }

            .dots {
                right: 10px;
                gap: 8px;
            }

            .dot {
                width: 6px;
                height: 6px;
            }

            .footer {
                padding: 30px 0 15px;
            }

            .icon-circle {
                width: 50px;
                height: 50px;
            }

            .social-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }

        @media (max-width: 767.98px) {
            .uppertag {
                font-size: 10px;
                height: 35px;
            }

            .navbar-brand img {
                height: 45px;
            }

            .navbar-nav .nav-item {
                font-size: 9px;
                margin: 0 1px;
            }

            .navbar-nav .nav-item i {
                font-size: 14px;
                margin-bottom: 2px;
            }

            .gallery {
                padding-top: 85px;
            }

            .gallery-section img {
                height: 70vh;
            }

            .footer {
                padding: 25px 0 15px;
            }

            .footer-links h6 {
                font-size: 13px;
                margin-bottom: 10px;
            }

            .footer-links a {
                font-size: 11px;
            }

            .icon-circle {
                width: 45px;
                height: 45px;
            }

            .social-icon {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .payment-methods img {
                height: 20px;
                margin-right: 8px;
            }

            .newsletter-form input,
            .newsletter-form button {
                height: 32px;
                font-size: 11px;
            }

            .dots {
                right: 8px;
                gap: 6px;
            }
        }

        @media (max-width: 575.98px) {
            .uppertag {
                font-size: 9px;
                height: 30px;
            }

            .navbar-brand img {
                height: 65px;
            }

            .navbar-nav .nav-item {
                font-size: 8px;
                margin: 0;
            }

            .navbar-nav .nav-item i {
                font-size: 12px;
            }

            .gallery {
                padding-top: 80px;
            }

            .gallery-section img {
                height: 60vh;
            }

            .footer {
                padding: 20px 0 10px;
            }

            .footer-links h6 {
                font-size: 12px;
                margin-bottom: 8px;
            }

            .footer-links a {
                font-size: 10px;
            }

            .icon-circle {
                width: 40px;
                height: 40px;
            }

            .social-icon {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }

            .payment-methods img {
                height: 18px;
                margin-right: 6px;
            }

            .newsletter-form input,
            .newsletter-form button {
                height: 30px;
                font-size: 10px;
            }

            .dots {
                right: 5px;
                gap: 5px;
            }

            .dot {
                width: 5px;
                height: 5px;
            }

            /* Stack footer columns on mobile */
            .footer .row > div {
                margin-bottom: 20px;
            }

            .footer .text-end {
                text-align: center !important;
            }
        }

        /* Ultra small screens */
        @media (max-width: 399.98px) {
            .uppertag {
                font-size: 8px;
                height: 25px;
            }

            .navbar-brand img {
                height: 35px;
            }

            .navbar-nav .nav-item {
                font-size: 7px;
            }

            .navbar-nav .nav-item i {
                font-size: 10px;
            }

            .gallery {
                padding-top: 75px;
            }

            .gallery-section img {
                height: 50vh;
            }

            .footer-links h6 {
                font-size: 11px;
            }

            .footer-links a {
                font-size: 9px;
            }

            .icon-circle {
                width: 35px;
                height: 35px;
            }

            .social-icon {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }

            .payment-methods img {
                height: 15px;
                margin-right: 4px;
            }
        }

        /* Landscape orientation adjustments */
        @media (max-height: 500px) and (orientation: landscape) {
            .gallery-section img {
                height: 100vh;
            }
        }

        /* High DPI displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
            .gallery-section img {
                image-rendering: -webkit-optimize-contrast;
                image-rendering: optimize-contrast;
            }
        }