 body {
     font-family: "Poppins", sans-serif;
     background-color: #fdfdfd;
 }

 /* ================= HERO ================= */
 .hero-pro {
     background: linear-gradient(135deg, #fffaf5, #fff3e8);
     padding: 120px 20px;
     position: relative;
     overflow: hidden;
 }

 .hero-pro h1 {
     font-weight: 700;
     font-size: clamp(28px, 4vw, 42px);
     line-height: 1.25;
     color: #222;
 }

 .hero-pro h1 span {
     display: block;
     font-size: 0.78em;
     margin-top: 6px;
 }



 .hero-pro p {
     font-size: 18px;
     color: #555;
 }

 .delivery-badge {
     display: inline-block;
     background: #fff;
     color: #ff6b35;
     padding: 10px 24px;
     border-radius: 50px;
     font-weight: 600;
     margin-bottom: 20px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
 }

 .limited-badge {
     display: inline-block;
     background: #ff6b35;
     color: #fff;
     padding: 6px 18px;
     border-radius: 50px;
     font-size: 14px;
     margin-top: 15px;
     animation: pulse 2s infinite;
 }

 .hero-btn {
     padding: 12px 34px;
     border-radius: 50px;
     font-weight: 600;
     position: relative;
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .hero-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .hero-btn::after {
     content: "";
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: rgba(255, 255, 255, 0.25);
     transition: left 0.4s ease;
 }

 .hero-btn:hover::after {
     left: 100%;
 }

 .btn-success.hero-btn {
     animation: pulse 2s infinite;
 }

 .thali-img {
     width: 100%;
     max-width: 480px;
     animation: float 6s ease-in-out infinite;
     position: relative;
     z-index: 2;
 }

 .blob {
     position: absolute;
     width: 450px;
     height: 450px;
     background: #ffe4d6;
     border-radius: 50%;
     top: -80px;
     right: -120px;
     z-index: 1;
     opacity: 0.6;
 }

 /* Tablet */
 @media (max-width: 992px) {
     .blob {
         width: 320px;
         height: 320px;
         top: -50px;
         right: -80px;
         opacity: 0.5;
     }
 }

 /* Mobile */
 @media (max-width: 576px) {
     .blob {
         width: 150px;
         height: 150px;
         top: -30px;
         right: -50px;
         opacity: 0.4;
     }

     .hero-pro {
         padding: 90px 20px 70px;
     }

     .hero-pro p {
         font-size: 16px;
     }

     .delivery-badge {
         font-size: 14px;
         padding: 8px 18px;
     }
 }

 @media (max-width: 768px) {
     .thali-img {
         animation: none;
     }
 }




 /* ================= SECTIONS ================= */
 .section-space {
     padding: 80px 20px;
 }


 .section-title {
     font-weight: 700;
     font-size: clamp(26px, 3vw, 38px);
     color: #222;
     margin-bottom: 60px;
 }

 /* ================= MEAL CARDS ================= */
 .meal-card {
     border-radius: 20px;
     overflow: hidden;
     transition: all 0.3s ease;
     background: #ffffff;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
 }


 .reveal {
     opacity: 0;
     transform: translateY(40px);
     transition: all 0.8s ease;
 }

 .reveal.active {
     opacity: 1;
     transform: translateY(0);
 }

 .meal-card img {
     width: 100%;
     aspect-ratio: 1/1;
     object-fit: cover;
     border-top-left-radius: 20px;
     border-top-right-radius: 20px;
     transition: transform .4s ease;
 }

 .meal-card:hover img {
     transform: scale(1.08);
 }



 .price {
     font-size: 22px;
     font-weight: 700;
     color: #ff6b35;
     margin-top: 10px;
 }

 @media (hover: hover) {
     .meal-card:hover {
         transform: translateY(-10px) scale(1.02);
         box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
     }

     .meal-card:hover img {
         transform: scale(1.08);
     }
 }

 /* ================= SPECIALITY ================= */
 .special-section {
     background: linear-gradient(135deg, #fff8f2, #fffdf9);
     padding: 90px 20px;
 }

 .special-item {
     margin-bottom: 80px;
 }

 @media (max-width:768px) {
     .special-item {
         margin-bottom: 60px;
     }
 }

 .special-title {
     font-weight: 700;
     font-size: 30px;
     color: #222;
 }

 .special-text {
     font-size: 17px;
     color: #666;
     line-height: 1.8;
 }

 .special-img {
     width: 100%;
     max-width: 420px;
     margin: auto;
     display: block;
     height: 100%;
     aspect-ratio: 1/1;
     object-fit: cover;
     border-radius: 24px;
     padding: 6px;
     background: #fff;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
 }


 .special-img:hover {
     transform: scale(1.04);
 }

 /* ================= ANIMATIONS ================= */
 @keyframes float {
     0% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-20px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 @keyframes pulse {
     0% {
         box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.6);
     }

     70% {
         box-shadow: 0 0 0 12px rgba(255, 107, 53, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
     }
 }

 @media (max-width: 768px) {
     .section-space {
         padding: 60px 16px;
     }

     .special-section {
         padding: 70px 16px;
     }
 }

 .meal-list {
     list-style: none;
     padding: 0;
     margin: 15px 0;
     font-size: 14px;
     color: #666;
 }

 .meal-list li {
     margin-bottom: 5px;
 }

 .card-body {
     padding: 25px;
 }

 /* Best Seller Badge */
 .best-seller {
     position: absolute;
     top: 15px;
     left: 15px;
     background: #ff6b35;
     color: #fff;
     padding: 5px 14px;
     font-size: 12px;
     border-radius: 20px;
     font-weight: 600;
 }

 /* Testimonial Section */
 .testimonial-card {
     background: #fff;
     border-radius: 20px;
     padding: 25px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     font-size: 14px;
 }

 .rating {
     color: #ffb400;
     font-size: 18px;
 }

 /* How It Works */
 .step-box {
     padding: 30px;
     border-radius: 20px;
     background: #fff;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
 }

 .step-number {
     font-size: 28px;
     font-weight: 700;
     color: #ff6b35;
 }

 /* Sticky Mobile CTA */
 .mobile-cta {
     display: none;
 }

 @media (max-width: 768px) {
     .mobile-cta {
         display: flex;
         position: fixed;
         bottom: 0;
         left: 0;
         width: 100%;
         background: #ffffff;
         box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
         z-index: 9999;
     }

     .mobile-cta a {
         flex: 1;
         text-align: center;
         padding: 14px 0;
         font-weight: 600;
         text-decoration: none;
         font-size: 15px;
     }

     .mobile-call {
         background: #212529;
         color: #fff;
     }

     .mobile-whatsapp {
         background: #25d366;
         color: #fff;
     }

     body {
         padding-bottom: 65px;
         /* Prevent content hide */
     }
 }

 .trust-section {
     background: #fff;
     padding: 60px 0;
     border-bottom: 1px solid #f2f2f2;
 }

 .trust-item {
     padding: 20px;
     transition: all 0.3s ease;
 }

 .trust-item:hover {
     transform: translateY(-8px);
 }

 .trust-icon {
     width: 70px;
     height: 70px;
     margin: 0 auto 15px;
     background: #f8f9fa;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
 }

 .trust-item h6 {
     font-weight: 600;
     margin-bottom: 8px;
 }

 .trust-item p {
     font-size: 14px;
     color: #666;
     margin: 0;
 }

 .testimonial-section {
     background: #f9fbfd;
     padding: 80px 0;
 }

 .testimonial-card {
     max-width: 700px;
     margin: auto;
     padding: 40px;
     background: #fff;
     border-radius: 20px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
 }

 .testimonial-text {
     font-size: 18px;
     color: #555;
     margin-bottom: 20px;
 }

 .testimonial-card h6 {
     font-weight: 600;
     margin-bottom: 5px;
 }

 .stars {
     color: #ffc107;
     font-size: 18px;
 }

 .offer-strip {
     padding: 40px 0;
     background: linear-gradient(135deg, #fff7e6, #ffe8cc);
 }

 .offer-box {
     font-size: 18px;
     padding: 20px;
     border-radius: 12px;
     background: #fff;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 }

 .offer-code {
     display: inline-block;
     margin-left: 10px;
     padding: 5px 12px;
     background: #ff9800;
     color: #fff;
     border-radius: 20px;
     font-weight: 600;
 }

 .meal-order-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     padding: 12px 22px;
     font-weight: 600;
     border-radius: 30px;
     text-decoration: none;
     background: linear-gradient(135deg, #25d366, #1ebe5d);
     color: #fff;
     transition: all 0.3s ease;
     box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
 }

 .meal-order-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 30px rgba(37, 211, 102, 0.35);
     color: #fff;
 }

 .meal-order-btn .arrow {
     transition: transform 0.3s ease;
 }

 .meal-order-btn:hover .arrow {
     transform: translateX(5px);
 }

 .top-header {
     background: #fff;
     border-bottom: 1px solid #eee;
     position: sticky;
     top: 0;
     z-index: 999;
     padding:6px 0;
 }

 .logo-img {
     height: 80px;
     width: auto;
 }

 .brand-name {
     font-weight: 700;
     font-size: 20px;
 }

 @media(max-width:768px) {
     .logo-img {
         height: 80px;
         width: auto;
     }

     @media(max-width:768px) {
         .logo-img {
             height: 60px;
         }
     }
 }