 /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --saffron: #FF9933;
            --green: #138808;
            --red: #D94423;
            --white: #FFFFFF;
            --dark-orange: #E25822;
            --light-yellow: #FFF9E9;
            --dark-text: #333;
            --light-text: #555;
            --shadow: rgba(0, 0, 0, 0.1);
            --gold: #FFD700;
            --spice-red: #B22222;
        }

        html {
            scroll-behavior: smooth;
        }
        
        body {
            background-color: #FCFBF8;
            color: var(--dark-text);
            font-family: 'Poppins', 'Hind Madurai', sans-serif;
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        section {
            padding: 80px 0;
        }
        
        h1, h2, h3, h4 {
            color: var(--dark-orange);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--saffron);
            border-radius: 2px;
        }
        
        /* Header Styles */
        header {
            background: var(--white);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 15px var(--shadow);
            transition: background 0.3s ease;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            text-decoration: none;
        }

        .logo img {
            height: 80px;
            width: auto;
            transition: transform 0.3s;
        }

        .logo img:hover {
            transform: scale(1.05);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin: 0 15px;
        }
        
        nav ul li a {
            color: var(--dark-text);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            padding: 8px 12px;
            border-radius: 5px;
            position: relative;
            transition: color 0.3s;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--saffron);
            transition: width 0.3s ease-out;
        }
        
        nav ul li a:hover {
            color: var(--saffron);
        }

        nav ul li a:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            height: 90vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                        url('Images/GodavariHeader.jpg');
            background-size: cover;
            background-position: center;
            color: var(--white);
            display: flex;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' width='80' height='80'%3E%3Cpath fill='%23ff9933' fill-opacity='0.1' d='M14 16H9v-2h5V9.87a4 4 0 1 1 2 0V14h5v2h-5v15.95A10 10 0 0 0 23.66 27l-3.46-2 8.2-2.2-2.9 5a12 12 0 0 1-21 0l-2.89-5 8.2 2.2-3.47 2A10 10 0 0 0 14 31.95V16zm40 0h-5v-2h5V9.87a4 4 0 1 1 2 0V14h5v2h-5v15.95A10 10 0 0 0 63.66 27l-3.47-2 8.2-2.2-2.88 5a12 12 0 0 1-21.02 0l-2.88-5 8.2 2.2-3.47 2A10 10 0 0 0 54 31.95V16z'%3E%3C/path%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .hero-content {
            animation: fadeIn 1.5s ease-in-out;
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3.8rem;
            color: var(--white);
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.5rem;
            max-width: 700px;
            margin: 0 auto 30px auto;
            color: var(--light-yellow);
        }

        .cta-button {
            background: var(--saffron);
            color: var(--white);
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
        }
        .cta-button:hover {
            background: var(--dark-orange);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
        }
		
		
		/* About Section */
        .about {
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: var(--light-yellow);
            border-radius: 50%;
            opacity: 0.3;
            z-index: 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .about-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-text h2 {
            text-align: left;
        }

        .about-text h2::after {
            left: 0;
            transform: none;
        }

        .awards {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .award-badge {
            background: var(--light-yellow);
            padding: 15px 20px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .award-badge i {
            color: var(--gold);
            font-size: 1.5rem;
        }

        /* Why Godavari Section */
        .why-godavari {
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .why-godavari::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: var(--light-yellow);
            border-radius: 50%;
            opacity: 0.3;
            z-index: 0;
        }

        .why-godavari::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 250px;
            height: 250px;
            background: var(--light-yellow);
            border-radius: 50%;
            opacity: 0.3;
            z-index: 0;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }
        
        .feature {
            padding: 40px;
            border-radius: 10px;
            background: var(--light-yellow);
            box-shadow: 0 10px 30px var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--saffron);
            transform: scaleY(0);
            transition: transform 0.3s;
        }
        
        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .feature:hover::before {
            transform: scaleY(1);
        }
        
        .feature i {
            font-size: 3rem;
            color: var(--saffron);
            margin-bottom: 20px;
            display: block;
            transition: transform 0.3s;
        }

        .feature:hover i {
            transform: scale(1.2);
        }
        
        /* Swiper Slider Styles */
        .swiper-container {
            width: 100%;
            padding: 10px 0 50px 0;
        }
        .swiper-slide {
            height: auto;
            display: flex;
            justify-content: center;
        }
        .swiper-button-next, .swiper-button-prev {
            color: var(--saffron);
            background: rgba(255, 255, 255, 0.8);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 24px;
            font-weight: bold;
        }
        .swiper-pagination-bullet-active {
            background: var(--saffron);
        }
		
		 /* New Menu Section Styles */
        .menu-top-actions {
            text-align: center;
            margin-bottom: 40px;
        }
        .download-menu-btn {
            background: var(--dark-orange);
            color: var(--white);
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: background 0.3s, transform 0.3s;
            display: inline-block;
        }
        .download-menu-btn i {
            margin-right: 8px;
        }
        .download-menu-btn:hover {
            background: var(--saffron);
            transform: translateY(-3px);
        }
        .menu-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
        }
        .menu-tab-btn {
            padding: 10px 20px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            border: 2px solid var(--saffron);
            background: transparent;
            color: var(--saffron);
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .menu-tab-btn.active, .menu-tab-btn:hover {
            background: var(--saffron);
            color: var(--white);
        }
        .menu-tab-panel {
            display: none;
            animation: fadeIn 0.5s;
        }
        .menu-tab-panel.active {
            display: block;
        }
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        .menu-card {
            display: flex;
            align-items: center;
            background: var(--white);
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }
        .menu-card-icon {
            font-size: 24px;
            color: var(--saffron);
            background: var(--light-yellow);
            min-width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        .menu-card-body h4 {
            margin: 0;
            font-size: 1.1rem;
            color: var(--dark-text);
            display: flex;
            justify-content: space-between;
        }
        .menu-card-body h4 .price {
            color: var(--dark-orange);
            font-weight: 700;
            margin-left: 10px;
        }
        .menu-card-body p {
            font-size: 0.9rem;
            color: var(--light-text);
            line-height: 1.5;
        }
        .menu-card.chef-special::before {
            content: "Chef's Special";
            position: absolute;
            top: 10px;
            right: -35px;
            background: var(--red);
            color: white;
            padding: 5px 30px;
            font-size: 10px;
            font-weight: 600;
            transform: rotate(45deg);
            text-align: center;
        }

        /* Menu Section Slider */
        .menu-item {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
            width: 95%;
            margin: 0 auto;
            position: relative;
        }
        .menu-item:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }
        .menu-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .menu-item:hover img {
            transform: scale(1.1);
        }
        .gallery-item-caption {
            padding: 25px;
            text-align: left;
            position: relative;
        }
        .gallery-item-caption h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        
        /* Reviews Section Slider */
        .reviews {
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .reviews::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23ff9933' fill-opacity='0.05'%3E%3Cpath fill-rule='evenodd' d='M11 0l5 20H6l5-20zm42 31a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM0 72h40v4H0v-4zm0-8h31v4H0v-4zm20-16h20v4H20v-4zM0 56h40v4H0v-4zm63-25a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM53 41a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-30 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-28-8a5 5 0 0 0-10 0h10zm10 0a5 5 0 0 1-10 0h10zM56 5a5 5 0 0 0-10 0h10zm10 0a5 5 0 0 1-10 0h10zm-3 46a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM21 0l5 20H16l5-20zm43 64v-4h-4v4h-4v4h4v4h4v-4h4v-4h-4zM36 13h4v4h-4v-4zm4 4h4v4h-4v-4zm-4 4h4v4h-4v-4zm8-8h4v4h-4v-4z'/%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.2;
        }
        .review {
            background: var(--light-yellow);
            padding: 30px;
            border-radius: 10px;
            border-left: 5px solid var(--saffron);
            box-shadow: 0 10px 30px var(--shadow);
            text-align: left;
            width: 95%;
            margin: 0 auto;
            height: 100%;
            position: relative;
            z-index: 1;
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid var(--saffron);
        }
        .rating i { color: #FFC107; }
        .reviewer h3 { margin-bottom: 5px; }
        
        /* Gallery Section Slider */
        .gallery {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .gallery::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 250px;
            height: 250px;
            background: var(--light-yellow);
            border-radius: 50%;
            opacity: 0.3;
            z-index: 0;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 280px;
            box-shadow: 0 10px 30px var(--shadow);
            width: 100%;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .gallery-item-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: var(--white);
            padding: 20px 15px 15px;
            text-align: center;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        .gallery-item:hover .gallery-item-caption {
            transform: translateY(0);
        }
        .gallery-item-caption h3 {
            margin: 0;
            font-size: 1rem;
            font-weight: 500;
            color: var(--white);
        }
        
        /* Contact Section */
        .contact {
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 250px;
            height: 250px;
            background: var(--light-yellow);
            border-radius: 50%;
            opacity: 0.3;
            z-index: 0;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }
        .contact-info { text-align: left; }
        .contact-info p {
            margin: 20px 0;
            font-size: 18px;
            display: flex;
            align-items: center;
        }
        .contact-info i {
            color: var(--saffron);
            margin-right: 15px;
            font-size: 20px;
            width: 25px;
        }
        .contact-form {
            background: var(--light-yellow);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px var(--shadow);
            position: relative;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: -10px;
            right: -10px;
            bottom: -10px;
            left: -10px;
            border-radius: 20px;
            border: 2px dashed var(--saffron);
            opacity: 0.3;
            pointer-events: none;
        }
        .contact-form h3 { text-align: center; font-size: 1.8rem; margin-bottom: 30px; }
        .form-group { margin-bottom: 20px; position: relative; }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            border-color: var(--saffron);
            box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.2);
            outline: none;
        }
        .form-group textarea { resize: vertical; height: 120px; }
        .form-group button {
            width: 100%;
            padding: 15px;
            background: var(--saffron);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
            box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
        }
        .form-group button:hover { 
            background: var(--dark-orange); 
            transform: translateY(-2px);
        }
        
        /* Floating Action Buttons & Chatbot */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .fab {
            width: 60px;
            height: 60px;
            color: var(--white);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
            font-size: 26px;
            position: relative;
            overflow: hidden;
        }
        .fab::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            top: 0;
            left: 0;
            transform: translateY(100%);
            transition: transform 0.3s;
            border-radius: 50%;
        }
        .fab:hover::after {
            transform: translateY(0);
        }
        .fab:hover { transform: scale(1.1); }
        .chatbot-button { background: var(--saffron); }
        .whatsapp-button { background: #25D366; text-decoration: none; }
        .chatbot-window {
            position: fixed;
            bottom: 110px;
            right: 30px;
            width: 350px;
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transform: scale(0.5);
            opacity: 0;
            pointer-events: none;
            transform-origin: bottom right;
            transition: transform 0.3s ease, opacity 0.3s ease;
            z-index: 1000;
        }
        .chatbot-window.open {
            transform: scale(1);
            opacity: 1;
            pointer-events: auto;
        }
        .chatbot-header {
            background: var(--saffron);
            color: var(--white);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .chatbot-header h3 { color: var(--white); margin-bottom: 0; }
        .chatbot-header .close-btn { cursor: pointer; font-size: 20px; }
        .chatbot-body {
            padding: 20px;
            flex-grow: 1;
            max-height: 350px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .chat-message {
            padding: 10px 15px;
            border-radius: 20px;
            max-width: 80%;
            line-height: 1.4;
        }
        .bot-message {
            background: #f1f1f1;
            align-self: flex-start;
            border-bottom-left-radius: 5px;
        }
        .user-message {
            background: var(--saffron);
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 5px;
        }
        .chatbot-questions {
            padding: 0 20px 20px;
            border-top: 1px solid #eee;
        }
        .chatbot-question {
            margin-top: 10px;
            padding: 10px;
            background: #f9f9f9;
            border: 1px solid #eee;
            border-radius: 8px;
            cursor: pointer;
            text-align: center;
            transition: background 0.3s, color 0.3s;
        }
        .chatbot-question:hover {
            background: var(--saffron);
            color: var(--white);
        }
        
        /* Enhanced Registration Popup */
        .registration-popup {
            position: fixed;
            top: 0;
            left: 0;			
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            padding: 20px;
        }
        
        .registration-popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .registration-form-container {
            background: var(--white);
            width: 100%;
            max-width: 500px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
            transform: scale(0.9);
            transition: transform 0.3s;
            position: relative;
            background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), 
                              url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23FF9933" fill-opacity="0.1" d="M50,0 L100,50 L50,100 L0,50 Z"/></svg>');
            background-size: 300px;
            background-position: center;
            border: 2px solid var(--saffron);
        }
        
        .registration-popup.active .registration-form-container {
            transform: scale(1);
        }
        
        .registration-header {
            background: linear-gradient(135deg, var(--saffron), var(--dark-orange));
            color: var(--white);
            padding: 25px 20px;
            text-align: center;
            position: relative;
            border-bottom: 3px solid var(--gold);
        }
        
        .registration-header h2 {
            color: var(--white);
            margin-bottom: 0;
            font-size: 1.8rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .registration-header .close-popup {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: var(--white);
            background: rgba(0, 0, 0, 0.2);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
        
        .registration-header .close-popup:hover {
            background: rgba(0, 0, 0, 0.4);
        }
        
        .registration-body {
            padding: 30px;
        }
        
        .registration-footer {
            padding: 20px;
            text-align: center;
            background: var(--light-yellow);
            font-size: 14px;
            border-top: 1px dashed var(--saffron);
        }
        
        /* Decorative elements for popup */
        .registration-form-container::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 1px solid var(--saffron);
            border-radius: 10px;
            pointer-events: none;
            opacity: 0.3;
        }
        
        /* Footer */
        footer {
            background: var(--dark-text);
            color: #ccc;
            padding: 60px 0 20px 0;
            text-align: center;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--green), var(--saffron), var(--red));
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 { color: var(--white); margin-bottom: 20px; }
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        .social-icons a {
            color: var(--white);
            font-size: 24px;
            transition: color 0.3s, transform 0.3s;
        }
        .social-icons a:hover { 
            color: var(--saffron); 
            transform: translateY(-3px);
        }
        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 20px;
            font-size: 14px;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .contact-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .header-content { flex-direction: column; }
            nav ul {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .hero { height: 70vh; }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.2rem; }
            h2 { font-size: 2rem; }
            .registration-form-container {
                width: 95%;
                padding: 15px;
            }
            .registration-body {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .registration-header {
                padding: 20px 15px;
            }
            .registration-header h2 {
                font-size: 1.5rem;
            }
            .registration-body {
                padding: 15px;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .animate-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Decorative pattern for the website */
        .decorative-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path fill="%23FF9933" fill-opacity="0.05" d="M30,0 L60,30 L30,60 L0,30 Z"/></svg>');
            background-size: 200px;
            z-index: 0;
        }
        
        /* Enhanced food item styling */
        .food-description {
            font-family: 'Hind Madurai', sans-serif;
            font-size: 0.9rem;
            color: var(--light-text);
            line-height: 1.6;
            margin-top: 10px;
        }
        
        /* Spice level indicator */
        .spice-level {
            display: flex;
            margin-top: 10px;
        }
        
        .spice-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            margin-right: 5px;
        }
        
        .spice-dot.active {
            background: var(--spice-red);
        }
		
		
		//
		
		.loader-demo {
            margin: 40px 0;
            padding: 30px;
            background: var(--light-yellow);
            border-radius: 15px;
        }

        .loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.98);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out;
        }
        
        .loader-logo {
            width: 120px;
            height: 120px;
            margin-bottom: 30px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .logo-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: transparent; /* Remove the colored background */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo-img img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10%;
}
        
        .spinner {
            position: absolute;
            width: 120px;
            height: 120px;
            border: 3px solid transparent;
            border-top: 3px solid var(--saffron);
            border-radius: 50%;
            animation: spin 1.5s linear infinite;
        }
        
        .spinner:nth-child(2) {
            width: 140px;
            height: 140px;
            border: 3px solid transparent;
            border-top: 3px solid var(--green);
            animation: spin 2s linear infinite reverse;
        }
        
        .spinner:nth-child(3) {
            width: 160px;
            height: 160px;
            border: 3px solid transparent;
            border-top: 3px solid var(--red);
            animation: spin 2.5s linear infinite;
        }
        
        .loader-text {
            margin-top: 20px;
            font-size: 18px;
            color: var(--dark-text);
            font-weight: 500;
        }
        
        .loading-dots:after {
            content: '';
            animation: dots 1.5s infinite;
        }
        
        .progress-bar {
            width: 300px;
            height: 8px;
            background: #f1f1f1;
            border-radius: 10px;
            margin-top: 20px;
            overflow: hidden;
        }
        
        .progress {
            height: 100%;
            width: 0%;
            background: linear-gradient(to right, var(--green), var(--saffron), var(--red));
            border-radius: 10px;
            transition: width 0.3s ease;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes dots {
            0%, 20% { content: '.'; }
            40% { content: '..'; }
            60%, 100% { content: '...'; }
        }
        
        .btn {
            background: var(--saffron);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: inline-block;
            text-decoration: none;
            margin: 10px;
        }
        
        .btn:hover {
            background: var(--dark-orange);
            transform: translateY(-2px);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--saffron);
            color: var(--saffron);
        }
        
        .btn-outline:hover {
            background: var(--saffron);
            color: white;
        }
        
        .loader-types {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .loader-option {
            padding: 15px 25px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
            width: 150px;
        }
        
        .loader-option:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .loader-option i {
            font-size: 30px;
            margin-bottom: 10px;
            color: var(--saffron);
        }
        
        @media (max-width: 768px) {
            .loader-types {
                flex-direction: column;
                align-items: center;
            }
            
            .loader-option {
                width: 100%;
                max-width: 250px;
            }
        }