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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(255,165,0,0.2)), 
                        url('https://i.postimg.cc/Z5Hjz8cz/20250424-235758.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #ff6600, #ff9900);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 1;
            transition: opacity 0.5s ease-out;
        }

        .loading-overlay.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255,255,255,0.3);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Header Animations */
        .top-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 1);
            padding: 10px 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(-100%);
            animation: slideDown 0.8s ease-out 0.5s forwards;
        }

        /* Desktop Navigation - Show all links */
        .desktop-nav {
            display: none;
        }

        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding: 0;
        }

        .desktop-nav ul li a {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            background: transparent;
        }

        .desktop-nav ul li a:hover {
            color: white;
            background: linear-gradient(90deg, #ff6600, #ff9900);
            transform: translateY(-2px);
        }

        /* Hamburger Menu - Hide on desktop */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .hamburger-menu:hover {
            transform: scale(1.1);
        }

        .hamburger-menu .bar {
            width: 25px;
            height: 3px;
            background: #333;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .hamburger-menu.active .bar:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger-menu.active .bar:nth-child(2) {
            opacity: 0;
        }

        .hamburger-menu.active .bar:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        @media (min-width: 769px) {
            .desktop-nav {
                display: block;
            }
            
            .hamburger-menu {
                display: none !important;
            }
        }

        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
            .hamburger-menu {
                display: flex !important;
            }
        }

        @keyframes slideDown {
            to { transform: translateY(0); }
        }

        .logo img {
            transition: transform 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.1) rotate(5deg);
        }

        /* Hamburger Menu Animations */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .hamburger-menu:hover {
            transform: scale(1.1);
        }

        .hamburger-menu .bar {
            width: 25px;
            height: 3px;
            background: #333;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .hamburger-menu.active .bar:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger-menu.active .bar:nth-child(2) {
            opacity: 0;
        }

        .hamburger-menu.active .bar:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Side Menu Animations */
        .menu {
            position: fixed;
            top: 60px;
            left: 0;
            background: linear-gradient(135deg, #333, #555);
            width: 220px;
            height: calc(100% - 60px);
            transform: translateX(-100%);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 999;
            overflow: hidden;
        }

        .menu::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s ease;
        }

        .menu.open {
            transform: translateX(0);
            box-shadow: 5px 0 20px rgba(0,0,0,0.3);
        }

        .menu.open::before {
            left: 100%;
        }

        .menu ul {
            list-style: none;
            padding: 20px 0;
        }

        .menu ul li {
            margin: 5px 0;
            transform: translateX(-50px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .menu.open ul li {
            transform: translateX(0);
            opacity: 1;
        }

        .menu ul li:nth-child(1) { transition-delay: 0.1s; }
        .menu ul li:nth-child(2) { transition-delay: 0.2s; }
        .menu ul li:nth-child(3) { transition-delay: 0.3s; }
        .menu ul li:nth-child(4) { transition-delay: 0.4s; }
        .menu ul li:nth-child(5) { transition-delay: 0.5s; }
        .menu ul li:nth-child(6) { transition-delay: 0.6s; }

        .menu ul li a {
            font-size: 16px;
            color: white;
            text-decoration: none;
            padding: 12px 20px;
            display: block;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .menu ul li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #ff6600, #ff9900);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .menu ul li a:hover::before {
            left: 0;
        }

        .menu ul li a:hover {
            color: white;
            transform: translateX(10px);
        }

        /* Main Content */
        .main-content {
            margin-top: 80px;
            padding: 20px;
        }

        /* Fade In Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease-out;
        }

        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease-out;
        }

        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Text Sections */
        .text {
            margin: 60px 0;
        }

        .row {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .row-1 {
            max-width: 800px;
            padding: 0 20px;
        }

        .row-1 h1 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ff6600;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 2px 2px 4px rgba(0,0,0,0.5), 0 0 10px #ff6600; }
            to { text-shadow: 2px 2px 4px rgba(0,0,0,0.5), 0 0 20px #ff6600, 0 0 30px #ff6600; }
        }

        .row-1 small {
            font-size: 1.1rem;
            line-height: 1.6;
            display: block;
            color: rgba(255,255,255,0.9);
            text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
        }

        /* Hero Images Section */
        .circle {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 40px;
            padding: 60px 20px;
        }

        .circle-image {
            position: relative;
            transition: transform 0.5s ease;
        }

        .circle-image:hover {
            transform: scale(1.05) rotate(2deg);
        }

        .circle-image img {
            width: 350px;
            height: 350px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid #ff6600;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: all 0.5s ease;
        }

        .circle-image:hover img {
            box-shadow: 0 20px 50px rgba(255,102,0,0.4);
        }

        .circle-image h1,
        .circle-image h2 {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 1rem;
            color: #fff;
            text-align: center;
            background: rgba(0,0,0,0.7);
            padding: 10px 20px;
            border-radius: 20px;
            max-width: 280px;
        }

        /* Kitchen Section */
        .kitchen-section {
            background: rgba(255, 255, 255, 0.95);
            padding: 60px 30px;
            margin: 80px auto;
            max-width: 900px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .kitchen-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,165,0,0.1), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .kitchen-title {
            font-size: 2.5rem;
            color: #ff6600;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .kitchen-image-container {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .kitchen-image-container img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
            transition: transform 0.5s ease;
        }

        .kitchen-image-container:hover img {
            transform: scale(1.02);
        }

        .kitchen-caption {
            margin-top: 20px;
            font-size: 1.1rem;
            color: #555;
            font-style: italic;
        }

        /* Food Container - 2 columns on desktop */
        .food-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 800px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .food-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 20px;
            position: relative;
        }

        .food-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff6600, #ff9900);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .food-card:hover::before {
            transform: scaleX(1);
        }

        .food-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(255,102,0,0.2);
        }

        .food-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            transition: transform 0.5s ease;
        }

        .food-card:hover img {
            transform: scale(1.1);
        }

        .food-name {
            font-size: 1.5rem;
            color: #ff6600;
            margin: 15px 0 10px;
            font-weight: 600;
        }

        .food-price {
            font-size: 1.3rem;
            color: #27ae60;
            margin: 10px 0;
            font-weight: 600;
        }

        .food-details {
            font-size: 1rem;
            color: #555;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        /* Shop Now Button */
        .shopnow {
            display: flex;
            justify-content: center;
            margin: 80px 0;
        }

        .shop-now-btn {
            background: linear-gradient(45deg, #ff6600, #ff9900);
            color: white;
            padding: 18px 40px;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 50px;
            display: inline-block;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255,102,0,0.3);
        }

        .shop-now-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .shop-now-btn:hover::before {
            left: 100%;
        }

        .shop-now-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255,102,0,0.4);
        }

        /* Testimonial Cards */
        .testimonial-card {
            background: rgba(255, 255, 255, 0.95);
            margin: 30px auto;
            max-width: 800px;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.6s ease;
        }

        .testimonial-card.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: #ff6600;
            opacity: 0.3;
        }

        .testimonial-text {
            font-style: italic;
            color: #444;
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .testimonial-stars {
            font-size: 1.5rem;
            color: #ffcc00;
            margin-bottom: 15px;
            animation: sparkle 2s ease-in-out infinite;
        }

        @keyframes sparkle {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .testimonial-author {
            font-weight: bold;
            color: #333;
            font-size: 1rem;
        }

        /* Quick Delivery Section */
        .quick-delivery-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            background: rgba(255, 255, 255, 0.95);
            color: #333;
            padding: 50px;
            margin: 80px auto;
            max-width: 1000px;
            border-radius: 25px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
        }

        .delivery-image {
            flex: 0 0 200px;
            margin-right: 40px;
        }

        .delivery-image img {
            width: 180px;
            height: auto;
            transition: transform 0.5s ease;
        }

        .delivery-image:hover img {
            transform: scale(1.1) rotate(5deg);
        }

        .delivery-content {
            flex: 1;
            min-width: 300px;
        }

        .delivery-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #ff6600;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .delivery-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .delivery-content button {
            padding: 15px 30px;
            background: linear-gradient(45deg, #ff6600, #ff9900);
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255,102,0,0.3);
        }

        .delivery-content button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255,102,0,0.4);
        }

        /* Discount Slider */
        .discount-slider-container {
            width: 90%;
            max-width: 900px;
            margin: 80px auto;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.95);
            color: #333;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            overflow: hidden;
            position: relative;
        }

        .discount-slider {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .discount-slide {
            min-width: 100%;
            padding: 60px 40px;
            text-align: center;
            position: relative;
        }

        .discount-slide h2 {
            color: #ff6600;
            font-size: 2.2rem;
            margin-bottom: 20px;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .discount-slide p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
        }

        .discount-slide button {
            padding: 15px 35px;
            font-size: 1.1rem;
            background: linear-gradient(45deg, #ff6600, #ff9900);
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255,102,0,0.3);
        }

        .discount-slide button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 30px rgba(255,102,0,0.4);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #111, #222);
            color: white;
            padding: 60px 30px 30px;
            font-size: 1rem;
            margin-top: 100px;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: auto;
            gap: 40px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            font-size: 1.3rem;
            color: #ff6600;
            position: relative;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 2px;
            background: #ff6600;
        }

        .footer-section p {
            margin: 10px 0;
            line-height: 1.6;
        }

        .footer-section input[type="email"] {
            padding: 15px;
            width: 100%;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 15px;
            background: rgba(255,255,255,0.1);
            color: white;
        }

        .footer-section input[type="email"]::placeholder {
            color: rgba(255,255,255,0.7);
        }

        .footer-section button {
            padding: 15px;
            background: linear-gradient(45deg, #ff6600, #ff9900);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            width: 100%;
            font-size: 1rem;
        }

        .footer-section button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255,102,0,0.4);
        }

        .footer-bottom {
            border-top: 1px solid #444;
            margin-top: 40px;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
        }

        .footer-links a {
            color: #ccc;
            margin-left: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #ff6600;
            transform: translateY(-2px);
        }

        /* Scroll to Top Button */
        .scroll-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(45deg, #ff6600, #ff9900);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            width: 60px;
            height: 60px;
            cursor: pointer;
            display: none;
            justify-content: center;
            align-items: center;
            box-shadow: 0 5px 20px rgba(255,102,0,0.4);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .scroll-top-btn:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(255,102,0,0.6);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .row-1 h1 {
                font-size: 2rem;
            }
            
            .circle-image img {
                width: 320px;
                height: 320px;
            }
            
            .circle-image h1,
            .circle-image h2 {
                max-width: 340px;
                font-size: 1.1rem;
                padding: 10px 20px;
            }
            
            .food-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .quick-delivery-container {
                flex-direction: column;
                text-align: center;
                padding: 30px;
            }
            
            .delivery-image {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .footer-container {
                flex-direction: column;
                gap: 20px;
            }

            .hamburger-menu {
                display: flex;
            }

            .desktop-nav {
                display: none;
            }

            .discount-slide {
                padding: 50px 30px;
            }

            .discount-slide h2 {
                font-size: 2rem;
            }

            .discount-slide p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .row-1 h1 {
                font-size: 1.8rem;
            }
            
            .circle-image img {
                width: 280px;
                height: 280px;
            }
            
            .circle-image h1,
            .circle-image h2 {
                max-width: 320px;
                font-size: 1rem;
                padding: 10px 20px;
            }
            
            .kitchen-section,
            .testimonial-card,
            .quick-delivery-container,
            .discount-slider-container {
                margin: 40px 10px;
                padding: 30px 20px;
            }

            .discount-slide {
                padding: 40px 20px;
                text-align: center;
            }

            .discount-slide h2 {
                font-size: 1.8rem;
                margin-bottom: 15px;
                text-align: center;
            }

            .discount-slide p {
                font-size: 1rem;
                margin-bottom: 25px;
                text-align: center;
                line-height: 1.5;
            }

            .discount-slide button {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }