@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
        
        :root {
            --bg-color: #A5B8A1;
            --text-color: #231F20;
            --egg-gradient-1: #FDB851;
            --egg-gradient-2: #F9884C;
            --egg-gradient-3: #E66B2C;
            --egg-gradient-4: #7AC3B6;
            --egg-gradient-5: #62B3A8;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }
        
        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            overflow-x: hidden;
        }
        
        .section {
            padding: 5rem 1rem;
            position: relative;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .btn {
            border: 1px solid black;
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: var(--egg-gradient-3);
           /* background: linear-gradient(135deg, var(--egg-gradient-1), var(--egg-gradient-2), var(--egg-gradient-3)); */
            color: white;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(230, 107, 44, 0.3);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--egg-gradient-1), var(--egg-gradient-3));
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(230, 107, 44, 0.4);
        }
        
        .btn:hover:before {
            opacity: 1;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 5px;
            background: linear-gradient(to right, var(--egg-gradient-1), var(--egg-gradient-3));
            border-radius: 10px;
        }
        
        .card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--egg-gradient-1), var(--egg-gradient-3), var(--egg-gradient-5));
            z-index: 2;
        }
        
        .bullet-list {
            list-style: none;
            padding-left: 1.5rem;
        }
        
        .bullet-list li {
            position: relative;
            padding: 0.5rem 0;
            padding-left: 0.5rem;
        }
        
        .bullet-list li:before {
            content: '•';
            position: absolute;
            left: -1.5rem;
            color: var(--egg-gradient-3);
            font-size: 1.5rem;
            line-height: 1;
        }
        
        /* 3D Elements */
        .egg-3d {
            position: absolute;
            width: 150px;
            height: 200px;
            background: linear-gradient(135deg, var(--egg-gradient-1), var(--egg-gradient-2), var(--egg-gradient-3));
            border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform-style: preserve-3d;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }
        
        /* Navbar Logo */
        /* ...existing code... */
.navbar-logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    background: transparent;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

/* Optional: Remove the shine effect if it covers the logo */
.navbar-logo:before {
    display: none;
}
/* ...existing code... */
        
        .navbar-logo:before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(165, 184, 161, 0.8), rgba(165, 184, 161, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23A5B8A1"/><path d="M0 0L100 100M100 0L0 100" stroke="%23FFFFFF" stroke-width="1" stroke-opacity="0.1"/></svg>');
            background-size: cover;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-tagline {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
            position: relative;
        }
        
        .hero-subtext {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
        }
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        /* About Section */
        .about {
            position: relative;
            overflow: hidden;
        }
        
        .about-egg {
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            z-index: 0;
            opacity: 0.2;
        }
        
        /* Founder Section */
        .founder {
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23FFFFFF"/><path d="M0 0L100 100M100 0L0 100" stroke="%23A5B8A1" stroke-width="1" stroke-opacity="0.2"/></svg>');
            background-size: cover;
        }
        
        .founder-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--egg-gradient-4), var(--egg-gradient-5));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .founder-img:before {
            content: 'RP';
            font-size: 5rem;
            font-weight: 800;
            color: white;
        }
        
        /* Why Choose Us */
        .why-us {
            position: relative;
            overflow: hidden;
        }
        
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .why-us-item {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .why-us-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .why-us-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--egg-gradient-3);
        }
        
        /* Menu Section */
        .menu {
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23FFFFFF"/><path d="M0 0L100 100M100 0L0 100" stroke="%23A5B8A1" stroke-width="1" stroke-opacity="0.2"/></svg>');
            background-size: cover;
        }
        
        .menu-carousel {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            width: 100%;
            /* Prevents child flexbox from stretching */
        }
        .menu-track {
            display: flex;
            gap: 2rem;
            flex-wrap: nowrap;
            width: max-content; /* This ensures the track only grows as needed */
        }
        .menu-item {
            min-width: 220px;
            max-width: 300px;
            flex: 0 0 auto;
        }
        .menu-track::-webkit-scrollbar {
            display: none;
        }
        
        .menu-content {
            padding: 1.5rem;
            flex: 1;
        }
        
        .menu-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .menu-desc {
            color: #666;
            margin-bottom: 1rem;
        }
        
        .menu-price {
            font-weight: 700;
            color: var(--egg-gradient-3);
            font-size: 1.2rem;
        }
        
        .menu-nav {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            gap: 1rem;
        }
        
        .menu-nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .menu-nav-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        /* Testimonials */
        .testimonials {
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .testimonial-item {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .testimonial-item:before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 5rem;
            color: rgba(230, 107, 44, 0.1);
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-text {
            position: relative;
            z-index: 1;
            font-style: italic;
            margin-bottom: 1rem;
        }
        
        .testimonial-author {
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .testimonial-author:before {
            content: '—';
            margin-right: 0.5rem;
            color: var(--egg-gradient-3);
        }
        
        /* Franchise */
        .franchise {
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23FFFFFF"/><path d="M0 0L100 100M100 0L0 100" stroke="%23A5B8A1" stroke-width="1" stroke-opacity="0.2"/></svg>');
            background-size: cover;
        }
        
        /* Social Proof */
        .social-proof {
            position: relative;
            overflow: hidden;
        }
        
        .counter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        
        .counter-item {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .counter-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--egg-gradient-1), var(--egg-gradient-3));
        }
        
        .counter-value {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            background: linear-gradient(to right, var(--egg-gradient-1), var(--egg-gradient-3));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .counter-label {
            font-weight: 600;
        }
        
        /* Contact */
        .contact {
            position: relative;
            overflow: hidden;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .contact-info {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .contact-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .contact-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: white;
            color: var(--text-color);
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        /* Footer */
        .footer {
            background: var(--text-color);
            color: white;
            padding: 3rem 0;
            margin-top: 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        
        .footer-links h4 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
            position: relative;
            display: inline-block;
        }
        
        .footer-links h4:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--egg-gradient-3);
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background 0.3s;
        }
        
        .footer-social a:hover {
            background: var(--egg-gradient-3);
        }
        
        .footer-bottom {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: #999;
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .section {
                padding: 3rem 1rem;
                margin-top: 10px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero-tagline {
                font-size: 1.8rem;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .menu-item {
                min-width: 250px;
            }
            
            .counter-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .hero-tagline {
                font-size: 1.5rem;
            }
            
            .counter-grid {
                grid-template-columns: 1fr;
            }
            
            .menu-item {
                min-width: 220px;
            }
        }
        
        @media (max-width: 1023px) {
    /* Hide the signature dish card in tablet and phone view */
    .about .card {
        display: none;
    }
}