@font-face {
    font-family: Poppins;
    src: url(webfonts/Poppins-Light.ttf) format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: Poppins;
    src: url(webfonts/Poppins-Regular.ttf) format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: Poppins;
    src: url(webfonts/Poppins-Medium.ttf) format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: Poppins;
    src: url(webfonts/Poppins-Bold.ttf) format("truetype");
    font-weight: 700;
}

@font-face {
    font-family: Poppins;
    src: url(webfonts/Poppins-Italic.ttf) format("truetype");
    font-weight: 400;
    font-style: italic;
}


input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #7fb741;
    font-weight: 700;
    font-size: 10px;
}

input[type="checkbox"]:checked:before {
    content: "\2713";
}
section{
    overflow-y: hidden !important;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    height: 12px;
    min-width: 12px;
    outline: 0;
    cursor: pointer;
    position: relative;
    margin-left: 0;
    border: 1px solid #7fb741;
    background-color: #fff;
    border-radius: 2px;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

::-webkit-scrollbar {
    width: 5px;
    height: 3px;
    border-radius: 8px;
}

::-webkit-scrollbar-track {
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    background-color: #7fb741;
}

body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    font-family: Poppins;
}

p {
    width: 100%;
}

li,
p,
ul {
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
    color: #000;
    font-size: 14px;
}

li,
ul {
    padding: 0;
    list-style: none;
}

p b,
p strong {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

h1,
h2,
h3,
h4 {
    margin: 0;
}

h2 {
    font-weight: 600;
    font-style: normal;
}

button {
    border: 0;
    cursor: pointer;
}

.container {
    width: 100%;
}

section {
    display: flex;
    padding: 3rem 1.5rem;
}


@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes installation {
    0% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
        transform: translateY(0px);
    }

    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }

    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }

    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }

    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }

    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }

    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }

    100% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
        transform: translateY(-20px);
    }
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-30px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-30px);
    }
}

@keyframes riseAndCurl {
    0% {
        transform: translate(0, 0) scale(0.5) rotate(0);
        opacity: 0.6;
    }

    30% {
        transform: translate(-20px, -80px) scale(0.8) rotate(10deg);
        opacity: 0.4;
    }

    60% {
        transform: translate(20px, -160px) scale(1) rotate(-10deg);
        opacity: 0.3;
    }

    100% {
        transform: translate(0, -250px) scale(1.2) rotate(15deg);
        opacity: 0;
    }
}

/* #eeede4 */
@keyframes circlular {
    from {
        -webkit-transform: rotate(0deg) translate(-12px) rotate(0deg);
        -moz-transform: rotate(0deg) translate(-12px) rotate(0deg);
        -ms-transform: rotate(0deg) translate(-12px) rotate(0deg);
        -o-transform: rotate(0deg) translate(-12px) rotate(0deg);
        transform: rotate(0deg) translate(-12px) rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg) translate(-12px) rotate(-360deg);
        -moz-transform: rotate(360deg) translate(-12px) rotate(-360deg);
        -ms-transform: rotate(360deg) translate(-12px) rotate(-360deg);
        -o-transform: rotate(360deg) translate(-12px) rotate(-360deg);
        transform: rotate(360deg) translate(-12px) rotate(-360deg);
    }
}

@keyframes bounce {

    0%,
    100%,
    20%,
    53% {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0) scaleY(1.1);
    }

    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0) scaleY(1.05);
    }

    80% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0) scaleY(0.95);
    }

    90% {
        transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
}

@keyframes blink-caret {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.caret {
    animation: blink-caret 0.75s step-end infinite;
}

/* Start Steam */
#steam-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
}

.steam {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0, rgba(255, 255, 255, 0) 70%);
    filter: blur(8px);
    opacity: 0.5;
    pointer-events: none;
    animation: riseAndCurl 3s forwards ease-out;
}

/* End Steam */

/* Start Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #202020; */
    background-color: #f6f4e7;
}

.loader img {
    width: 100px;
}

/* End Loader */

/* Start Go to top */
.go_top_icon {
    display: none;
}

.go_top_icon a {
    display: flex;
    background-color: #7fb741;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    position: fixed;
    bottom: -100%;
    right: 20px;
    transition: all 0.5s;
    visibility: hidden;
    z-index: 4;
    animation: 4s installation infinite alternate;
    cursor: pointer;
    outline: none !important;
    box-shadow: none;
    border: none;
    text-decoration: none;
}

.go_top_icon a:active {
    background-color: #7fb741;
}

.go_top_icon a.show {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

/* End Go to top */

.tiffin .banner {
    flex-direction: column;
    padding: 0;
}
.tiffin .banner-container{
    padding:4rem 0;
}

.tiffin .banner .banner-info,
.tiffin .banner .logo-container,
.tiffin .banner .menu,
.tiffin .banner .menu-toggle {
    display: flex;
}

/* Banner: Bootstrap Grid Layout */


.banner .row {
    margin: 0;
}

/* Mobile spacing */
.banner .col-12.col-lg-6 {
    padding: 0 15px;
}


/* Feature cards - 2 columns on mobile, 3 on large screens - Override Tailwind grid classes */
.banner .grid.grid-cols-2,
section.banner .grid.grid-cols-2,
.tiffin .banner .grid.grid-cols-2 {
    display: flex !important;
    flex-wrap: wrap !important;
    grid-template-columns: none !important;
    justify-content: center !important;
}

.banner .grid.grid-cols-2.lg\:grid-cols-3,
.tiffin .banner .grid.grid-cols-2.lg\:grid-cols-3,
.tiffin .banner div.grid.grid-cols-2.lg\:grid-cols-3,
.banner div.grid.grid-cols-2.lg\:grid-cols-3,
section.banner .grid.grid-cols-2.lg\:grid-cols-3,
.banner .grid.grid-cols-2[class*="lg:grid-cols-3"] {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    grid-template-columns: none !important;
    justify-content: center !important;
}

.banner .grid.grid-cols-2.lg\:grid-cols-3 > div,
.tiffin .banner .grid.grid-cols-2.lg\:grid-cols-3 > div,
.tiffin .banner div.grid.grid-cols-2.lg\:grid-cols-3 > div,
.banner div.grid.grid-cols-2.lg\:grid-cols-3 > div,
section.banner .grid.grid-cols-2.lg\:grid-cols-3 > div,
.banner .grid.grid-cols-2[class*="lg:grid-cols-3"] > div {
    min-width: 0;
    display: flex;
    max-width: none !important;
    width: auto !important;
}

@media (min-width: 992px) {
    .banner .grid.grid-cols-2.lg\:grid-cols-3,
    .tiffin .banner .grid.grid-cols-2.lg\:grid-cols-3,
    .tiffin .banner div.grid.grid-cols-2.lg\:grid-cols-3,
    .banner div.grid.grid-cols-2.lg\:grid-cols-3,
    section.banner .grid.grid-cols-2.lg\:grid-cols-3,
    .banner .grid.grid-cols-2[class*="lg:grid-cols-3"] {
        justify-content: flex-start !important;
    }
}



/* Stats section - 2 columns on mobile, 4 on medium+ screens */
.tiffin .banner .grid.grid-cols-2.md\:grid-cols-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.tiffin .banner .grid.grid-cols-2.md\:grid-cols-4 > div {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 0;
}

@media (min-width: 768px) {
    .tiffin .banner .grid.grid-cols-2.md\:grid-cols-4 > div {
        flex: 1 1 calc(25% - 1.125rem);
    }
}

.tiffin .banner-title{
    font-size:13px;
}




.tiffin .banner .logo-container {
    border-bottom: 1px solid #fff;
    padding: 1rem 1.5rem;
}

.tiffin .banner .logo-container .manra-logo img,
.tiffin .banner .logo-container .menu img {
    height: 100%;
    width: 100%;
}

.tiffin .banner .logo-container .manra-logo {
    display: flex;
    max-width: 145px;
}

.tiffin .banner .logo-container .menu {
    height: 23px;
    width: 23px;
}


.tiffin .banner .drop-menu {
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    padding: 0.8rem;
    background: white;
    width: fit-content;
    top: 30px;
    border-radius: 4px;
    z-index: 1;
}

.tiffin .banner .drop-menu a {
    margin-top: 0.3rem;
    font-size: 12px;
}

.tiffin .banner .drop-menu a:first-child {
    margin-top: 0;
}

.tiffin .banner .logo-container .menu img {
    filter: invert(1);
}


.tiffin .banner .logo-container .order-number {
    background-color: #fc8019;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.25);
    transition: 1s all;
}

.tiffin .banner .logo-container .order-number svg {
    width: 20px;
    height: 20px;
}

.tiffin .banner .logo-container .order-number span {
    display: none;
}

.tiffin .banner .logo-container .order-number:hover {
    background-color: #7fb741;
    transform: scale(1.1);
}

.tiffin .banner .logo-container .menu-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    top: 0;
    left: 0;
    background-color: #fff;
    box-shadow: 0 0 6px #fff;
    transition: 0.5s all;
    z-index: 5;
    padding: 1rem;
    transform: translateX(-100%);
    scrollbar-width: none;
}

.tiffin .banner .logo-container .menu-links .menu-toggle {
    align-items: center;
    text-decoration: none;
    color: #000;
}

.tiffin .banner .logo-container .menu-links .menu-toggle img {
    width: 13px;
    height: 17px;
    margin-right: 0.2rem;
}

.tiffin .banner .logo-container .menu-links ul {
    padding-left: 0;
}

.tiffin .banner .logo-container .menu-links ul .links-li {
    padding: 0.6rem 0;
    font-weight: 500;
}

.tiffin .banner .logo-container .menu-links ul .links-li a {
    text-decoration: none;
    color: #000;
}

.tiffin .banner .logo-container .menu-links ul .links-li:first-child {
    padding-top: 0;
}

.tiffin .banner .logo-container .menu-links ul .links-li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.tiffin .banner .logo-container .menu-links ul .links-li{
    position: relative;
}

.tiffin .banner .logo-container .menu-links .addressDiv,
.tiffin .banner .logo-container .menu-links .scannDiv,
.tiffin .banner .logo-container .menu-links .socialDiv {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    color: #555;
}

.tiffin .banner .logo-container .menu-links .addressDiv h6,
.tiffin .banner .logo-container .menu-links .scannDiv h6,
.tiffin .banner .logo-container .menu-links .socialDiv h6 {
    font-size: 18px;
}

.tiffin .banner .logo-container .menu-links .socialLinks {
    display: inline-flex;
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.tiffin .banner .logo-container .menu-links .socialLinks li a {
    width: 30px;
    height: 30px;
    font-size: 15px;
    background-color: #555;
    color: #fff;
    padding-top: 4px;
    margin-right: 13px;
    border-radius: 50px;
    display: block;
    text-align: center;
}

.tiffin .banner .logo-container .menu-links .addressDiv ul li {
    padding: 6px 0;
    font-size: 16px;
}

.tiffin .banner .logo-container .menu-links .addressDiv ul li i {
    color: #555;
    font-size: 20px;
    margin-right: 5px;
}

.tiffin .banner .logo-container .menu-links .scannDiv .barcode {
    width: 190px;
    margin: auto;
}

.tiffin .banner .logo-container .active+.menu-links {
    transform: translateX(0);
}

.tiffin .banner .sticky,
.tiffin .banner .logo-container.sticky,
#fixheader.sticky,
.logo-container.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    transition: all 0.3s ease !important;
    background-color: #fff !important;
    border-bottom: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    margin: 0 !important;
}

.tiffin .banner .sticky-down,
.tiffin .banner .logo-container.sticky-down,
#fixheader.sticky-down {
    top: -100px;
    transition: all 0.3s ease;
}


.tiffin .plan {
    /* background-color: #F5F5DC; */
    background-color: #f6f4e7;
    position: relative;
    overflow: hidden;
}

.tiffin .plan .after-img,
.tiffin .plan .before-img {
    display: none;
}

.tiffin .plan .content,
.tiffin .plan .list-content,
.tiffin .plan .pack-container,
.tiffin .plan .plan-container {
    display: flex;
    flex-direction: column;
}

.tiffin .plan .heading {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tiffin .plan .heading img {
    width: 64px;
    height: 64px;
    transition: transform 0.3s ease;
}

.tiffin .plan .heading img:hover {
    transform: scale(1.05);
}

.tiffin .plan h2 {
    color: #000000;
    text-align: center;
    margin: 0.8rem 0 2.5rem;
    font-size: 30px;
    font-weight: 700;
    position: relative;
}

.tiffin .plan h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #fc8019;
    border-radius: 2px;
}

.tiffin .plan .gold-pack,
.tiffin .plan .silver-pack {
    padding: 8px;
    margin-top: 0;
}

.tiffin .plan .gold-pack,
.tiffin .plan .silver-pack,
.tiffin .plan .trial-pack {
    display: flex;
    flex-direction: column;
    border: 3px solid #fff;
    border-radius: 30px;
    margin-top: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.tiffin .plan .gold-pack:hover,
.tiffin .plan .silver-pack:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(239, 128, 26, 0.3);
}

.tiffin .plan .trial-pack {
    padding: 24px 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.tiffin .plan .trial-pack:hover {
    box-shadow: 0 24px 40px rgba(15, 23, 42, 0.12);
    border-color: #7fb74133;
}

.tiffin .plan .pack-container {
    border: 2px solid rgba(127, 183, 65, 0.6);
    border-radius: 22px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tiffin .plan .pack-container .image {
    display: flex;
    flex-direction: column;
}

.tiffin .plan .pack-container .image .gold-thali {
    width: 100%;
    height: auto;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    transition: transform 0.3s ease;
}

.tiffin .plan .gold-pack:hover .pack-container .image .gold-thali,
.tiffin .plan .silver-pack:hover .pack-container .image .gold-thali {
    transform: scale(1.05);
}

.tiffin .plan .gold-pack .pack-container,
.tiffin .plan .silver-pack .pack-container {
    position: relative;
}

.tiffin .plan .gold-pack .pack-container .count-content,
.tiffin .plan .silver-pack .pack-container .count-content {
    position: absolute;
    top: 0;
    right: 0;
    animation: tada 3s linear infinite;
}

.tiffin .plan .gold-pack .pack-container .count-tiffin,
.tiffin .plan .silver-pack .pack-container .count-tiffin {
    position: absolute;
    top: 50px;
    left: 5px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    line-height: 1.1;
    transform: rotate(355deg);

}

.tiffin .plan .gold-pack .pack-container .count-tiffin .count,
.tiffin .plan .silver-pack .pack-container .count-tiffin .count {
    font-size: 22px;
}

.tiffin .plan .gold-pack .pack-container .tiffin-3d,
.tiffin .plan .silver-pack .pack-container .tiffin-3d {
    width: 75px;
    height: 111px;
    margin: auto;
}

.tiffin .plan .gold-pack .pack-container .tiffin-3d img,
.tiffin .plan .silver-pack .pack-container .tiffin-3d img {
    width: 100%;
    height: 100%;
}
.service-tiffin:last-child{
    margin-top: 0.5rem;
}

.tiffin .plan .pack-container .complementary h6 {
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
}

.tiffin .plan .pack-container .content {
    margin-top: 1rem;
}

.tiffin .plan .pack-container .content a,
.tiffin .plan .pack-container .content h3,
.tiffin .plan .pack-container .content h4,
.tiffin .plan .pack-container .content h5,
.tiffin .plan .pack-container .content strong {
    text-align: center;
}

.tiffin .plan .pack-container .content h3 {
    font-size: 22px;
    font-weight: 800;
    position: relative;
    margin-bottom: 1.2rem;
    color: #ef801a;
    text-shadow: 0 2px 4px rgba(239, 128, 26, 0.1);
}

.tiffin .plan .pack-container .content h3::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #7fb741 0%, #7fb741 100%);
    border-radius: 2px;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    transition: width 0.3s ease;
}

.tiffin .plan .gold-pack:hover .pack-container .content h3::after,
.tiffin .plan .silver-pack:hover .pack-container .content h3::after {
    width: 120px;
    background: linear-gradient(90deg, #ef801a 0%, #ff9800 100%);
}

.tiffin .plan .pack-container .content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.tiffin .plan .pack-container .content h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.tiffin .plan .pack-container .content ul {
    padding-left: 0;
}

.tiffin .plan .pack-container .content ul li {
    display: flex;
    margin-top: 0.3rem;
    transition: transform 0.2s ease;
    padding: 1px 0;
    font-size: 14px;
}

.tiffin .plan .pack-container .content ul li:hover {
    transform: translateX(5px);
}

.tiffin .plan .pack-container .content ul li::before {
    content: "";
    min-width: 13px;
    height: 13px;
    background-size: 100% 100%;
    margin: 0.2rem 0.4rem 0 0;
    animation: heartBeat 3s linear infinite;
    filter: brightness(0) saturate(100%) invert(34%) sepia(68%) saturate(388%) hue-rotate(49deg) brightness(95%) contrast(90%);
}

.tiffin .plan .pack-container .content .order {
    background: linear-gradient(135deg, #7fb741 0%, #7fb741 100%);
    border-radius: 50px;
    margin-top: 1rem;
    padding: 12px 20px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(127, 183, 65, 0.4);
    position: relative;
    overflow: hidden;
    font-size: 14px;
}

.tiffin .plan .pack-container .content .order::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.tiffin .plan .pack-container .content .order:hover::before {
    width: 300px;
    height: 300px;
}

.tiffin .plan .pack-container .content .order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 183, 65, 0.6);
    background: linear-gradient(135deg, #7fb741 0%, #7fb741 100%);
}

.tiffin .plan .pack-container .content .order h5 {
    animation: pulse 3s linear infinite;
    margin-bottom: 0;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.tiffin .plan .trial-pack .thali {
    display: flex;
    background-color: #f8fafc;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.tiffin .plan .trial-pack .thali img {
    width: 100%;
    height: 100%;
}

.tiffin .plan .trial-pack .trial-list h3 {
    font-size: 28px;
    font-weight: 800;
    position: relative;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tiffin .plan .trial-pack .trial-list h3::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #7fb741, transparent);
    bottom: -10px;
    margin: auto;
    left: 0;
}

.tiffin .plan .trial-pack .trial-list ul {
    padding-left: 0;
    margin-top: 10px;
}

.tiffin .plan .trial-pack .trial-list ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0.5rem;
    border-radius: 8px;
    background: #ffffff;
    border-left: 3px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tiffin .plan .trial-pack .trial-list ul li::before {
    content: "";
    min-width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, #ffd166 45%, #ffffff 46% 100%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    margin: 0.1rem 0.4rem 0 0;
}

.tiffin .plan .trial-pack .trial-list strong {
    color: #7fb741;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.tiffin .plan .trial-pack .order {
    background: linear-gradient(135deg, #7fb741 0%, #7fb741 100%);
    margin-top: 1rem;
    padding: 15px 25px;
    text-decoration: none;
    color: #fff;
    min-width: 174px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 10px 24px rgba(127, 183, 65, 0.35), inset 0 -4px 10px rgba(0,0,0,0.06);
}

.tiffin .plan .trial-pack .order:hover {
    box-shadow: 0 16px 32px rgba(127, 183, 65, 0.45), inset 0 -4px 10px rgba(0,0,0,0.06);
    background: linear-gradient(135deg, #7fb741 0%, #7fb741 100%);
}

.tiffin .plan .trial-pack .order a {
    color: #fff;
    text-decoration: none;
}

.tiffin .plan .trial-pack .order h5 {
    animation: pulse 3s linear infinite;
    margin-bottom: 0;
    text-align: center;
    font-size: 20px;
}

.tiffin .plan .trial-pack .order span {
    font-size: 20px;
    font-weight: 600;
    text-align:center;
}

.tiffin .plan .nav-item {
    margin: 0;
    display: flex;
    flex-shrink: 0;
    flex: 1;
}

.tiffin .plan .nav-item:last-child {
    margin: 0;
}

.tiffin .plan .nav-tabs {
    border-bottom: none;
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    padding: 10px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 250, 252, 0.95) 50%,
        rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(239, 128, 26, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.9);
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    backdrop-filter: blur(20px);
}

.tiffin .plan .nav-tabs::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg,
        rgba(239, 128, 26, 0.2) 0%,
        rgba(255, 152, 0, 0.15) 25%,
        rgba(239, 128, 26, 0.1) 50%,
        rgba(255, 152, 0, 0.15) 75%,
        rgba(239, 128, 26, 0.2) 100%);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
    filter: blur(8px);
}

.tiffin .plan .nav-tabs:hover::before {
    opacity: 0.6;
}

.tiffin .plan .nav-tabs .nav-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(248, 250, 252, 0.7) 100%);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 18px 36px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #475569;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    width: 100%;
    z-index: 2;
    white-space: nowrap;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.tiffin .plan .nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%);
    transition: left 0.6s ease;
    z-index: 1;
}

.tiffin .plan .nav-tabs .nav-link:hover::before {
    left: 100%;
}

.tiffin .plan .nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg,
        rgba(239, 128, 26, 0.3) 0%,
        rgba(255, 152, 0, 0.2) 50%,
        rgba(239, 128, 26, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.tiffin .plan .nav-tabs .nav-link:hover::after {
    opacity: 1;
}


.tiffin .plan .nav-tabs .nav-link .tab-icon {
    width: 26px;
    height: 26px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    stroke-width: 2.8;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.tiffin .plan .nav-tabs .nav-link .tab-text {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    position: relative;
    z-index: 3;
}

.tiffin .plan .nav-tabs .nav-link:hover {
    color: #ef801a;
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg,
        rgba(254, 243, 231, 0.9) 0%,
        rgba(255, 247, 237, 0.95) 100%);
    border-color: rgba(239, 128, 26, 0.3);
    box-shadow:
        0 8px 24px rgba(239, 128, 26, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.tiffin .plan .nav-tabs .nav-link:hover .tab-icon {
    color: #ef801a;
    transform: scale(1.2) rotate(8deg);
    filter: drop-shadow(0 4px 8px rgba(239, 128, 26, 0.4));
}

.tiffin .plan .nav-tabs .nav-link:hover .tab-text {
    font-weight: 800;
    letter-spacing: 0.6px;
}

.tiffin .plan .nav-tabs .nav-link.active {
    background: linear-gradient(135deg,
        #ef801a 0%,
        #ff9800 50%,
        #f59e0b 100%);
    color: #ffffff;
    position: relative;
    z-index: 3;
    transform: scale(1.05);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 12px 40px rgba(239, 128, 26, 0.4),
        0 6px 20px rgba(239, 128, 26, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    animation: activeGlow 3s ease-in-out infinite;
}

@keyframes activeGlow {
    0%, 100% {
        box-shadow:
            0 12px 40px rgba(239, 128, 26, 0.4),
            0 6px 20px rgba(239, 128, 26, 0.3),
            0 2px 8px rgba(0, 0, 0, 0.15),
            inset 0 2px 0 rgba(255, 255, 255, 0.3),
            inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow:
            0 14px 45px rgba(239, 128, 26, 0.5),
            0 8px 25px rgba(239, 128, 26, 0.4),
            0 2px 8px rgba(0, 0, 0, 0.15),
            inset 0 2px 0 rgba(255, 255, 255, 0.3),
            inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    }
}

.tiffin .plan .nav-tabs .nav-link.active::after {
    opacity: 0;
}

.tiffin .plan .nav-tabs .nav-link.active .tab-icon {
    color: #ffffff;
    transform: scale(1.3) rotate(-5deg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1.3) rotate(-5deg);
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    }
    50% {
        transform: scale(1.35) rotate(-5deg) translateY(-3px);
        filter: drop-shadow(0 6px 16px rgba(255, 255, 255, 0.5));
    }
}

.tiffin .plan .nav-tabs .nav-link.active .tab-text {
    font-weight: 900;
    letter-spacing: 0.7px;
    color: #ffffff;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.2);
    font-size: 17px;
}

.tiffin .plan .owl-nav {
    display: flex;
    justify-content: space-between;
    width: calc(100% + 20px);
    height: fit-content;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -9px;
    margin: auto;
}

.tiffin .plan .owl-nav .owl-next,
.tiffin .plan .owl-nav .owl-prev {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.tiffin .plan .owl-nav .owl-next:hover,
.tiffin .plan .owl-nav .owl-prev:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #ef801a;
}

.tiffin .plan .owl-nav .owl-next img,
.tiffin .plan .owl-nav .owl-prev img {
    width: 15px;
    height: 15px;

}

.tiffin .plan .owl-nav .owl-next.active,
.tiffin .plan .owl-nav .owl-prev.active {
    background: linear-gradient(135deg, #ef801a 0%, #ff9800 100%);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(239, 128, 26, 0.4);
}

.tiffin .plan .owl-nav .owl-next.active img,
.tiffin .plan .owl-nav .owl-prev.active img {
    filter: invert(1);
}

.tiffin .plan .owl-nav .owl-prev {
    transform: rotate(-180deg);
}

/* Responsive styles for Plan Section */
@media (max-width: 767px) {
    .tiffin .plan .nav-tabs {
        padding: 8px;
        margin-bottom: 1.5rem;
        border-radius: 18px;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .tiffin .plan .nav-tabs .nav-link {
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 14px;
        min-width: auto;
        flex: 1;
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .tiffin .plan .nav-tabs .nav-link .tab-icon {
        width: 22px;
        height: 22px;
    }

    .tiffin .plan .nav-tabs .nav-link:hover {
        transform: translateY(-2px) scale(1.01);
    }

    .tiffin .plan .nav-tabs .nav-link.active {
        transform: translateY(-3px) scale(1.03);
    }

    .tiffin .plan .nav-tabs .nav-link.active .tab-icon {
        transform: scale(1.25) rotate(-5deg);
    }

    .tiffin .plan .nav-tabs .nav-link.active .tab-text {
        font-size: 15px;
    }

    .tiffin .plan h2 {
        font-size: 24px;
        margin: 0.8rem 0 2rem;
    }

    .tiffin .plan .pack-container {
        padding: 15px;
        border-radius: 15px;
    }

    .tiffin .plan .pack-container .content h3 {
        font-size: 20px;
    }

    .tiffin .plan .pack-container .content .order {
        padding: 12px 20px;
        font-size: 14px;
    }

    .tiffin .plan .gold-pack,
    .tiffin .plan .silver-pack,
    .tiffin .plan .trial-pack {
        margin-top: 1.5rem;
        border-radius: 20px;
    }

    .tiffin .plan .owl-nav .owl-next,
    .tiffin .plan .owl-nav .owl-prev {
        width: 35px;
        height: 35px;
    }

    .tiffin .plan .trial-pack {
        padding: 15px 20px;
    }
}

@media screen and (min-width: 768px) {
    .tiffin .plan .nav-tabs {
        padding: 8px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .tiffin .plan .nav-tabs .nav-link {
        padding: 16px 32px;
        min-width: 180px;
        font-size: 15px;
        display: flex;
        flex-direction: row;
    }

    /* Card Content Spacing for Tablet */
    .tiffin .plan .card-content {
        padding: 32px 18px !important;
    }

    /* Complementary Features Spacing */
    .tiffin .plan .complementary-features {
        margin: 12px 0 16px 0;
    }

    /* Order Button Spacing and Layout */
    .tiffin .plan .order-btn {
        padding: 16px 24px;
        font-size: 16px;
        margin-top: 8px;
        width: 100%;
        max-width: 100%;
    }

    .tiffin .plan .order-btn .price-old {
        font-size: 13px;
    }

    .tiffin .plan .order-btn .price-new {
        font-size: 18px;
    }
}

/* Modern Package Cards Styles */
.tiffin .plan .modern-card {
    background: linear-gradient(to bottom right, #ffffff, #fafafa);
    border-radius: 24px;
    overflow: visible;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    border: 2px solid #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tiffin .plan .modern-card:hover {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.11), 0 5px 18px rgba(0, 0, 0, 0.07);
}

.tiffin .plan .modern-card.silver-card {
    background: linear-gradient(to bottom right, #f8fafc, #f1f5f9);
    border-color: #e2e8f0;
}

.tiffin .plan .modern-card.silver-card:hover {
    box-shadow: 0 14px 36px rgba(100, 116, 139, 0.13), 0 5px 18px rgba(100, 116, 139, 0.09);
}

.tiffin .plan .modern-card:not(.silver-card) {
    background: linear-gradient(to bottom right, #fef3e2, #fef9f3);
    border-color: #ef801a;
    border-width: 2px;
    box-shadow: 0 10px 40px rgba(239, 128, 26, 0.15), 0 4px 12px rgba(239, 128, 26, 0.1);
}

.tiffin .plan .modern-card:not(.silver-card):hover {
    border-color: #ef801a;
    box-shadow: 0 14px 36px rgba(239, 128, 26, 0.21), 0 5px 18px rgba(239, 128, 26, 0.16);
}

/* Card Badges */
.tiffin .plan .card-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.3px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.tiffin .plan .badge-popular {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    color: #ffffff;
}

.tiffin .plan .badge-value {
    background: linear-gradient(135deg, #7fb741 0%, #7fb741 100%);
    color: #ffffff;
}

.tiffin .plan .card-save-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    color: #1f2937;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: pulse 2s ease-in-out infinite;
}



/* Card Icons */
.tiffin .plan .card-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 11;
}

.tiffin .plan .card-icon.gold-icon {
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    color: #ffffff;
}

.tiffin .plan .card-icon.silver-icon {
    background: #4b5563;
    color: #ffffff;
}


/* Image Wrapper */
.tiffin .plan .image-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    height: 180px;
    padding-bottom: 25px;
}

.tiffin .plan .package-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border-radius: 24px 24px 0 0;
}


.tiffin .plan .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    z-index: 1;
    pointer-events: none;
    border-radius: 24px 24px 0 0;
}

/* 3D Tiffin Icon */
.tiffin .plan .tiffin-3d-icon {
    position: absolute;
    bottom: 10px;
    left: 20px;
    width: 75px;
    height: 111px;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(239, 128, 26, 0.3));
    animation: floatTiffin 3s ease-in-out infinite;
    transform-origin: center center;
}

.tiffin .plan .tiffin-3d-icon.silver-tiffin-icon {
    filter: drop-shadow(0 4px 12px rgba(100, 116, 139, 0.3));
}

@keyframes floatTiffin {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes floatTiffinBadge {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}


.tiffin .plan .tiffin-badge {
    position: absolute;
    bottom: 36px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    line-height: 1.1;
    z-index: 3;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    width: 75px;
    text-align: center;
    animation: floatTiffinBadge 3s ease-in-out infinite;
    transform-origin: center center;
}

.tiffin .plan .tiffin-badge.silver-badge {
    background: transparent;
    box-shadow: none;
}

.tiffin .plan .tiffin-count {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    color: #1f2937;
}

.tiffin .plan .tiffin-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0;
    color: #1f2937;
}

/* Card Content */
.tiffin .plan .card-content {
    padding: 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
}

.tiffin .plan .package-title {
    font-size: 20px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 6px 0;
    line-height: 1.2;
    text-align: center;
    position: relative;
    letter-spacing: -0.5px;
}

.tiffin .plan .modern-card:not(.silver-card) .package-title {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tiffin .plan .package-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #7fb741, transparent);
    border-radius: 2px;
}

.tiffin .plan .package-period {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin: 10px 0 3px 0;
    text-align: center;
}

.tiffin .plan .package-days {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    margin: 0 0 10px 0;
    text-align: center;
}

/* Features List */
.tiffin .plan .package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    flex: 1;
}

.tiffin .plan .package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    line-height: 1.6;
    padding: 0;
    border-radius: 8px;
    pointer-events: auto;
}


.tiffin .plan .package-features li svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
    flex-shrink: 0;
    margin-top: 2px;
    padding: 4px;
    background: linear-gradient(135deg, #7fb741 0%, #7fb741 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}


.tiffin .plan .package-features li span {
    flex: 1;
    color: #1f2937;
    font-weight: 500;
}

/* Complementary Toggle Section */
.tiffin .plan .complementary-toggle-section {
    margin: 10px 0;
}

.tiffin .plan .complementary-toggle-btn {
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 2px solid #d1d5db;
    border-radius: 12px;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    gap: 8px;
}

.tiffin .plan .complementary-toggle-btn:hover {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    border-color: #9ca3af;
    color: #1f2937;
}

.tiffin .plan .complementary-toggle-btn:hover {
    background: linear-gradient(135deg, #7fb741 0%, #059669 100%);
    border-color: #059669;
    color: #ffffff;
}

.tiffin .plan .complementary-toggle-btn:hover svg {
    transform: translateX(4px);
}

.tiffin .plan .complementary-toggle-btn.active:hover svg {
    transform: translateY(4px) rotate(90deg);
}

.tiffin .plan .complementary-toggle-btn svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.tiffin .plan .complementary-toggle-btn.active svg {
    transform: rotate(90deg);
}

/* Complementary Modal Popup */
.complementary-modal {
    position: fixed;
    z-index: 999999 !important;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    transform: translateY(-10px);
    top: 0;
    left: 0;
}

.complementary-modal.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    transform: translateY(0) !important;
}

/* Ensure modal content is visible when active */
.complementary-modal.active .complementary-modal-content {
    display: flex !important;
}

.complementary-modal-overlay {
    display: none;
}

.complementary-modal-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    width: 320px;
    max-height: 400px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.complementary-modal-header {
    background: linear-gradient(135deg, #7fb741 0%, #059669 100%);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.complementary-modal-header h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.complementary-modal-close {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.complementary-modal-close:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(90deg);
    border-color: rgba(255, 255, 255, 0.4);
}

.complementary-modal-close svg {
    width: 18px;
    height: 18px;
    stroke-width: 3;
}

.complementary-modal-body {
    padding: 20px;
    overflow-y: auto;
    max-height: 320px;
    background: #ffffff;
}

.complementary-modal-body::-webkit-scrollbar {
    width: 6px;
}

.complementary-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.complementary-modal-body::-webkit-scrollbar-thumb {
    background: #7fb741;
    border-radius: 10px;
}

.complementary-modal-body::-webkit-scrollbar-thumb:hover {
    background: #059669;
}

/* Complementary Features List in Modal */
.complementary-modal .complementary-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.complementary-modal .complementary-features-list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    line-height: 1.6;
    border-radius: 8px;
    pointer-events: auto;
}

.complementary-modal .complementary-features-list li svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
    flex-shrink: 0;
    padding: 4px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.complementary-modal .complementary-features-list li span {
    flex: 1;
    color: #1f2937;
    font-weight: 500;
}

.tiffin .plan .complementary-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tiffin .plan .complementary-features-list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    line-height: 1.6;
    border-radius: 8px;
    pointer-events: auto;
}

.tiffin .plan .complementary-features-list li svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
    flex-shrink: 0;
    margin-top: 2px;
    padding: 4px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.tiffin .plan .complementary-features-list li span {
    flex: 1;
    color: #1f2937;
    font-weight: 500;
}

/* Complementary Features */
.tiffin .plan .complementary-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 24px 0;
}

.tiffin .plan .complementary-features h6 {
    font-size: 18px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 16px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tiffin .plan .complementary-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    line-height: 1.6;
    border-radius: 8px;
    pointer-events: auto;
}


.tiffin .plan .complementary-features li svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
    flex-shrink: 0;
    margin-top: 2px;
    padding: 4px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}


.tiffin .plan .complementary-features li span {
    flex: 1;
}

/* Order Button */
.tiffin .plan .order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(239, 128, 26, 0.4), 0 4px 12px rgba(239, 128, 26, 0.3);
    border: 2px solid #ffffff;
    cursor: pointer;
    text-transform: none;
    flex-wrap: nowrap;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}



.tiffin .plan .order-btn .price-old {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.tiffin .plan .order-btn .price-new {
    font-weight: 900;
    font-size: 18px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.tiffin .plan .order-btn span:first-child {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.tiffin .plan .order-btn.silver-btn {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    box-shadow: 0 8px 24px rgba(100, 116, 139, 0.4), 0 4px 12px rgba(100, 116, 139, 0.3);
}

/* Tab Content */
.tiffin .plan .tab-content {
    margin-top: 2rem;
}

.tiffin .plan .tab-pane {
    display: none;
}

.tiffin .plan .tab-pane.active,
.tiffin .plan .tab-pane.show {
    display: block;
}

/* Initially hide silver list, show gold list */
.tiffin .plan .silver-list {
    display: none;
}

.tiffin .plan .gold-list {
    display: block;
}

/* Show/hide lists when tab is active */
.tiffin .plan #fill-tabpanel-0.active .gold-list,
.tiffin .plan #fill-tabpanel-0.show .gold-list {
    display: block;
}

.tiffin .plan #fill-tabpanel-1.active .silver-list,
.tiffin .plan #fill-tabpanel-1.show .silver-list {
    display: block;
}

/* Ensure active tab is visible immediately for slider initialization */
.tiffin .plan .tab-pane.fade.active {
    opacity: 1;
}

/* Hide all package "Save $X/week vs restaurants" ribbons */
.tiffin .plan .card-save-badge {
    display: none !important;
}

/* Optimized slider loading - prevent FOUC without blocking render */
.tiffin .plan .gold-list.owl-carousel:not(.owl-loaded),
.tiffin .plan .silver-list.owl-carousel:not(.owl-loaded) {
    opacity: 0;
    visibility: hidden;
    /* Use will-change for better performance */
    will-change: opacity, visibility;
}

/* Smooth reveal once initialized - optimized transition */
.tiffin .plan .gold-list.owl-carousel.owl-loaded,
.tiffin .plan .silver-list.owl-carousel.owl-loaded {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
    /* Remove will-change after animation to save resources */
    will-change: auto;
}

/* Performance optimization - enable GPU acceleration */
.tiffin .plan .gold-list.owl-carousel,
.tiffin .plan .silver-list.owl-carousel {
    transform: translateZ(0); /* Force GPU acceleration */
    backface-visibility: hidden; /* Improve animation performance */
}

/* Ensure trial pack is always visible on all screen sizes */
.tiffin .plan .trial-pack {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Optimize hidden slider containers - reduce layout calculations */
.tiffin .plan .silver-list[style*="display: none"] {
    display: none !important;
    /* Prevent layout calculations for hidden sliders */
    contain: layout style paint;
}

/* Optimize active slider for better performance on mobile */
@media (max-width: 767px) {
    .tiffin .plan .gold-list.owl-carousel.owl-loaded,
    .tiffin .plan .silver-list.owl-carousel.owl-loaded {
        /* Faster transitions on mobile */
        transition: opacity 0.15s ease-in;
    }

    /* Reduce repaints on mobile */
    .tiffin .plan .gold-pack,
    .tiffin .plan .silver-pack {
        contain: layout style;
    }
}


/* Responsive for Modern Cards */
@media (max-width: 767px) {
    .tiffin .plan .tab-content {
        padding: 0;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    .tiffin .plan .image-wrapper::after{
        height: 200px;
    }

    .tiffin .plan .tab-pane {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .tiffin .plan .tab-pane.active {
        display: flex;
        justify-content: center;
    }

    .tiffin .plan .gold-list.owl-carousel,
    .tiffin .plan .silver-list.owl-carousel {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .tiffin .plan .gold-list .owl-wrapper-outer,
    .tiffin .plan .silver-list .owl-wrapper-outer {
        margin: 0 auto;
        width: 100%;
    }

    .tiffin .plan .gold-list .owl-stage-outer,
    .tiffin .plan .silver-list .owl-stage-outer {
        padding: 0;
        margin: 0 auto;
        overflow: hidden;
        width: 100%;
        display: block;
    }

    .tiffin .plan .gold-list .owl-stage,
    .tiffin .plan .silver-list .owl-stage {
        display: flex;
        justify-content: center;
        padding-left: 15px;
        padding-right: 15px;
    }

    .tiffin .plan .gold-list .owl-item,
    .tiffin .plan .silver-list .owl-item {
        padding: 0;
        margin: 0 auto;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .tiffin .plan .gold-list .owl-item:first-child,
    .tiffin .plan .silver-list .owl-item:first-child {
        margin-left: auto;
    }

    .tiffin .plan .gold-list .owl-item:last-child,
    .tiffin .plan .silver-list .owl-item:last-child {
        margin-right: auto;
    }

    .tiffin .plan .gold-pack,
    .tiffin .plan .silver-pack {
        padding: 0;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .tiffin .plan .modern-card {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        border-radius: 16px;
    }

    .tiffin .plan .package-image {
        height: 200px;
    }

    .tiffin .plan .card-content {
        padding: 20px 16px;
    }

    .tiffin .plan .package-title {
        font-size: 20px;
    }

    .tiffin .plan .package-period {
        font-size: 14px;
    }

    .tiffin .plan .package-days {
        font-size: 13px;
    }

    .tiffin .plan .card-badge {
        top: 12px;
        left: 12px;
        padding: 5px 12px;
        font-size: 11px;
    }

    .tiffin .plan .card-icon {
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
    }

    .tiffin .plan .image-wrapper {
        height: 200px;
        padding-bottom: 25px;
    }

    .tiffin .plan .tiffin-3d-icon {
        width: 60px;
        height: 90px;
        bottom: 8px;
        left: 15px;
    }

    .tiffin .plan .tiffin-badge {
        bottom: 28px;
        left: 15px;
        width: 60px;
    }

    .tiffin .plan .tiffin-count {
        font-size: 18px;
    }

    .tiffin .plan .tiffin-label {
        font-size: 11px;
    }

}

.tiffin .refer .images {
    display: none;
}

.tiffin .refer .refer-container,
.tiffin .refer .refer-content {
    display: flex;
    flex-direction: column;
}

.tiffin .refer .refer-container {
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    background-color: #fff;
    position: relative;
}

.tiffin .refer .refer-content {
    align-items: center;
    justify-content: center;
}

.tiffin .refer .refer-container::after {
    content: "";
    position: absolute;
    width: 65px;
    height: 78px;
    background-size: 100% 100%;
    top: -22px;
    left: -19px;
    transform: rotate(347deg);
}

.tiffin .refer .refer-content .refer-img {
    display: flex;
    width: auto;
    height: 145px;
}

.tiffin .refer .refer-content .refer-img img {
    width: 100%;
    height: 100%;
}

.tiffin .refer .refer-content .main-heading {
    display: flex;
    font-size: 25px;
    margin-top: 0.5rem;
    font-weight: 800;
    color: #fc8019;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.tiffin .refer .refer-content .main-heading .gift {
    display: flex;
    min-width: 25px;
    width: 25px;
    height: 25px;
    margin: 0.2rem 0.5rem 0 0;
}

.tiffin .refer .refer-content .main-heading .gift img {
    width: 100%;
    height: 100%;
}

.tiffin .refer .refer-content .subheading {
    font-size: 16px;
    color: #4a4a4a;
    text-align: center;
}

.tiffin .refer .refer-content .invite-link {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #7fb741;
    color: white;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    transition: background 0.3s ease;
    width: fit-content;
    transition: 1s all;
}

.tiffin .refer .refer-content .invite-link img {
    width: 20px;
    height: 15px;
    margin-left: 8px;
    filter: invert(1);
}

.tiffin .refer .refer-content .invite-link:hover {
    transform: scale(1.1);
}

.tiffin .refer .refer-info {
    display: flex;
}

.tiffin .refer .refer-info img {
    width: 100%;
    height: 100%;
}

.tiffin .food-menu {
    /* background: rgb(240, 240, 245); */
    /* background-color: #f3f3f3; */
    background-color: #f6f4e7;
    /* background: linear-gradient(180deg, #fff 0%, #ffccbc 100%); */
}

.tiffin .food-menu .menu-container,
.tiffin .food-menu .menu-content {
    display: flex;
    flex-direction: column;
}

.tiffin .food-menu .heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
}

.tiffin .food-menu .heading img {
    width: 64px;
    height: 64px;
}

.tiffin .food-menu .heading strong {
    font-family: Dynalight, Sans-serif;
    font-size: 20px;
    text-transform: none;
    color: #7fb741;
    font-style: italic;
    margin-bottom: 10px;
}

.tiffin .food-menu .heading h2 {
    text-transform: uppercase;
    font-size: 22px;
    font-weight: bold;
}

.tiffin .food-menu .menu-content h3 {
    color: #fff;
    display: flex;
    justify-content: center;
    font-size: 20px;
    position: relative;
    padding: 2px 39px 3px;
    text-transform: uppercase;
    z-index: 1;
    max-width: fit-content;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.tiffin .food-menu .menu-content h3::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -53%);
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMjUgNDQiPjxnIGZpbGw9Im5vbmUiIGNsYXNzPSJuYy1pY29uLXdyYXBwZXIiPjxwYXRoIGQ9Ik0wIDBoMjI1bC0xNS40IDIyTDIyNSA0NEgwbDE1LjUtMjJMMCAweiIgZmlsbD0iY3VycmVudENvbG9yIj48L3BhdGg+PC9nPjwvc3ZnPg==);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMjUgNDQiPjxnIGZpbGw9Im5vbmUiIGNsYXNzPSJuYy1pY29uLXdyYXBwZXIiPjxwYXRoIGQ9Ik0wIDBoMjI1bC0xNS40IDIyTDIyNSA0NEgwbDE1LjUtMjJMMCAweiIgZmlsbD0iY3VycmVudENvbG9yIj48L3BhdGg+PC9nPjwvc3ZnPg==);
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    background: #7fb741;
    z-index: -1;
}

.tiffin .food-menu .menu-content ul {
    padding-left: 0;
    margin-bottom: 0;
}

.tiffin .food-menu .menu-content ul li {
    margin: 0.5rem 0 0 1.5rem;
    position: relative;
}

.tiffin .food-menu .menu-content ul li::before {
    content: "";
    position: absolute;
    min-width: 13px;
    height: 13px;
    background-size: 100% 100%;
    animation: heartBeat 3s linear infinite;
    left: -21px;
    top: 5px;
    filter: brightness(0) saturate(100%) invert(34%) sepia(68%) saturate(388%) hue-rotate(49deg) brightness(95%) contrast(90%);
}

.tiffin .food-menu .menu-info {
    display: flex;
    padding-top: 5.5rem;
}

.tiffin .food-menu .our-work-card-wrapper {
    position: relative;
    z-index: 1;
    width: 200px;
}

.tiffin .food-menu .card-stack-wrapper {
    position: relative;
    height: 268px;
    display: flex;
    flex-direction: column;
}

.tiffin .food-menu .stack-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tiffin .food-menu .stack-text {
    display: none;
    position: absolute;
    top: -57px;
    left: 0;
    font-weight: 700;
    font-size: 20px;
    padding: 2px 39px 3px;
    white-space: nowrap;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.tiffin .food-menu .stack-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -53%);
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMjUgNDQiPjxnIGZpbGw9Im5vbmUiIGNsYXNzPSJuYy1pY29uLXdyYXBwZXIiPjxwYXRoIGQ9Ik0wIDBoMjI1bC0xNS40IDIyTDIyNSA0NEgwbDE1LjUtMjJMMCAweiIgZmlsbD0iY3VycmVudENvbG9yIj48L3BhdGg+PC9nPjwvc3ZnPg==);
    -webkit-mask-size: 100%;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMjUgNDQiPjxnIGZpbGw9Im5vbmUiIGNsYXNzPSJuYy1pY29uLXdyYXBwZXIiPjxwYXRoIGQ9Ik0wIDBoMjI1bC0xNS40IDIyTDIyNSA0NEgwbDE1LjUtMjJMMCAweiIgZmlsbD0iY3VycmVudENvbG9yIj48L3BhdGg+PC9nPjwvc3ZnPg==);
    mask-size: 100%;
    mask-position: center center;
    mask-repeat: no-repeat;
    background: #7fb741;
    z-index: -1;
}

.tiffin .food-menu .stack-image {
    position: absolute;
    left: -20%;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    border-style: solid;
    border-width: 5px;
    border-color: #fdfce4;
    border-radius: 25px;
    transition: transform 0.6s ease-out, right 0.6s ease-out, left 0.6s ease-out, opacity 275ms ease, z-index 425ms ease-out, -webkit-transform 0.6s ease-out;
    object-fit: scale-down;
}

.tiffin .food-menu .stack-item.stack-1 .stack-text {
    display: flex;
    opacity: 1;
}

.tiffin .food-menu .stack-item.stack-1 .stack-image {
    left: -3%;
    top: 0;
    z-index: 1;
    transform: scale(1);
    opacity: 1;
}

.tiffin .food-menu .stack-item.stack-2 .stack-image {
    left: 10%;
    top: 1%;
    z-index: 0;
    transform: scale(0.9);
    opacity: 1;
}

.tiffin .food-menu .stack-item.stack-3 .stack-image {
    left: 23%;
    top: 2%;
    z-index: -1;
    transform: scale(0.8);
    opacity: 1;
}

.tiffin .food-menu .stack-item.stack-4 .stack-image {
    left: 36%;
    top: 3%;
    z-index: -2;
    transform: scale(0.7);
    opacity: 1;
}

.tiffin .food-menu .stack-item.stack-5 .stack-image {
    left: 49%;
    top: 4%;
    z-index: -3;
    transform: scale(0.6);
    opacity: 0.95;
}

/* ============================================
   Month-Menu Section Background Animations
   Desktop Only
   ============================================ */

.tiffin .month-menu {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* Ensure all content elements stay above background */
.tiffin .month-menu .heading,
.tiffin .month-menu .container,
.tiffin .month-menu .row,
.tiffin .month-menu .table-container {
    position: relative;
    z-index: 1;
}


/* Container z-index for content layering */
.tiffin .month-menu .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   Professional Background Animations - Desktop Only
   Maintains White Background Color
   ============================================ */

@media (min-width: 1200px) {
    /* Subtle Moving Light Shadows - Professional Effect */
    .tiffin .month-menu::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.015) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.012) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.01) 0%, transparent 50%);
        background-size:
            800px 800px,
            900px 900px,
            1000px 1000px;
        background-position:
            0% 0%,
            100% 100%,
            50% 50%;
        animation: subtleLightMove 40s ease-in-out infinite;
        pointer-events: none;
        z-index: 0;
    }

    .tiffin .month-menu::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            repeating-linear-gradient(
                45deg,
                transparent,
                transparent 60px,
                rgba(0, 0, 0, 0.008) 60px,
                rgba(0, 0, 0, 0.008) 61px
            ),
            repeating-linear-gradient(
                -45deg,
                transparent,
                transparent 60px,
                rgba(0, 0, 0, 0.008) 60px,
                rgba(0, 0, 0, 0.008) 61px
            );
        background-size:
            120px 120px,
            120px 120px;
        background-position:
            0 0,
            0 0;
        animation: diagonalPatternMove 60s linear infinite;
        pointer-events: none;
        z-index: 0;
        opacity: 0.6;
    }

    @keyframes subtleLightMove {
        0%, 100% {
            background-position:
                0% 0%,
                100% 100%,
                50% 50%;
        }
        25% {
            background-position:
                20% 30%,
                80% 70%,
                60% 40%;
        }
        50% {
            background-position:
                40% 20%,
                60% 80%,
                30% 70%;
        }
        75% {
            background-position:
                10% 50%,
                90% 50%,
                70% 30%;
        }
    }

    @keyframes diagonalPatternMove {
        0% {
            background-position:
                0 0,
                0 0;
        }
        100% {
            background-position:
                120px 120px,
                -120px -120px;
        }
    }

    /* Professional Grid Pattern with Subtle Movement */
    .tiffin .month-menu {
        background-image:
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 98px,
                rgba(0, 0, 0, 0.01) 98px,
                rgba(0, 0, 0, 0.01) 100px
            ),
            repeating-linear-gradient(
                90deg,
                transparent,
                transparent 98px,
                rgba(0, 0, 0, 0.01) 98px,
                rgba(0, 0, 0, 0.01) 100px
            );
        background-size:
            100px 100px,
            100px 100px;
        background-position:
            0 0,
            0 0;
        animation: gridPatternMove 50s linear infinite;
    }

    @keyframes gridPatternMove {
        0% {
            background-position:
                0 0,
                0 0;
        }
        100% {
            background-position:
                100px 100px,
                100px 100px;
        }
    }

    /* Floating Subtle Highlights */
    .tiffin .month-menu .container::before {
        content: "";
        position: absolute;
        top: 15%;
        left: 10%;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 30%, transparent 70%);
        border-radius: 50%;
        animation: floatHighlight1 25s ease-in-out infinite;
        pointer-events: none;
        z-index: 0;
        filter: blur(60px);
    }

    .tiffin .month-menu .container::after {
        content: "";
        position: absolute;
        bottom: 20%;
        right: 12%;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 30%, transparent 70%);
        border-radius: 50%;
        animation: floatHighlight2 30s ease-in-out infinite;
        pointer-events: none;
        z-index: 0;
        filter: blur(70px);
    }

    @keyframes floatHighlight1 {
        0%, 100% {
            transform: translate(0, 0) scale(1);
            opacity: 0.4;
        }
        25% {
            transform: translate(80px, -60px) scale(1.2);
            opacity: 0.6;
        }
        50% {
            transform: translate(-50px, 80px) scale(0.8);
            opacity: 0.3;
        }
        75% {
            transform: translate(60px, 50px) scale(1.1);
            opacity: 0.5;
        }
    }

    @keyframes floatHighlight2 {
        0%, 100% {
            transform: translate(0, 0) scale(1);
            opacity: 0.3;
        }
        33% {
            transform: translate(-100px, 70px) scale(1.3);
            opacity: 0.5;
        }
        66% {
            transform: translate(90px, -80px) scale(0.7);
            opacity: 0.2;
        }
    }
}

/* Ensure content stays above background */
.tiffin .month-menu .heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
}

.tiffin .month-menu .heading img {
    width: 64px;
    height: 64px;
}

.tiffin .month-menu .heading strong {
    font-family: Dynalight, Sans-serif;
    font-size: 20px;
    text-transform: none;
    font-style: italic;
    margin-bottom: 10px;
    color: #7fb741;
}

.tiffin .month-menu .heading h2 {
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 600;
    position: relative;
}

.tiffin .month-menu .heading h2::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 36px;
    background-size: 100% 100%;
    bottom: -30px;
    left: 0;
}

.tiffin .month-menu .tabs {
    display: flex;
    justify-content: center;
    white-space: nowrap;
    gap: 2px;
    padding-left: 0;
}

.tiffin .month-menu .tabs .tab {
    display: flex;
    padding: 10px 12px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 8px 8px 0 0;
    background: #fafafa;
    box-shadow: 0 5px 9px 4px rgba(17, 52, 100, 0.05);
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
    font-family: "Intel Clear", sans-serif;
}

.tiffin .month-menu .tabs .tab.active {
    border-bottom: 2px solid #7fb741;
    background: #fff;
    font-weight: 600;
    transform: scale(1.1);
}

.tiffin .month-menu .tab_container {
    border-top: none;
    clear: both;
    float: left;
    width: 99%;
    background: #fff;
    overflow: auto;
    padding: 0 1px;
    margin: auto;
    scrollbar-width: none;
    overflow: hidden;
}

.tiffin .month-menu .tab_content {
    padding: 0;
}

.tiffin .month-menu .mob-table-card {
    box-shadow: 0 0 7px 2px #f1f1f1;
    background-color: #fff;
    margin-top: 10px;
}

.tiffin .month-menu .table {
    margin-bottom: 0 !important;
}

.tiffin .month-menu .menu-date {
    position: absolute;
    width: 100%;
    text-align: right;
}

.tiffin .month-menu .menu-date span {
    text-transform: uppercase;
    position: absolute;
    background-color: #2a7418;
    color: #fff;
    padding: 3px 8px 3px 8px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 0 0 0 10px;
    top: -20px;
    right: 7px;
}

.tiffin .month-menu .menu-date div {
    color: #fff;
    display: block;
    font-size: 16px;
}

.tiffin .month-menu .mob-table-card td {
    font-size: 13px;
    vertical-align: middle;
    position: relative;
    padding: 20px 10px;
}

.tiffin .month-menu .mob-table-card td .dish {
    display: flex;
    width: calc(100% - 50px);
}

.tiffin .month-menu .mob-table-card th {
    font-size: 16px;
    border-right: 1px solid #dee2e6;
    vertical-align: middle;
}

.tiffin .overview {
    padding: 3rem 1.5rem 0;
}

.tiffin .overview .overview-content #typing-text {
    font-size: 20px;
    color: #ef801a;
    font-weight: 600;
    margin-bottom: 0.8rem;
    min-height: 1.5em; /* Prevent layout shift during typing */
}

.tiffin .overview .overview-content #typing-text.typing-caret::after,
.tiffin .overview .overview-content #typing-text.caret::after {
    content: '|';
    animation: blink-caret 0.75s step-end infinite;
    color: #ef801a;
    margin-left: 2px;
}

.tiffin .overview .overview-content p {
    color: #0a4a28;
}

.tiffin .overview .overview-info img {
    width: 100%;
    height: 100%;
}

.tiffin .enquiry {
    background-color: #f9edde;
}

.tiffin .enquiry .enquiry-container,
.tiffin .enquiry .form,
.tiffin .enquiry .heading,
.tiffin .enquiry .input-list {
    display: flex;
    flex-direction: column;
}

.tiffin .enquiry .heading {
    align-items: center;
    margin-bottom: 1.5rem;
}

.tiffin .enquiry .heading img {
    width: 61px;
    height: 61px;
}

.tiffin .enquiry .heading h2,
.tiffin .enquiry .heading p {
    text-align: center;
}

.tiffin .enquiry .heading p {
    font-weight: 600;
    font-family: Dynalight, Sans-serif;
    color: #7fb741;
    margin-bottom: 0.5rem;
    font-size: 20px;
    font-style: italic;
}

.tiffin .enquiry .heading h2 {
    font-size: 28px;
}

.tiffin .enquiry .enquiry-content {
    border-radius: 20px;
    padding: 20px;
    background-color: #fff;
    position: relative;
}

.tiffin .enquiry .enquiry-content::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-size: 100% 100%;
    animation: rotate 8s linear infinite;
    z-index: 0;
    top: 0;
    right: 0;
}

.tiffin .enquiry .text {
    position: absolute;
    top: 34px;
    right: 38px;
    font-family: Dynalight, Sans-serif;
    color: #fff;
    font-style: italic;
    z-index: 1;
    font-size: 14px;
    width: fit-content;
    display: flex;
    line-height: 1.5;
    flex-direction: column;
}

.tiffin .enquiry .form {
    border: 1px solid #0000001a;
    margin-bottom: 0;
    border-radius: 20px;
    padding: 60px 15px;
}

.tiffin .enquiry .form .input-container {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    border: 1px solid #0000001a;
    border-radius: 24px;
    justify-content: space-between;
    padding: 11px 24px 9px 30px;
}

.tiffin .enquiry .form .input-container:last-child {
    align-items: flex-start;
    margin-bottom: 1rem;
}

.tiffin .enquiry .form .input-container input,
.tiffin .enquiry .form .input-container textarea {
    width: 100%;
    border: none;
    outline: 0;
    padding: 0;
    background-color: transparent;
    font-size: 14px;
    font-weight: 500;
}

.tiffin .enquiry .form .input-container textarea {
    height: 60px;
    resize: none;
    overflow: auto;
}

.tiffin .enquiry .form .input-container ::-webkit-input-placeholder {
    color: gray;
}

.tiffin .enquiry .form .input-container :-ms-input-placeholder {
    color: gray;
}

.tiffin .enquiry .form .input-container ::placeholder {
    color: gray;
}

.tiffin .enquiry .form .input-error {
    border: 1px solid red;
}

.tiffin .enquiry .form .input-error ::-webkit-input-placeholder {
    color: red;
}

.tiffin .enquiry .form .input-error :-ms-input-placeholder {
    color: red;
}

.tiffin .enquiry .form .input-error ::placeholder {
    color: red;
}

.tiffin .enquiry .form .submit {
    width: 100%;
    font-size: 14px;
    padding: 14px 30px;
    border-radius: 30px;
    color: #fff;
    background-color: #fc8019;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
}

.tiffin .app .app-container {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #ffccbc 100%);
    border-radius: 40px;
    box-shadow: 0 8px 10px 0 rgba(28, 28, 28, 0.08);
    border: 5px solid #ffccbc;
    padding: 40px 20px 0;
    z-index: 1;
}

.tiffin .app .circle-wrapper {
    right: -30%;
    top: 30%;
    width: 90%;
    aspect-ratio: 1;
    opacity: 0.1;
    z-index: -1;
}

.tiffin .app .w-80 {
    width: 80%;
    height: 80%;
}

.tiffin .app .w-75 {
    width: 75%;
    height: 75%;
}

.tiffin .app .app-container,
.tiffin .app .app-content {
    display: flex;
    flex-direction: column;
}

.tiffin .app .app-content strong {
    color: #5a5e7d;
}

.tiffin .app .app-content strong {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 500;
}

.tiffin .app .app-content h3 {
    /* color: rgba(89, 99, 120); */
    color: #3b4169;
    font-size: 34px;
    font-weight: 800;
    display: flex;
    text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25);
}

.tiffin .app .app-info img {
    width: 100%;
    height: 100%;
}

/* Start Review */
.tiffin .review h2 {
    font-size: 25px !important;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.tiffin .review .review-container,
.tiffin .review .review-list,
.review .review-item {
    display: flex;
    flex-direction: column;
}

.tiffin .review .review-item {
    align-items: center;
    text-align: center;
    width: 95%;
    margin: 0 auto;
}

.tiffin .review .review-item span {
    display: flex;
    width: 173px;
    height: 173px;
    border: 6px solid;
    box-shadow: 3px 8px 10px 0px rgba(107, 89, 89, 0.25);
    border-radius: 100%;
}

.tiffin .review .review-item span img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}

.tiffin .review .review-item .stars {
    display: flex;
    align-items: center;
}

.tiffin .review .review-item .stars i {
    color: #f0ad4e;
}

.tiffin .review .review-item strong {
    font-size: 14px;

    margin: 1.8rem 0 0.3rem;
}

.tiffin .review .review-item b {
    font-size: 12px;
    color: #8C8C8C;
    font-weight: 500;
}

.tiffin .review .review-item>img {
    width: 110px;
    height: 20px;
}

.tiffin .review .review-item p {
    margin: 1rem 0;
}

.tiffin .review .owl-nav {
    display: flex;
    justify-content: space-between;
    width: 120px;
    align-self: center;
    margin-top: 2rem;
}

.tiffin .review .owl-nav .owl-prev,
.tiffin .review .owl-nav .owl-next {
    display: flex;
    width: 47px;
    height: 47px;
    border: 1px solid #000 !important;
    background-color: white !important;
    border-radius: 50px;
    background-image: url(../images/right-arrow.svg) !important;
    background-size: 25px 21px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    transition: 1s all;
}

.tiffin .review .owl-nav .owl-prev img,
.tiffin .review .owl-nav .owl-next img {
    width: 100%;
    height: 100%;
}

.tiffin .review .owl-nav .owl-prev.active,
.tiffin .review .owl-nav .owl-next.active {

    border: 1px solid transparent;
    filter: invert(1);
}

.tiffin .review .chef2 {
    display: none;
}

.tiffin .review .owl-nav .owl-prev {
    transform: rotate(-180deg);
}

/* End Review */

.tiffin .faq {
    background-color: #f6f4e7;
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
}

.tiffin .faq .after-img,
.tiffin .faq .before-img {
    display: none;
}

.tiffin .faq .faq-item,
.tiffin .faq .faq-list {
    display: flex;
    flex-direction: column;
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
}

.tiffin .faq .container,
.tiffin .faq .row {
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
}

.tiffin .faq .col-12 {
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
}

.tiffin .faq .ques,
.tiffin .faq .ans,
.tiffin .faq .ques h3,
.tiffin .faq .ans p {
    overflow: visible !important;
    max-height: none !important;
}

.tiffin .faq h2 {
    font-size: 20px;
    margin-bottom: 2rem;
    /* color: #2d502d; */
    font-weight: 600;
}

.tiffin .faq .faq-item {
    border-left: 3px solid transparent;
}

.tiffin .faq .faq-item:nth-child(2) .ques {
    border-top: 1px solid #e4e4e4;
}

.tiffin .faq .faq-item.active {
    border-left: 3px solid #2d502d;
}

.tiffin .faq .faq-item.active .ques::before {
    transform: rotate(90deg);
    filter: brightness(0) saturate(100%) invert(24%) sepia(17%) saturate(1289%) hue-rotate(71deg) brightness(98%) contrast(87%);
}

.tiffin .faq .ques {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e4e4e4;
    padding: 1rem 0.5rem;
}

.tiffin .faq .ques h3 {
    font-size: 15px;
    width: calc(100% - 23px);
    margin-bottom: 0;
    /* color: #2d502d; */
    font-weight: 600;
}

.tiffin .faq .ques::before {
    content: "";
    width: 13px;
    height: 13px;
    background-size: 100% 100%;
    margin-top: 2px;
    filter: brightness(0);
    transition: 1s all;
}

.tiffin .faq .ans {
    display: none;
    background-color: #ddeadd;
    border-bottom: 1px solid #e4e4e4;
    padding: 1rem 0.5rem 1rem 2rem;
}

.tiffin .faq .ans p {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 500;
}

/* Start Event */
.event-wrapper {
    position: relative;
    /* background-color:#f3f3f3; */
    background-color: #f6f4e7;
}

.event-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: url(../images/bg-pattern.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .04;
}

.heading-wrapper {
    position: relative;
    text-align: center;
    margin: 0px 0px 42px;
}

.heading-wrapper h4 {
    font-size: 18px;
    position: relative;
    display: inline-block;
    color: #fc8019;
    font-weight: 700;
    padding: 0px 30px;
}

.heading-wrapper h4::before,
.heading-wrapper h4::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 4px;
    top: 0px;
    bottom: 0px;
    border-radius: 10px;
    background: #fc8019;
    margin: auto;
}

.heading-wrapper h4::after {
    right: 0px;
}

.heading-wrapper h4::before {
    left: 0px;
}

.heading-wrapper h2 {
    font-weight: 700;
    font-size: 36px;
    margin: 0px;
}

.filter-menu {
    text-align: center;
    margin-bottom: 30px;
}

.filter-menu button {
    font-weight: 700;
    position: relative;
    color: #fc8019;
    min-width: 150px;
    border: 1px solid #fc8019;
    padding: 12px 15px;
    background: #fff;
    border-radius: 40px;
    margin: 0px 10px 10px;
}

.filter-menu button,
.filter-menu button.active,
.filter-menu button:hover {
    transition: 0.5s;
}

.filter-menu button {
    min-width: 120px;
    font-size: 14px;
    padding: 8px 10px;
}

.filter-menu button.active,
.filter-menu button:hover {
    color: white;
    background: #fc8019;
}

.nav li.nav-item,
.filter-menu button {
    margin: 0px 10px 10px 0px;
}

.tiffin .portfolio-section {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin: 0px 0px 30px;
}

.tiffin .portfolio-section:hover img {
    transform: scale(1.05);
}

.portfolio-section img {
    width: 100%;
    max-height: 350px;
    min-height: 350px;
    object-fit: cover;
    object-position: center center;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
}

.overlay {
    position: absolute;
    width: auto;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    opacity: 0;
    text-align: center;
    background: rgba(252, 128, 25, 58%);
}

.overlay span {
    display: inline-block;
    font-size: 24px;
}

.overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.overlay-text h4 {
    color: white;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 20px;
    margin: 0px;
}

.overlay>span {
    width: 50px;
    height: 50px;
    display: inline-block;
    color: white;
    line-height: 50px;
    text-align: center;
    top: calc(50%);
    position: relative;
    transform: translateY(-50%);
    text-decoration: none;
}

.overlay a span {
    display: inline-block;
    font-size: 24px;
}

.overlay a:hover {
    color: #fc8019;
}

.portfolio-section:hover .overlay {
    opacity: 1;
}

.overlay a,
.overlay a:hover,
.portfolio-section,
.portfolio-section .overlay,
.portfolio-section:hover .overlay {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.overlay .popup-gallery:hover {
    color: white;
}

.slick-prev,
.slick-next {
    background-color: #fff;
    color: #000;
    padding: 10px;
    border-radius: 50%;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: #f1f1f1;
}

#event-gallery .slick-slide img {
    max-width: 100%;
    height: auto;
}

/* Hide non-matching categories */
.mix {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mix.visible {
    display: block;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.portfolio-section img {
    transition: transform 0.3s ease;
}

.portfolio-section img:hover {
    transform: scale(1.05);
}

/* End Event */

/* Start Half Menu */
.tiffin .half-menu .tab-pane {
    /* background-color: #f5f5f5; */
    padding: 40px 20px;
    background-color: #f6f4e7;
}

.tiffin .half-menu .menu-container .catering-chef {
    display: none;
}

.tiffin .half-menu .title-badge {
    width: 200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 0 10px 0;
}

.tiffin .half-menu .title-badge img {
    width: 100%;
    height: 100%;
}

.tiffin .half-menu h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.tiffin .half-menu .menu-tabs .nav-pills .nav-link {
    font-size: 16px;
    background-color: transparent;
    color: black;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tiffin .half-menu .menu-tabs .nav-pills .nav-link.active {
    color: black;
    transform: scale(1);
}

.tiffin .half-menu .menu-tabs .nav-pills .nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    border-bottom: 2px solid #fc8019;
    bottom: -5px;
    transition: 1s all;
}

.tiffin .half-menu .menu-tabs .nav-pills .nav-link.active::before {
    width: 80px;
}

.tiffin .half-menu .menu-tabs .menu_box .menu_img {
    display: flex;
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50px;
    margin-right: 1rem;
}

.tiffin .half-menu .menu-tabs .menu_box {
    margin-top: 2rem;
}

.tiffin .half-menu .menu-tabs .menu_box:first-child {
    margin-top: 0;
}

.tiffin .half-menu .menu-tabs .menu_box .menu_img img {
    object-fit: contain;
    border-radius: 50px;
}

.tiffin .half-menu .menu-tabs .menu_box .menu_text {
    display: flex;
    flex-direction: column;
}

.tiffin .half-menu .menu-tabs .menu_box .menu_text .menu_title {
    display: flex;
    align-items: center;

}

.tiffin .half-menu .menu-tabs .menu_box .menu_text .menu_title h4 {
    font-size: 15px;
    font-weight: 600;

}

.tiffin .half-menu .menu-tabs .menu_box .menu_text .menu_title h5 {
    margin-left: auto;
    font-size: 15px;
    font-weight: 600;
    color: #fc8019;
}

.tiffin .half-menu .menu-tabs .menu_box .menu_text p {
    margin-bottom: 0;
    font-size: 13px;
    margin-top: .3rem;
}

.tiffin .half-menu .tab-pane .image {
    display: flex;
    border-radius: 300px 300px 0 0;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 285px;
    height: 300px;
    margin-top: 2rem;

}

.tiffin .half-menu .tab-pane .image img {
    border-radius: 300px 300px 0 0;
    width: 285px;
    height: 300px;
    object-fit: cover;
}

.tiffin .half-menu .tab-pane .image::before {
    content: '';
    position: absolute;
    width: 95%;
    height: 95%;
    border: 1px solid #fc8019;
    border-radius: 300px 300px 0 0;
    pointer-events: none;
    z-index: 2;
    box-sizing: border-box;
}

.tiffin .half-menu .border-btn {
    display: flex !important;
    font-weight: 700;
    padding: 8px 35px;
    font-size: 16px;
    border: 1px solid #fc8019;
    color: #fc8019;
    border-radius: 0px;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    transition: 1s all;
}

.tiffin .half-menu .border-btn:hover {
    transform: scale(1.1);
    color: #fc8019;
}

/* End  Half Menu */

/* Start About */
.tiffin .about .about-container {
    display: flex;
    flex-direction: column;
}

.tiffin .about .about-container .image-content {
    display: flex;
    flex-direction: column;
    position: relative;
}

.tiffin .about .about-container .about-content .text,
.tiffin .about .about-container .value-content .text {
    color: #ef9e3d;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.tiffin .about .image-content .image {
    display: flex;
    width: 100%;
}

.tiffin .about .image-content .image img {
    width: 100%;
    height: 375px;
    object-fit: cover;
    object-position: center;
    border-radius: 21px;
    display: inline-block;
}

.tiffin .about .section-title {
    font-weight: bold;
    font-size: 22px !important;
    margin: 1rem 0;
}

.tiffin .about .bar-content label {
    font-size: 14px;
    font-weight: 600;
}

.tiffin .about .section-subtitle {
    font-size: 14px;
    font-weight: 600;
    border-left: 3px solid #7fb741;
    padding-left: 1.2rem;
}

.tiffin .about .custom-progress {
    border-radius: 21px;
    height: 21px;
}

.tiffin .about .progress-bar {
    background-color: #ef9e3d !important;
    height: 21px;
}

.vision-icon,
.mission-icon {
    font-size: 30px;
    color: white;
    padding: 15px;
    border-radius: 50%;
}

.tiffin .about .about-container .value-content .vision-icon,
.tiffin .about .about-container .value-content .mission-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 53px;
    height: 53px;
}

.tiffin .about .about-container .value-content .vision-icon {
    background-color: #28a745;
}

.tiffin .about .about-container .value-content .mission-icon {
    background-color: #ffc107;
}

.tiffin .about .about-container .value-content .vision-content h5,
.tiffin .about .about-container .value-content .mission-content h5 {
    font-size: 16px;
    font-weight: 600;
}

/* Card Style */
.tiffin .about .about-container .card-custom {
    border: none;
    position: absolute;
    width: 150px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
    bottom: -5px;
}

.card-custom .card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    border-radius: 14px;
}

.card-custom .card-body .card-title {
    padding: 14px;
    background-color: #7fb741;
    color: white;
    font-size: 16px;
    border-radius: 12px 12px 0 0;
    text-align: center;
}

.card-custom .card-body .card-content {
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-custom .card-body .card-content .stars {
    display: flex;
    align-items: center;
}

.card-custom .card-body .card-content .stars i {
    color: #f0ad4e;
}

.card-custom .card-body .card-content .card-text {
    font-size: 12px;
    font-weight: 500;
}

.card-custom .card-body .card-content .card-text strong {
    font-size: 30px;
    color: #7fb741;
}

.tiffin .about .about-container .value-content {
    display: flex;
    flex-direction: column;
}

.tiffin .about .about-container .value-content .content {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e9e9e9;
}

/* End About */

/* Start Offer */
.tiffin .offer {
    background-color: #f6f4e7;
}

.tiffin .offer .pan,
.tiffin .offer .plate {
    display: none !important;
}

.tiffin .offer .offer-container .offer-zone-header strong {
    font-size: 16px;
    color: #ef9e3d;
    text-transform: uppercase;
}

.tiffin .offer .offer-container .offer-zone-header h2 {
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 1rem;
}

.tiffin .offer .offer-container .dish-card .image {
    width: 140px;
    height: 140px;
    position: absolute;
    top: -43px;
    animation: rotate 40s linear infinite;
}

.tiffin .offer .offer-container .dish-card .image img {
    width: 100%;
    height: 100%;
}

.tiffin .offer .offer-container .dish-card {
    position: relative;
    margin-top: 40px;
}

.tiffin .offer .offer-container .dish-content {
    /* background-color: #dedede; */
    background-color: #e4e1ce;
    padding: 90px 15px 25px;
    border-radius: 20px;
}

.tiffin .offer .offer-container .dish-content h5 {
    margin-top: 1.5rem;
    font-size: 22px;
}

.tiffin .offer .offer-container .dish-card .stars i {
    color: #f0ad4e;
}

.tiffin .offer .offer-container .dish-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #2a7418;
}

.tiffin .offer .offer-container .dish-card .price span {
    opacity: .5;
}

/* End Offer */

/* Start Menu */
.full-menu {
    background-image: url(../images/form-bg.jpg);
    background-size: contain;
    background-position: center;
    position: relative;
    overflow: visible !important;
    /* Prevent scrollbars from affecting layout */
}

/* Prevent scrolling in menu section containers */
.full-menu .tab_pane {
    overflow: visible !important;
    max-height: none !important;
}

.full-menu .tab_pane .container.p-0 {
    overflow: visible !important;
    max-height: none !important;
}

.full-menu .tab_pane .row {
    overflow: visible !important;
}

.full-menu .dish {
    height: 400px;
    max-height: 400px !important;
    overflow: hidden !important;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smooth transition for expanding/collapsing */
    position: relative;
    /* Prevent any scrolling inside the container */
    -webkit-overflow-scrolling: touch;
    /* Ensure no scrollbar appears */
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.full-menu .dish::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

.full-menu .dish.expanded {
    overflow: auto !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    /* Show scrollbar when content overflows */
    scrollbar-width: thin !important;
    -ms-overflow-style: auto !important;
}

.full-menu .dish.expanded::-webkit-scrollbar {
    display: block !important;
    width: 8px !important;
}

.full-menu .dish.expanded::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.full-menu .dish.expanded::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.full-menu .dish.expanded::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.full-menu .btn-gradient {
    display: flex;
    background-image: linear-gradient(135deg, #ef9e3d 0%, #48a84c 100%);
    font-size: 16px;
    color: white;
    border-radius: 30px;
    padding: 12px 24px;
    width: fit-content;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 60
}

.full-menu .section_heading {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.full-menu .section_heading h4 {
    font-size: 18px;
    position: relative;
    display: inline-block;
    color: #fc8019;
    font-weight: 700;
    padding: 0px 30px;
}

.full-menu .section_heading h4::before,
.full-menu .section_heading h4::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 4px;
    top: 0px;
    bottom: 0px;
    border-radius: 10px;
    background: #fc8019;
    margin: auto;
}

.full-menu .section_heading h4::before {
    left: 0px;
}

.full-menu .section_heading h4::after {
    right: 0px;
}

.full-menu .section_heading h2 {
    font-size: 25px;
    font-weight: 600;
    color: #7fb741;
}

.full-menu .head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.full-menu .head::after {
    content: '';
    background-image: url(../images/head-divider.png);
    background-size: 100% auto;
    width: 250px;
    height: 25px;
    background-repeat: no-repeat;
}

.full-menu .menu_tab {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 10px;
    padding: 0px;
}


.full-menu .menu_tab li .menu_btn:hover,
.full-menu .menu_tab li .menu_btn.active {
    background: #2a7418;
    border: 1px solid #2a7418;
    color: white;
    transform: scale(1);
}

.full-menu .menu_tab li {
    margin-top: 10px;
}

.full-menu .menu_tab li .menu_btn {
    background: white;
    border: 1px solid transparent;
    padding: 8px 10px;
    color: black;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #2a7418;
    border-radius: 5px;
    margin-top: 15px;
    transition: 1s all;
}

.full-menu .menu_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.full-menu .menu_img {
    display: flex;
    border-radius: 20px;
    width: 100px;
    height: 100px;
    min-width: 100px;
    overflow: hidden;
    margin-right: 15px;
}

.full-menu .menu_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.full-menu .menu_title h4,
.menu .menu_title h2 {
    margin-bottom: 0;
}

.full-menu .menu_title h4 {
    font-size: 15px;
    font-weight: 600;
}

.full-menu .menu_title h2 {
    font-size: 15px !important;
    font-weight: 600;
    color: #fc8019;
}

.full-menu .menu_text p {
    margin-bottom: 0;
    font-size: 13px;
}

.full-menu .main-course .item {
    display: none;
}

.full-menu .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem !important;
}

.full-menu .owl--dots .owl-dot {
    display: flex;
    width: 10px;
    height: 10px;
    background-color: #f5f5f5;
    border-radius: 50%;
}

.full-menu .owl-theme .owl-dots .owl-dot.active span {
    background: #7fb741;
}

/* .menu .item:first-child{
    margin-right: 1.5rem;
} */
.full-menu .menu_tab {
    margin-bottom: 2rem;
}

/* End Menu */


.tiffin .footer {
    background-color: #54595f;
}

.tiffin .footer h2 {
    font-size: 22px;
    margin-bottom: 1.5rem;
}

.tiffin .footer p {
    color: #fff;
}

.tiffin .footer .footer-item .logo {
    width: auto;
    height: auto;
}

.tiffin .footer .footer-item h3 {
    font-size: 20px;
    margin-bottom: 1.4rem;
}

.tiffin .footer .social-account {
    display: flex;
}

.tiffin .footer .social-account a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(180deg, #60833b 0, #7fb741 100%);
    border-radius: 100%;
    width: 32px;
    height: 32px;
    margin-right: 0.8rem;
    padding: 0.5rem;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.07);
}

.tiffin .footer .social-account a:last-child {
    margin-right: 0;
}

.tiffin .footer .footer-item ul li {
    margin-top: 0.5rem;
}

.tiffin .footer .footer-item ul li:first-child {
    margin-top: 0;
}

.tiffin .footer .footer-item ul li a {
    display: flex;
    text-decoration: none;
}

.tiffin .footer .footer-item ul li a::before {
    content: "";
    min-width: 14px;
    height: 14px;
    margin: 0.3rem 0.7rem 0 0;
    background-size: 100% 100%;
}

.tiffin .footer .contact-info a {
    text-decoration: none;
}

.tiffin .footer .newsletter {
    display: flex;
    flex-direction: column;
}

.tiffin .footer .newsletter .input-container {
    display: flex;
    background-color: #fff;
    padding: 10px;
    position: relative;
    border-radius: 10px;
}

.tiffin .footer .newsletter .input-container input {
    border: none;
    padding: 0;
    margin: 0;
    background-color: transparent;
    outline: 0;
    width: calc(100% - 45px);
    color: #000;
    font-size: 14px;
}

.tiffin .footer .newsletter .input-container .submit {
    position: absolute;
    right: 9px;
    left: auto;
    top: 6px;
    bottom: 3px;
    background-color: #c4ff88;
    border: 1px solid #000;
    color: #000;
    font-size: 15px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tiffin .footer .qr-bg {
    display: flex;
    flex-direction: column;
}

.tiffin .footer .qr-bg p {
    font-size: 14px;
}

.tiffin .footer .qr-bg .barcode-container {
    display: flex;
    width: 200px;
    height: 200px;
    padding: 5px;
    background-color: #fff;
}

.tiffin .footer .qr-bg .barcode-container img {
    border-radius: 50%;
}

.tiffin .footer .service-list {
    display: flex;
    flex-wrap: wrap;
}

.tiffin .footer .service-list h4 {
    font-size: 15px;
    display: flex;
    background-color: #fff;
    border-radius: 5px;
    color: #000;
    margin-right: 1rem;
    padding: 0.5rem;
}

.tiffin .footer .service-list h4:last-child {
    margin-right: 0;
}

.tiffin .footer .detail {
    display: flex;
    flex-direction: column;
}

.tiffin .footer .detail h2 {
    margin-bottom: 0;
}

.tiffin .footer .detail .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 51px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    margin: 2.6rem 0;
    color: #fff;
}

.tiffin .footer .detail .btn .white-arrow {
    width: 12px;
    height: 14px;
    margin-left: 0.5rem;
}

.tiffin .footer .detail p {
    font-size: 18px;
    line-height: 1.4;
}

.tiffin .footer .detail p strong {
    font-size: 22px;
    color: #fff;
    font-weight: 800;
}



@media (min-width: 768px) {
    section {
        padding: 3rem 2rem;
    }





    .tiffin .banner .banner-content {
        width: 65%;
    }

    .tiffin .banner .banner-content h1 {
        font-size: 42px;
    }

    .tiffin .banner .banner-content h2 {
        font-size: 24px;
    }

    .tiffin .banner .logo-container {
        padding: 1rem 2rem;
    }

    .tiffin .banner .logo-container .menu-links {
        width: 50%;
    }

    .tiffin .plan .trial-pack .order {
        margin-top: 0;
        width: 170px;
        height: 170px;
        min-width: 170px;
        border-radius: 100%;
        border: #e7e7e7 solid 5px;
    }

    .tiffin .plan .trial-pack .order h5 {
        font-size: 35px;
    }

    .tiffin .plan .trial-pack .trial-list ul {
        margin-bottom: 0;
    }

    .tiffin .refer {
        background-size: 100% 100%;
    }

    .tiffin .refer .refer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .tiffin .refer .refer-content h2 {
        font-size: 45px;
    }

    .tiffin .food-menu .heading {
        margin-bottom: 2rem;
    }

    .tiffin .food-menu .menu-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .tiffin .food-menu .menu-content ul {
        max-height: 300px;
        overflow-y: scroll;
        padding-right: 1rem;
    }

    .tiffin .food-menu .menu-info {
        margin-top: 0;
    }

    .tiffin .food-menu .card-stack-wrapper {
        height: 225px;
    }

    .tiffin .month-menu .tabs .tab {
        font-size: 18px;
    }

    .tiffin .month-menu .mob-table-card td {
        font-size: 16px;
    }

    .tiffin .month-menu .mob-table-card th {
        font-size: 18px;
    }

    .tiffin .overview {
        padding: 3rem 2rem 0;
    }

    .tiffin .app .app-container {
        padding: 20px 20px 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }


    .tiffin .faq .ques {
        padding: 1rem;
    }

    .tiffin .faq .ans {
        padding: 1rem 1rem 1rem 2.5rem;
    }

    .tiffin .faq .ans p {
        font-size: 14px;
    }

    .tiffin .footer .footer-detail {
        position: relative;
    }

    .tiffin .footer .footer-detail::before {
        content: "";
        width: calc(100% + 63px);
        height: 1px;
        background-color: #fff;
        position: absolute;
        left: -32px;
        top: 0;
    }

    /* Start Half Menu */
    .tiffin .half-menu .menu-tabs .nav-pills .nav-link.active::before {
        width: 100%;
    }

    .tiffin .half-menu .menu-tabs .nav-pills .nav-link {
        margin-right: 1.5rem;
    }

    .tiffin .half-menu .menu-tabs .nav-pills .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 20px;
        width: 20px;
        margin-left: -20px;
        background: url(../images/star-element.png) no-repeat;
        background-size: 100% 100%;
        animation: pulse 3s linear infinite;
    }

    .tiffin .half-menu .menu-tabs .menu_box .menu_img {
        min-width: 100px;
        height: 100px;
        width: 100px;
    }

    .tiffin .half-menu .menu-tabs .menu_box .menu_text .menu_title h4 {
        font-size: 18px;
        margin-right: 1.5rem;
    }

    .tiffin .half-menu .menu-tabs .menu_box .menu_text .menu_title h5 {
        font-size: 18px;
        order: 3;
        margin-left: 1.5rem;
    }

    .tiffin .half-menu .menu-tabs .menu_box .menu_text p {
        font-size: 14px;
    }

    .tiffin .half-menu .menu-tabs .menu_box .menu_text .menu_title::after {
        content: '';
        border-bottom: 1px dashed #000;
        order: 2;
        width: calc(100% - 40%);
        justify-content: flex-end;
        margin: auto;
    }

    .tiffin .half-menu .tab-pane .image img {
        width: 350px;
        height: 350px;
    }

    .tiffin .half-menu .tab-pane .image {
        width: 350px;
        height: 350px;
        margin: 2rem auto 0;
    }

    /* End Half Menu */

    /* Start Menu */
    .full-menu .menu_title h4 {
        font-size: 18px;
    }

    .full-menu .menu_title h2 {
        font-size: 18px !important;
    }

    /* End Menu */
}

@media (min-width: 1024px) {

    li,
    p {
        line-height: 1.8;
    }

    h2 {
        font-size: 28px !important;
    }
    .service-tiffin:last-child{
        margin-top: 0;
    }
    .tiffin .banner-container{
        padding:5rem 0 7rem;
    }

    .tiffin .banner .logo-container {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .tiffin .banner .logo-container .order-number {
        display: flex;
        padding: 10px 30px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        white-space: nowrap;
    }

    .tiffin .banner .drop-menu{
        position: absolute;
    }

    .tiffin .banner .logo-container .order-number svg {
        display: none;
    }

    .tiffin .banner .logo-container .order-number span {
        display: flex;
        font-size: 16px;
    }

    .tiffin .banner .logo-container .menu,
    .tiffin .banner .logo-container .menu-toggle {
        display: none;
    }

    .tiffin .banner .logo-container .menu-links {
        flex-direction: row;
        height: auto;
        position: relative;
        width: auto;
        box-shadow: none;
        background-color: transparent;
        padding: 0;
        transform: translateX(0) !important;
        overflow: initial;
    }
    
    /* Ensure desktop menu-links never have transform applied */
    .tiffin .banner .logo-container .menu-links.d-lg-flex {
        transform: none !important;
        -webkit-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        -o-transform: none !important;
    }

    .tiffin .banner .logo-container .menu-links ul {
        display: flex;
        align-items: center;
        margin-bottom: 0;
    }

    .tiffin .banner .logo-container .menu-links ul .links-li {
        border-bottom: 0;
        padding: 0;
        margin-right: 1rem;

        font-size: 12px;
        color: #fff;
        white-space: nowrap;
        font-weight: 600;
    }


    .tiffin .banner .logo-container .menu-links ul .links-li:after {
        content: "";
        height: 2px;
        width: 0;
        position: absolute;
        right: 0;
        left: 0;
        bottom: -2px;
        margin: auto;
        background-color: #7fb741;
        transition: 1s all;
    }

    .tiffin .banner .logo-container .menu-links ul .links-li:hover:after {
        width: 100%;
    }

    .tiffin .banner .sticky {
        padding: 1rem 2rem;
    }

    .tiffin .banner .banner-content {
        width: 50%;
    }

    .tiffin .plan .trial-pack .order {
        width: 200px;
        height: 200px;
    }

    .tiffin .plan .trial-pack .order span {
        font-size: 22px;
    }

    .tiffin .plan .trial-pack .order h5 {
        font-size: 55px;
    }

    .tiffin .food-menu .card-stack-wrapper {
        height: 272px;
    }

    .tiffin .overview .overview-content h2 {
        width: 80%;
        margin: 0 auto 0.8rem;
    }

    .tiffin .app .app-content strong {
        font-size: 25px;
    }

    .tiffin .app .app-content h3 {
        font-size: 55px;
    }

    .tiffin .enquiry {
        position: relative;
        overflow: hidden;
    }

    .tiffin .enquiry .bg-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;

    }

    .tiffin .refer .refer-content .refer-img {
        height: 163px;
    }

    .tiffin .menu .tab-pane .image {
        margin: 0 0 0 auto;
    }

    .tiffin .menu .tab-pane {
        padding: 40px 25px;
    }

    /* Start About */
    .tiffin .about .image-content .image img {
        height: 450px;
    }

    /* End About */

    /* Start Review */
    .tiffin .review {
        padding-top: 5rem;
        position: relative;
        padding-bottom: 5rem;
    }

    .tiffin .review h2 {
        font-size: 80px !important;
        color: #f5f5f5;
        position: absolute;
        top: 45px;
        left: 0;
        right: 0;
        margin: auto;
    }

    .tiffin .review .review-list {
        width: 65%;
        margin: 0 auto;
    }

    .tiffin .review .review-item {
        margin-top: 6rem;
    }

    .tiffin .review .review-item span {
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .tiffin .review .review-item span::before,
    .tiffin .review .review-item span::after {
        content: '';
        position: absolute;
        z-index: -1;
    }

    .tiffin .review .review-item span::before {
        width: 339px;
        height: 339px;
        background-image: linear-gradient(259deg, #F7E6E6 0%, #FFF 48.39%, #C7E7E9 110.35%);
        background-size: 100% 70%;
        background-repeat: no-repeat;
        border-radius: 100%;
        transform: rotate(-25deg);
    }

    .tiffin .review .review-item span::after {
        width: 353px;
        height: 353px;
        background-image: url(../images/pole-star.png);
        background-size: 100% 100%;
        animation: swing 10s linear infinite;
    }

    .tiffin .review .owl-nav {
        position: absolute;
        width: 100%;
        top: 34%;
        margin-top: 0;
    }

    /* End Review */

    /* Start Menu */
    .full-menu .container {
        max-width: 850px !important;
    }

    .full-menu .menu_tab li .menu_btn {
        font-size: 16px;
    }

    .full-menu .owl-nav {
        display: flex;
        justify-content: space-between;
        width: calc(100% + 135px);
        height: fit-content;
        position: absolute;
        top: 0;
        bottom: 0;
        left: -75px;
        margin: auto;
    }

    .full-menu .owl-nav .owl-prev,
    .menu .owl-nav .owl-next {
        display: flex;
        width: 30px;
        height: 30px;
        border-radius: 100%;
        align-items: center;
        justify-content: center;
        background: white !important;
        border: 1px solid black !important;
    }

    .full-menu .owl-nav .owl-prev.active,
    .full-menu .owl-nav .owl-next.active {
        background: linear-gradient(180deg, #66bb6a 0%, #43a047 100%) !important;
        border: 1px solid transparent !important;
    }

    .full-menu .owl-nav .owl-prev.active img,
    .full-menu .owl-nav .owl-next.active img {
        filter: invert(1);
    }

    .full-menu .owl-nav .owl-prev {
        transform: rotate(180deg);
    }

    .full-menu .owl-nav .owl-prev img,
    .menu .owl-nav .owl-next img {
        width: 15px;
        height: 15px;
    }

    #desserts .owl-prev,
    #desserts .owl-next {
        display: block !important;
        /* Ensure navigation buttons are displayed */
        visibility: visible !important;
        /* Ensure they are not hidden */
    }
}

/* End Menu */


@media (min-width: 1366px) {
    .container {
        width: 1200px;
        margin: 0 auto;
    }

    .tiffin .plan .order-btn .price-new {
        font-size: 22px !important;
    }
    .tiffin .banner-head{
        font-size:48px;
    }

    h2 {
        font-size: 40px !important;
    }

    section {
        padding: 4rem 0;
    }

    .go_top_icon a.show {
        bottom: 125px;
    }

    .tiffin .banner .logo-container {
        padding: 1rem 0 0;
    }
    .tiffin .banner .sticky{
        padding: 1rem 0;
    }

    .tiffin .banner .banner-content h2 {
        font-size: 35px !important;
    }

    .tiffin .banner .logo-container .menu-links ul .links-li {
        font-size: 14px;
    }

    .tiffin .banner .banner-content h1 {
        font-size: 52px;
    }

    .tiffin .plan .pack-container .content h3 {
        font-size: 26px;
    }

    .tiffin .plan .trial-pack {
        width: 85%;
        margin: 3rem auto 0;
    }

    .tiffin .plan .trial-pack .trial-list h3 {
        font-size: 26px;
    }
    .tiffin .plan .pack-container .content .order h5{
        font-size: 20px;
    }

    .tiffin .refer .refer-container {
        width: 88%;
        margin: auto;
        position: relative;
    }

    .tiffin .refer .refer-content .main-heading {
        font-size: 37px;
    }

    .tiffin .refer .refer-content .main-heading .gift {
        margin: 0.6rem 0.5rem 0 0;
    }

    .tiffin .refer .refer-container::after {
        width: 95px;
        height: 117px;
        top: -33px;
        left: -33px;
    }

    .tiffin .refer .refer-content .refer-img {
        height: 172px;
    }

    .tiffin .refer .refer-container::before {
        content: "";
        position: absolute;
        width: 200px;
        height: 350px;
        background-size: 100% 100%;
        right: 16%;
        bottom: 0;
        z-index: -1;
        transition: 2s all;
    }

    .tiffin .refer .refer-container.animate-info::before {
        right: -145px;
    }

    .tiffin .refer .refer-container.position::before {
        z-index: 1;
    }

    .premium-menu-showcase-container::before {
        content: "";
        position: absolute;
        width: 200px;
        height: 350px;
        background-size: 100% 100%;
        left: 16%;
        bottom: -5px;
        z-index: -1;
        transition: left 2s ease, z-index 0s linear 2s;
        background-image: url(../images/menu-chef.png);
    }

    .premium-menu-showcase-container.animate-info::before {
        left: -13.5%;
        transition: left 2s ease;
    }

    .premium-menu-showcase-container.position::before {
        z-index: 1;
        transition: left 2s ease, z-index 0s linear 0.8s;
    }

    .premium-menu-showcase-container::after {
        content: "";
        position: absolute;
        width: 200px;
        height: 350px;
        background-size: 100% 100%;
        right: 16%;
        bottom: -5px;
        z-index: -1;
        transition: right 2s ease, z-index 0s linear 2s;
        background-image: url(../images/menu-chef.png);
        transform: scaleX(-1);
    }

    .premium-menu-showcase-container.animate-info::after {
        right: -13.5%;
        transition: right 2s ease;
    }

    .premium-menu-showcase-container.position::after {
        z-index: 1;
        transition: right 2s ease, z-index 0s linear 0.8s;
    }
    .tiffin .offer-container{
        max-width: 1120px!important;
        margin: 0 auto;;
    }
/*
    .premium-menu-main-card {
        min-height: 490px;
    } */

    /* .day-content-card {
        min-height: 180px;
    } */

    /* ============================================
       Enhanced Desktop Month-Menu Table Styles
       ============================================ */

    /* Table Container with Enhanced Perspective */
    .tiffin .table-container {
        perspective: 1200px;
        display: flex;
        justify-content: center;
        margin-top: 60px;
        position: relative;
        padding: 30px;
    }

    /* Enhanced Table Responsive Wrapper */
    .tiffin .table-container .table-responsive {
        border-radius: 20px;
        overflow: hidden;
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.15),
            0 8px 24px rgba(46, 125, 50, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    .tiffin .table-container .table-responsive::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(46, 125, 50, 0.03) 0%, rgba(102, 187, 106, 0.03) 100%);
        pointer-events: none;
        z-index: 0;
    }

    .tiffin .table-container .table-responsive:hover {
        box-shadow:
            0 28px 80px rgba(0, 0, 0, 0.18),
            0 12px 32px rgba(46, 125, 50, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transform: translateY(-4px);
    }

    /* Enhanced Table with Subtle 3D Effect */
    .tiffin .table-3d {
        transform: rotateY(-5deg) rotateX(1deg);
        border-radius: 20px;
        transform-style: preserve-3d;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: #ffffff;
        border-collapse: separate !important;
        border-spacing: 0;
        overflow: hidden;
        position: relative;
        z-index: 1;
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    }

    /* Enhanced Hover Effect */
    .tiffin .table-3d:hover {
        transform: rotateY(-2deg) rotateX(0.5deg) scale(1.005);
        box-shadow: inset 0 0 0 1px rgba(46, 125, 50, 0.1);
    }

    /* Enhanced Table Header with Animated Gradient */
    .tiffin .table-3d thead {
        background: linear-gradient(135deg, #2e7d32 0%, #388e3c 50%, #4caf50 100%);
        background-size: 200% 200%;
        animation: gradientShift 8s ease infinite;
        position: relative;
        box-shadow:
            0 4px 12px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    @keyframes gradientShift {
        0%, 100% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
    }

    .tiffin .table-3d thead th {
        background: transparent;
        color: #ffffff;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 20px 16px;
        border: none;
        position: relative;
        letter-spacing: 1px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .tiffin .table-3d thead th.days {
        background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
        border-right: 2px solid rgba(255, 255, 255, 0.15);
    }

    .tiffin .table-3d thead th:not(.days) {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .tiffin .table-3d thead th:last-child {
        border-right: none;
    }

    .tiffin .table-3d thead th:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-1px);
    }

    /* Enhanced Table Cells */
    .tiffin .table-3d th,
    .tiffin .table-3d td {
        border: 1px solid rgba(0, 0, 0, 0.08);
        font-size: 15px;
        background: #ffffff;
        transition: all 0.3s ease;
        position: relative;
    }

    .tiffin .table-3d td {
        padding: 18px 65px 18px 20px;
        position: relative;
        font-weight: 500;
        color: #2c3e50;
        line-height: 1.6;
        vertical-align: middle;
        background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    }

    .tiffin .table-3d td::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(to bottom, transparent, #4caf50, transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .tiffin .table-3d tbody tr {
        transition: all 0.3s ease;
        background: #ffffff;
    }

    .tiffin .table-3d tbody tr:hover {
        background: linear-gradient(to bottom, #f1f8f4 0%, #ffffff 100%);
        transform: scale(1.001);
        box-shadow: 0 2px 8px rgba(46, 125, 50, 0.08);
    }

    .tiffin .table-3d tbody tr:hover td {
        background: transparent;
        color: #1a1a1a;
    }

    .tiffin .table-3d tbody tr:hover td::before {
        opacity: 1;
    }

    /* Enhanced Day Column */
    .tiffin .table-3d .dark-bg {
        background: linear-gradient(135deg, #81c784 0%, #66bb6a 50%, #4caf50 100%);
        background-size: 200% 200%;
        animation: gradientShift 10s ease infinite;
        font-weight: 700;
        padding: 18px !important;
        color: #ffffff;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1);
        border-right: 2px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .tiffin .table-3d tbody tr:hover .dark-bg {
        background: linear-gradient(135deg, #66bb6a 0%, #4caf50 50%, #388e3c 100%);
        background-size: 200% 200%;
        transform: scale(1.02);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 0 rgba(0, 0, 0, 0.15),
            0 2px 8px rgba(46, 125, 50, 0.2);
    }

    /* Enhanced Date Box */
    .tiffin .table-3d .date {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        position: absolute;
        right: 0;
        top: 0;
        padding: 6px 10px;
        font-size: 11px;
        font-weight: 700;
        background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
        color: #ffffff;
        text-align: center;
        box-shadow:
            0 4px 12px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            inset 0 -1px 0 rgba(0, 0, 0, 0.2);
        border-radius: 0 0 0 12px;
        min-width: 55px;
        transition: all 0.3s ease;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        z-index: 2;
    }

    .tiffin .table-3d .date div {
        font-size: 18px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 2px;
        letter-spacing: 0;
    }

    .tiffin .table-3d .date span {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.8px;
        opacity: 0.95;
    }

    .tiffin .table-3d tbody tr:hover .date {
        background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
        transform: scale(1.05);
        box-shadow:
            0 6px 16px rgba(0, 0, 0, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.25);
    }

    .tiffin .month-menu .heading h2::before {
        height: 44px;
    }

    /* Enhanced Meal Icon */
    .tiffin .table-3d .meal-icon {
        color: #4caf50;
        margin-right: 10px;
        font-size: 17px;
        transition: all 0.3s ease;
        filter: drop-shadow(0 1px 2px rgba(76, 175, 80, 0.3));
        display: inline-block;
    }

    .tiffin .table-3d tbody tr:hover .meal-icon {
        color: #2e7d32;
        transform: scale(1.1) rotate(5deg);
        filter: drop-shadow(0 2px 4px rgba(46, 125, 50, 0.4));
    }

    /* Enhanced Row Borders and Corners */
    .tiffin .table-3d tbody tr:last-child td {
        border-bottom: none !important;
    }

    .tiffin .table-3d tbody tr:last-child td:first-child {
        border-bottom-left-radius: 20px;
    }

    .tiffin .table-3d tbody tr:last-child td:last-child {
        border-bottom-right-radius: 20px;
    }

    .tiffin .table-3d thead th:first-child {
        border-top-left-radius: 20px;
    }

    .tiffin .table-3d thead th:last-child {
        border-top-right-radius: 20px;
    }

    /* Enhanced Responsive Design */
    @media (max-width: 1200px) {
        .tiffin .table-3d {
            transform: none;
        }

        .tiffin .table-3d:hover {
            transform: scale(1.002);
        }
    }


    .tiffin .overview {
        padding: 4rem 0 0;
    }

    .tiffin .app .app-content strong {
        font-size: 35px;
        line-height: 1.2;
    }

    .tiffin .app .app-content h3 {
        font-size: 65px;
    }

    .tiffin .faq .ques h3 {
        font-size: 18px;
    }

    .tiffin .faq .ans p {
        font-size: 14px;
    }

    .tiffin .footer {
        position: relative;
        z-index: 1;

    }

    .tiffin .footer::after {
        content: "";
        width: calc(50% - 305px);
        height: 100%;
        background-color: #fff;
        opacity: 0.1;
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }

    .tiffin .footer .detail {
        align-items: center;
        text-align: center;
    }

    .tiffin .footer .detail .btn {
        width: 198px;
        height: 198px;
        border-radius: 100%;
    }

    .tiffin .footer .footer-detail h2 {
        font-size: 24px !important;
    }

    .tiffin .footer .footer-detail::before {
        width: calc(100% + 133px);
        left: -113px;
    }

    /* Start Half Menu */
    .tiffin .half-menu .tab-pane {
        padding: 40px 60px;
    }

    .tiffin .half-menu .tab-pane .image {
        margin: 0 0 0 auto;
    }

    /* End Half Menu */

    /* Start About */
    .tiffin .about .section-title {
        font-size: 24px !important;
    }

    /* End About */

    /* Start Review */
    .tiffin .review h2 {
        font-size: 100px !important;
    }

    /* End Review */


    /* Start Menu */
    .full-menu .container {
        max-width: 1200px !important;
    }

    /* End Menu */

}

@media (min-width: 1500px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1400px !important;
        width: 1400px !important;
    }
    .banner .banner-list{
        width: 80%;
        margin:3rem auto 0;
    }


    .tiffin .banner .logo-container .manra-logo {
        max-width: 200px;
    }

    .tiffin .banner .logo-container .order-number {
        font-size: 17px;
    }

    .tiffin .banner .banner-content h1 {
        font-size: 65px;
    }

    .tiffin .banner .banner-content h2 {
        font-size: 42px !important;
    }

    .tiffin .plan {
        position: relative;
        z-index: 1;
    }

    .tiffin .plan .after-img,
    .tiffin .plan .before-img {
        display: flex;
        position: absolute;
        z-index: -1;
        width: 340px;
    }

    .tiffin .plan .after-img img,
    .tiffin .plan .before-img img {
        max-width: 100%;
        height: auto;
    }

    .tiffin .plan .before-img {
        bottom: -40px;
    }

    .tiffin .plan .after-img {
        right: 0;
        bottom: 0;
    }

    .tiffin .plan .trial-pack {
        width: 70%;
    }

    .tiffin .refer .refer-content .refer-img {
        height: 255px;
    }

    .tiffin .food-menu .card-stack-wrapper {
        height: 310px;
    }

    .tiffin .app {
        background-position: center;
    }

    .tiffin .app .app-container,
    .tiffin .app .app-wrapper {
        width: 92%;
        margin: auto;
    }

    .tiffin .faq {
        position: relative;
        z-index: 1;
        overflow: visible !important;
        max-height: none !important;
        height: auto !important;
    }

    .tiffin .faq .after-img,
    .tiffin .faq .before-img {
        display: flex;
        position: absolute;
        bottom: 0;
        opacity: 0.1;
        z-index: -1;
        width: 400px;
    }


    .tiffin .faq .after-img img,
    .tiffin .faq .before-img img {
        max-width: 100%;
        height: auto;
    }

    .tiffin .faq .before-img {
        bottom: -60px;
    }

    .tiffin .faq .after-img {
        right: 0;
    }

    .tiffin .faq .faq-list {
        width: 50%;
        margin: auto;
        overflow: visible !important;
        max-height: none !important;
        height: auto !important;
    }

    .tiffin .faq .container,
    .tiffin .faq .row,
    .tiffin .faq .col-12 {
        overflow: visible !important;
        max-height: none !important;
        height: auto !important;
    }

    .tiffin .footer .footer-detail::before {
        width: calc(100% + 88px);
        left: -113px;
    }

    .tiffin .banner .logo-container .menu-links ul .links-li:nth-child(3) {
        display: flex;
    }
}

@media (min-width: 1600px) {


    .tiffin .plan .after-img,
    .tiffin .plan .before-img {
        width: 420px;
    }

    .tiffin .refer .images {
        display: flex;
        position: absolute;
        width: 200px;
        height: 300px;
        left: -20%;
    }

    .tiffin .refer .images .bucket {
        width: 100%;
        height: 100%;
        transform: rotate(327deg);
    }

    .tiffin .refer .refer-content .refer-img {
        height: 260px;
    }

    .tiffin .app .app-wrapper {
        position: relative;
        z-index: 1;
    }

    .tiffin .app .app-wrapper::before {
        content: "";
        position: absolute;
        width: 155px;
        height: 400px;
        background-size: 100% 100%;
        left: 16%;
        bottom: 0;
        z-index: -1;
        opacity: 0;
        transition: 2s all;
    }

    .tiffin .app .app-wrapper.animate-info::before {
        left: -104px;
        opacity: 1;
    }

    /* Start About */
    .tiffin .about .section-title {
        font-size: 28px !important;
    }

    .tiffin .about .image-content .image img {
        height: 600px;
    }

    .tiffin .about .section-title {
        font-size: 32px !important;
    }

    .tiffin .about {
        position: relative;
        z-index: 1;
    }

    .tiffin .about::before {
        content: " ";
        background-image: url(../images/about-shapes.png);
        background-size: 100% 100%;
        width: 90%;
        height: 85%;
        animation: 10s circlular linear infinite;
        position: absolute;
        z-index: -1;
        left: 0;
        right: 0;
        margin: auto;
        top: 0;
        bottom: 0;
    }

    /* End About */

    /* Start Half Menu */
    .tiffin .half-menu {
        background: url(../images/catering-veg-right.webp) no-repeat scroll right top;
        position: relative;
    }

    .tiffin .half-menu::before {
        content: '';
        position: absolute;
        width: 284px;
        height: 263px;
        background-image: url(../images/catering-veg-left.webp);
        transform: rotate(90deg);
        top: 0px;
        left: -11px;
    }

    .tiffin .half-menu::after {
        content: " ";
        background-image: url(../images/about-shapes.png);
        background-size: contain;
        width: 90%;
        height: 74%;
        animation: 10s circlular linear infinite;
        position: absolute;
        z-index: -1;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 0;
    }

    .tiffin .half-menu .menu-container {
        position: relative;
    }

    /* End Half Menu */

    /* Start Offer */
    .tiffin .offer .offer-container .dish-card .image {
        width: 190px;
        height: 190px;
    }

    .tiffin .offer .offer-container .dish-content h5 {
        margin-top: 5rem;
    }

    .tiffin .offer {
     position: relative;
    }

    .tiffin .offer::before {
        content: " ";
        background-image: url(../images/offer_shapes.webp);
        width: 90%;
        background-size: contain;
        background-position: center;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        margin: auto;
        right: 0;
        bottom: 0;
        background-repeat: no-repeat;
        animation: 10s linear 0s infinite normal none running circlular;
    }
    /* End Offer */

    /* Start Review */
    .tiffin .review {
        position: relative;
        z-index: 1;
    }

    .tiffin .review h2 {
        font-size: 120px !important;
    }


    .tiffin .review .plates {
        display: flex;
        position: absolute;
        width: 600px;
        height: auto;
        bottom: 0;
        left: 0;
        z-index: -1;
        opacity: .1;
    }

    .tiffin .review .plates img {
        width: 100%;
        height: auto;
    }


    .tiffin .review .chef2 {
        display: flex;
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        bottom: 0;
        right: 0;
    }

    .tiffin .review .chef2 img {
        width: 100%;
        height: 100%;
    }
    /* End Review */

    .tiffin .faq .after-img,
    .tiffin .faq .before-img {
        width: 450px;
    }

    /*  Start Menu */
    .tiffin .full-menu {
        position: relative;
    }

    .tiffin .full-menu::after,
    .tiffin .full-menu::before {
        content: '';
        position: absolute;
        height: 263px;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .tiffin .full-menu::after {
        background-image: url(../images/catering-veg-left.webp);
        left: -11px;
           width: 284px;
        top: 11px;
        transform: rotate(90deg);
    }

    .tiffin .full-menu::before {
        background-image: url(../images/catering-veg-right.webp);
           right:0;
           width: 229px;
        top: 0;
    }
    /* End Menu */

    .tiffin .footer .footer-detail::before {
        width: calc(100% + 272px);
        left: -317px;
    }
}

@media screen and (min-width: 1800px) and (max-width: 1920px) {
    .tiffin .plan .trial-pack {
        width: 85% !important;
    }

    .tiffin .plan .trial-pack .trial-list h3 {
        font-size: 45px;
    }

    .tiffin .plan .trial-pack .trial-list strong {
        font-size: 20px;
    }

    .tiffin .plan .trial-pack .trial-list ul li {
        font-size: 16px;
    }

    .tiffin .plan .trial-pack .order {
        width: 282px;
        height: 282px;
    }

    .tiffin .plan .trial-pack .order span {
        font-size: 32px;
    }

    .tiffin .plan .trial-pack .order h5 {
        font-size: 100px;
        line-height: 1;
    }


    /* Start Event */
    .event-wrapper .container {
        position: relative;
    }

    .event-wrapper .container::before {
        content: '';
        position: absolute;
        background-image: url(../images/spices.png);
        background-size: 100% 100%;
        width: 239px;
        height: 149px;
        animation: float-bob-y 3s linear infinite;
    }
    /* End Event */

    /* Start About */
    .tiffin .about .section-title {
        font-size: 34px !important;
    }

    /* End About */


    /* Start Half Menu */
    .tiffin .half-menu .menu-container .catering-chef {
        display: flex;
        position: absolute;
        width: 450px;
        height: 292px;
        right: -5px;
        top: 52px;
        transition: 1s all;
        z-index: 1;
    }

    /* End Half Menu */

    /* Start Offer  */
    .tiffin .offer {
        position: relative;

    }

    .tiffin .offer .container {
        max-width: 1150px;
    }

    .tiffin .offer .pan {
        display: flex !important;
        position: absolute;
        fill: #A44027B3 !important;
        border-color: #A44027B3 !important;
        width: 300px;
        height: auto;
        top: 110px;
    }

    .tiffin .offer .plate {
        display: flex !important;
        position: absolute;
        fill: #A44027B3 !important;
        border-color: #A44027B3 !important;
        width: 300px;
        height: auto;
        top: 110px;
        right: 0;
    }
    /* End Offer */

      /* Start Menu */
      .tiffin .full-menu {
        position: relative;
        overflow: visible !important;
    }
      .tiffin .full-menu >.container {
        position: relative;
        overflow: visible !important;
        /* Prevent scrollbar from affecting layout */
        padding-right: 0 !important;
    }
    .tiffin .full-menu .container{
        max-width:1000px !important;
        overflow: visible !important;
    }
    
     .tiffin .full-menu >.container::before{
        content: '';
        position: absolute;
        width: 400px;
        height: 440px;
        background-image: url(../images/chef-menu.png);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: center;
        left: -40%;
        bottom: -64px;
        z-index: 0;
        pointer-events: none;
        /* Use transform to prevent layout shift from scrollbar */
        transform: translateZ(0);
        /* Ensure positioning is not affected by scrollbar */
        will-change: transform;
     }
      .tiffin .full-menu >.container::after{
        content: '';
        position: absolute;
        width: 345px;
        height: 450px;
        background-image: url(../images/veg-chef.png);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: center;
        right: -40%;
        bottom: -80px;
        z-index: 0;
        pointer-events: none;
        /* Use transform to prevent layout shift from scrollbar */
        transform: translateZ(0);
        /* Ensure positioning is not affected by scrollbar */
        will-change: transform;
     }
     .tiffin .full-menu .tab_pane .head{
        position: relative;
     }
     .tiffin .full-menu .tab_pane .head::before{
        content: '';
        position: absolute;
        width: 217px;
        height:238px;
        background-image: url(../images/sm-tomatto.png);
        background-size: contain;
        background-repeat: no-repeat;
        right: 0;
        top: -110%;
        animation: shake 13s linear infinite;
     }
       .tiffin .full-menu .tab_pane:last-child .head::before{
        background-image: url(../images/dessert-sm.png);
       }
     /* End Menu */
}

*,
:before,
:after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

*,
:before,
:after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb
}

:before,
:after {
    --tw-content: ""
}

html,
:host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0;
    line-height: inherit
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
}

abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit
}

a {
    color: inherit;
    text-decoration: inherit
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp,
pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0
}

button,
select {
    text-transform: none
}

button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}

progress {
    vertical-align: baseline
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
    margin: 0
}

fieldset {
    margin: 0;
    padding: 0
}

legend {
    padding: 0
}

ol,
ul,
menu {
    list-style: none;
    margin: 0;
    padding: 0
}

dialog {
    padding: 0
}

textarea {
    resize: vertical
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
    color: #9ca3af
}

input::placeholder,
textarea::placeholder {
    opacity: 1;
    color: #9ca3af
}

button,
[role=button] {
    cursor: pointer
}

:disabled {
    cursor: default
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    vertical-align: middle
}

img,
video {
    max-width: 100%;
    height: auto
}

[hidden]:where(:not([hidden=until-found])) {
    display: none
}

.fixed {
    position: fixed
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.sticky {
    position: sticky
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.-bottom-2 {
    bottom: -.5rem
}

.-bottom-8 {
    bottom: -2rem
}

.-left-8 {
    left: -2rem
}

.-right-10 {
    right: -2.5rem
}

.-right-2 {
    right:0;
}

.-right-4 {
    right: -1rem
}

.-right-8 {
    right: -2rem
}

.-top-2 {
    top: -.5rem
}

.-top-4 {
    top: -1rem
}

.-top-8 {
    top: -2rem
}

.bottom-0 {
    bottom: 0
}

.bottom-20 {
    bottom: 5rem
}

.bottom-4 {
    bottom: 1rem
}

.bottom-40 {
    bottom: 10rem
}

.bottom-6 {
    bottom: 1.5rem
}

.left-0 {
    left: 0
}

.left-1\/2 {
    left: 50%
}

.left-1\/4 {
    left: 25%
}

.left-10 {
    left: 2.5rem
}

.left-20 {
    left: 5rem
}

.left-4 {
    left: 1rem
}

.left-6 {
    left: 1.5rem
}

.right-0 {
    right: 0
}

.right-1\/3 {
    right: 33.333333%
}

.right-20 {
    right: 5rem
}

.right-4 {
    right: 1rem
}

.right-6 {
    right: 1.5rem
}

.top-0 {
    top: 0
}

.top-1\/2 {
    top: 50%
}

.top-10 {
    top: 2.5rem
}

.top-12 {
    top: 3rem
}

.top-20 {
    top: 5rem
}

.top-4 {
    top: 1rem
}

.top-40 {
    top: 10rem
}

.top-6 {
    top: 1.5rem
}

.z-10 {
    z-index: 10
}

.z-20 {
    z-index: 20
}

.z-50 {
    z-index: 50
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.mb-1 {
    margin-bottom: .25rem
}

.mb-10 {
    margin-bottom: 2.5rem
}

.mb-12 {
    margin-bottom: 3rem
}

.mb-16 {
    margin-bottom: 4rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-3 {
    margin-bottom: .75rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mb-8 {
    margin-bottom: 2rem
}

.ml-2 {
    margin-left: .5rem
}

.ml-3 {
    margin-left: .75rem
}

.ml-4 {
    margin-left: 1rem
}

.mr-1 {
    margin-right: .25rem
}

.mr-2 {
    margin-right: .5rem
}

.mr-3 {
    margin-right: .75rem
}

.mr-4 {
    margin-right: 1rem
}

.mt-0\.5 {
    margin-top: .125rem
}

.mt-1 {
    margin-top: .25rem
}

.mt-10 {
    margin-top: 2.5rem
}

.mt-12 {
    margin-top: 3rem
}

.mt-16 {
    margin-top: 4rem
}

.mt-4 {
    margin-top: 1rem
}

.mt-6 {
    margin-top: 1.5rem
}

.mt-8 {
    margin-top: 2rem
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.flex {
    display: flex
}

.inline-flex {
    display: inline-flex
}

.table {
    display: table
}

.grid {
    display: grid
}

.hidden {
    display: none
}

.h-1 {
    height: .25rem
}

.h-10 {
    height: 2.5rem
}

.h-12 {
    height: 3rem
}

.h-14 {
    height: 3.5rem
}

.h-16 {
    height: 4rem
}

.h-2 {
    height: .5rem
}

.h-20 {
    height: 5rem
}

.h-24 {
    height: 6rem
}

.h-3 {
    height: .75rem
}

.h-32 {
    height: 8rem
}

.h-4 {
    height: 1rem
}

.h-40 {
    height: 10rem
}

.h-5 {
    height: 1.25rem
}

.h-56 {
    height: 14rem
}

.h-6 {
    height: 1.5rem
}

.h-64 {
    height: 16rem
}

.h-7 {
    height: 1.75rem
}

.h-8 {
    height: 2rem
}

.h-96 {
    height: 24rem
}

.h-\[500px\] {
    height: 500px
}

.h-full {
    height: 100%
}

.min-h-screen {
    min-height: 100vh
}

.w-1 {
    width: .25rem
}

.w-10 {
    width: 2.5rem
}

.w-12 {
    width: 3rem
}

.w-14 {
    width: 3.5rem
}

.w-16 {
    width: 4rem
}

.w-2 {
    width: .5rem
}

.w-20 {
    width: 5rem
}

.w-24 {
    width: 6rem
}

.w-3 {
    width: .75rem
}

.w-32 {
    width: 8rem
}

.w-4 {
    width: 1rem
}

.w-40 {
    width: 10rem
}

.w-5 {
    width: 1.25rem
}

.w-6 {
    width: 1.5rem
}

.w-7 {
    width: 1.75rem
}

.w-8 {
    width: 2rem
}

.w-full {
    width: 100%
}

.max-w-2xl {
    max-width: 42rem
}

.max-w-3xl {
    max-width: 48rem
}

.max-w-4xl {
    max-width: 56rem
}

.max-w-5xl {
    max-width: 64rem
}

.max-w-6xl {
    max-width: 72rem
}

.max-w-7xl {
    max-width: 80rem
}

.max-w-md {
    max-width: 28rem
}

.flex-1 {
    flex: 1 1 0%
}

.flex-shrink-0 {
    flex-shrink: 0
}

.grow {
    flex-grow: 1
}

.-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.scale-105 {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.scale-110 {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.scale-125 {
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

@keyframes bounce {

    0%,
    to {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(.8, 0, 1, 1)
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, .2, 1)
    }
}

.animate-bounce {
    animation: bounce 1s infinite
}

@keyframes ping {

    75%,
    to {
        transform: scale(2);
        opacity: 0
    }
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite
}

.cursor-pointer {
    cursor: pointer
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.flex-col {
    flex-direction: column
}

.flex-wrap {
    flex-wrap: wrap
}

.items-start {
    align-items: flex-start
}

.items-center {
    align-items: center
}

.items-baseline {
    align-items: baseline
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.gap-0 {
    gap: 0px
}

.gap-12 {
    gap: 3rem
}

.gap-16 {
    gap: 4rem
}

.gap-4 {
    gap: 1rem
}

.gap-6 {
    gap: 1.5rem
}

.gap-8 {
    gap: 2rem
}

.space-x-1>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(.25rem * var(--tw-space-x-reverse));
    margin-left: calc(.25rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-x-2>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(.5rem * var(--tw-space-x-reverse));
    margin-left: calc(.5rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-x-3>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(.75rem * var(--tw-space-x-reverse));
    margin-left: calc(.75rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-x-4>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-x-6>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-x-8>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-y-1>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.25rem * var(--tw-space-y-reverse))
}

.space-y-12>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(3rem * var(--tw-space-y-reverse))
}

.space-y-2>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.5rem * var(--tw-space-y-reverse))
}

.space-y-3>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.75rem * var(--tw-space-y-reverse))
}

.space-y-4>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse))
}

.space-y-6>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse))
}

.space-y-8>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2rem * var(--tw-space-y-reverse))
}

.overflow-hidden {
    overflow: hidden
}

.overflow-x-auto {
    overflow-x: auto
}

.rounded-2xl {
    border-radius: 1rem
}

.rounded-3xl {
    border-radius: 1.5rem
}

.rounded-full {
    border-radius: 9999px
}

.rounded-lg {
    border-radius: .5rem
}

.rounded-xl {
    border-radius: .75rem
}

.border {
    border-width: 1px
}

.border-2 {
    border-width: 2px
}

.border-4 {
    border-width: 4px
}

.border-b {
    border-bottom-width: 1px
}

.border-t {
    border-top-width: 1px
}

.border-gray-100 {
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1))
}

.border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1))
}

.border-gray-800 {
    --tw-border-opacity: 1;
    border-color: rgb(31 41 55 / var(--tw-border-opacity, 1))
}

.border-green-200 {
    --tw-border-opacity: 1;
    border-color: rgb(187 247 208 / var(--tw-border-opacity, 1))
}

.border-orange-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 215 170 / var(--tw-border-opacity, 1))
}

.border-orange-500 {
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22 / var(--tw-border-opacity, 1))
}

.border-orange-600 {
    --tw-border-opacity: 1;
    border-color: rgb(234 88 12 / var(--tw-border-opacity, 1))
}

.border-purple-200 {
    --tw-border-opacity: 1;
    border-color: rgb(233 213 255 / var(--tw-border-opacity, 1))
}

.border-white {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1))
}

.border-white\/20 {
    border-color: #fff3
}

.border-white\/30 {
    border-color: #ffffff4d
}

.border-white\/50 {
    border-color: #ffffff80
}

.bg-amber-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1))
}

.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1))
}

.bg-black\/10 {
    background-color: #0000001a
}

.bg-blue-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1))
}

.bg-blue-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1))
}

.bg-cyan-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(236 254 255 / var(--tw-bg-opacity, 1))
}

.bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1))
}

.bg-gray-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1))
}

.bg-gray-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1))
}

.bg-gray-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1))
}

.bg-gray-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1))
}

.bg-green-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(187 247 208 / var(--tw-bg-opacity, 1))
}

.bg-green-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1))
}

.bg-green-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1))
}

.bg-green-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1))
}

.bg-orange-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 215 170 / var(--tw-bg-opacity, 1))
}

.bg-orange-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1))
}

.bg-orange-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1))
}

.bg-orange-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1))
}

.bg-purple-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1))
}

.bg-red-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1))
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}

.bg-white\/10 {
    background-color: #ffffff1a
}

.bg-white\/20 {
    background-color: #fff3
}

.bg-white\/80 {
    background-color: #fffc
}

.bg-white\/90 {
    background-color: #ffffffe6
}

.bg-yellow-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 240 138 / var(--tw-bg-opacity, 1))
}

.bg-yellow-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1))
}

.bg-yellow-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1))
}

.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops))
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops))
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops))
}

.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops))
}

.from-amber-50 {
    --tw-gradient-from: #fffbeb var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(255 251 235 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-amber-500 {
    --tw-gradient-from: #f59e0b var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(245 158 11 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-black\/20 {
    --tw-gradient-from: rgb(0 0 0 / .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-black\/30 {
    --tw-gradient-from: rgb(0 0 0 / .3) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-black\/60 {
    --tw-gradient-from: rgb(0 0 0 / .6) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-100 {
    --tw-gradient-from: #dbeafe var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(219 234 254 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-200 {
    --tw-gradient-from: #bfdbfe var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(191 219 254 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-blue-500 {
    --tw-gradient-from: #3b82f6 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-cyan-500 {
    --tw-gradient-from: #06b6d4 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-emerald-50 {
    --tw-gradient-from: #ecfdf5 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(236 253 245 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-gray-100 {
    --tw-gradient-from: #f3f4f6 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(243 244 246 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-gray-400 {
    --tw-gradient-from: #9ca3af var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(156 163 175 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-gray-50 {
    --tw-gradient-from: #f9fafb var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(249 250 251 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-gray-900 {
    --tw-gradient-from: #111827 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(17 24 39 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-200 {
    --tw-gradient-from: #bbf7d0 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(187 247 208 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-50 {
    --tw-gradient-from: #f0fdf4 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(240 253 244 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-500 {
    --tw-gradient-from: #22c55e var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-green-600 {
    --tw-gradient-from: #16a34a var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(22 163 74 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-indigo-50 {
    --tw-gradient-from: #eef2ff var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(238 242 255 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-100 {
    --tw-gradient-from: #ffedd5 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(255 237 213 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-200 {
    --tw-gradient-from: #fed7aa var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(254 215 170 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-300 {
    --tw-gradient-from: #fdba74 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(253 186 116 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-400 {
    --tw-gradient-from: #fb923c var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(251 146 60 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-50 {
    --tw-gradient-from: #fff7ed var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(255 247 237 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-500 {
    --tw-gradient-from: #f97316 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(249 115 22 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-600 {
    --tw-gradient-from: #ea580c var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(234 88 12 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-orange-600\/20 {
    --tw-gradient-from: rgb(234 88 12 / .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(234 88 12 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-purple-400 {
    --tw-gradient-from: #c084fc var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-purple-50 {
    --tw-gradient-from: #faf5ff var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(250 245 255 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-purple-500 {
    --tw-gradient-from: #a855f7 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-purple-600 {
    --tw-gradient-from: #9333ea var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-red-500 {
    --tw-gradient-from: #ef4444 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(239 68 68 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-50 {
    --tw-gradient-from: #f8fafc var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(248 250 252 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-500 {
    --tw-gradient-from: #64748b var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(100 116 139 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-slate-600 {
    --tw-gradient-from: #475569 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(71 85 105 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-white {
    --tw-gradient-from: #fff var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-white\/10 {
    --tw-gradient-from: rgb(255 255 255 / .1) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-white\/20 {
    --tw-gradient-from: rgb(255 255 255 / .2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-200 {
    --tw-gradient-from: #fef08a var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(254 240 138 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-50 {
    --tw-gradient-from: #fefce8 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(254 252 232 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-500 {
    --tw-gradient-from: #eab308 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(234 179 8 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-yellow-600 {
    --tw-gradient-from: #ca8a04 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(202 138 4 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.via-blue-50 {
    --tw-gradient-to: rgb(239 246 255 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #eff6ff var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.via-blue-600 {
    --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #2563eb var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.via-emerald-600 {
    --tw-gradient-to: rgb(5 150 105 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #059669 var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.via-gray-50 {
    --tw-gradient-to: rgb(249 250 251 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #f9fafb var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.via-gray-800 {
    --tw-gradient-to: rgb(31 41 55 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #1f2937 var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.via-transparent {
    --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.via-white {
    --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #fff var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.via-yellow-50 {
    --tw-gradient-to: rgb(254 252 232 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #fefce8 var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.via-yellow-600 {
    --tw-gradient-to: rgb(202 138 4 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), #ca8a04 var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.to-blue-400 {
    --tw-gradient-to: #60a5fa var(--tw-gradient-to-position)
}

.to-blue-50 {
    --tw-gradient-to: #eff6ff var(--tw-gradient-to-position)
}

.to-blue-600 {
    --tw-gradient-to: #2563eb var(--tw-gradient-to-position)
}

.to-cyan-200 {
    --tw-gradient-to: #a5f3fc var(--tw-gradient-to-position)
}

.to-cyan-50 {
    --tw-gradient-to: #ecfeff var(--tw-gradient-to-position)
}

.to-cyan-600 {
    --tw-gradient-to: #0891b2 var(--tw-gradient-to-position)
}

.to-emerald-200 {
    --tw-gradient-to: #a7f3d0 var(--tw-gradient-to-position)
}

.to-emerald-50 {
    --tw-gradient-to: #ecfdf5 var(--tw-gradient-to-position)
}

.to-emerald-500 {
    --tw-gradient-to: #10b981 var(--tw-gradient-to-position)
}

.to-emerald-600 {
    --tw-gradient-to: #059669 var(--tw-gradient-to-position)
}

.to-emerald-700 {
    --tw-gradient-to: #047857 var(--tw-gradient-to-position)
}

.to-gray-100 {
    --tw-gradient-to: #f3f4f6 var(--tw-gradient-to-position)
}

.to-gray-200 {
    --tw-gradient-to: #e5e7eb var(--tw-gradient-to-position)
}

.to-gray-50 {
    --tw-gradient-to: #f9fafb var(--tw-gradient-to-position)
}

.to-gray-500 {
    --tw-gradient-to: #6b7280 var(--tw-gradient-to-position)
}

.to-gray-600 {
    --tw-gradient-to: #4b5563 var(--tw-gradient-to-position)
}

.to-gray-700 {
    --tw-gradient-to: #374151 var(--tw-gradient-to-position)
}

.to-gray-800 {
    --tw-gradient-to: #1f2937 var(--tw-gradient-to-position)
}

.to-gray-900 {
    --tw-gradient-to: #111827 var(--tw-gradient-to-position)
}

.to-green-100 {
    --tw-gradient-to: #dcfce7 var(--tw-gradient-to-position)
}

.to-green-50 {
    --tw-gradient-to: #f0fdf4 var(--tw-gradient-to-position)
}

.to-green-600 {
    --tw-gradient-to: #16a34a var(--tw-gradient-to-position)
}

.to-indigo-200 {
    --tw-gradient-to: #c7d2fe var(--tw-gradient-to-position)
}

.to-indigo-50 {
    --tw-gradient-to: #eef2ff var(--tw-gradient-to-position)
}

.to-indigo-600 {
    --tw-gradient-to: #4f46e5 var(--tw-gradient-to-position)
}

.to-orange-200 {
    --tw-gradient-to: #fed7aa var(--tw-gradient-to-position)
}

.to-orange-50 {
    --tw-gradient-to: #fff7ed var(--tw-gradient-to-position)
}

.to-orange-600 {
    --tw-gradient-to: #ea580c var(--tw-gradient-to-position)
}

.to-orange-700 {
    --tw-gradient-to: #c2410c var(--tw-gradient-to-position)
}

.to-pink-500 {
    --tw-gradient-to: #ec4899 var(--tw-gradient-to-position)
}

.to-pink-600 {
    --tw-gradient-to: #db2777 var(--tw-gradient-to-position)
}

.to-purple-200 {
    --tw-gradient-to: #e9d5ff var(--tw-gradient-to-position)
}

.to-purple-500 {
    --tw-gradient-to: #a855f7 var(--tw-gradient-to-position)
}

.to-purple-600 {
    --tw-gradient-to: #9333ea var(--tw-gradient-to-position)
}

.to-red-600 {
    --tw-gradient-to: #dc2626 var(--tw-gradient-to-position)
}

.to-teal-50 {
    --tw-gradient-to: #f0fdfa var(--tw-gradient-to-position)
}

.to-teal-600 {
    --tw-gradient-to: #0d9488 var(--tw-gradient-to-position)
}

.to-transparent {
    --tw-gradient-to: transparent var(--tw-gradient-to-position)
}

.to-white {
    --tw-gradient-to: #fff var(--tw-gradient-to-position)
}

.to-yellow-100 {
    --tw-gradient-to: #fef9c3 var(--tw-gradient-to-position)
}

.to-yellow-200 {
    --tw-gradient-to: #fef08a var(--tw-gradient-to-position)
}

.to-yellow-300 {
    --tw-gradient-to: #fde047 var(--tw-gradient-to-position)
}

.to-yellow-400 {
    --tw-gradient-to: #facc15 var(--tw-gradient-to-position)
}

.to-yellow-50 {
    --tw-gradient-to: #fefce8 var(--tw-gradient-to-position)
}

.to-yellow-500 {
    --tw-gradient-to: #eab308 var(--tw-gradient-to-position)
}

.to-yellow-600 {
    --tw-gradient-to: #ca8a04 var(--tw-gradient-to-position)
}

.to-yellow-600\/20 {
    --tw-gradient-to: rgb(202 138 4 / .2) var(--tw-gradient-to-position)
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text
}

.fill-current {
    fill: currentColor
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover
}

.p-10 {
    padding: 2.5rem
}

.p-2 {
    padding: .5rem
}

.p-3 {
    padding: .75rem
}

.p-4 {
    padding: 1rem
}

.p-6 {
    padding: 1.5rem
}

.p-8 {
    padding: 2rem
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem
}

.px-3 {
    padding-left: .75rem;
    padding-right: .75rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem
}

.py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem
}

.py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem
}

.py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
}

.pb-6 {
    padding-bottom: 1.5rem
}

.pr-4 {
    padding-right: 1rem
}

.pt-4 {
    padding-top: 1rem
}

.pt-8 {
    padding-top: 2rem
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.text-2xl {
    font-size: 1.4rem;
    line-height: 2rem
}

.text-3xl {
    font-size: 1.6rem;
    line-height: 2.25rem
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem
}

.text-5xl {
    font-size: 3rem;
    line-height: 1
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.text-xs {
    font-size: .75rem;
    line-height: 1rem
}

.font-bold {
    font-weight: 700
}

.font-medium {
    font-weight: 500
}

.font-semibold {
    font-weight: 600
}

.uppercase {
    text-transform: uppercase
}

.italic {
    font-style: italic
}

.leading-relaxed {
    line-height: 1.625
}

.leading-tight {
    line-height: 1.25
}

.tracking-wide {
    letter-spacing: .025em
}

.text-blue-600 {
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1))
}

.text-gray-200 {
    --tw-text-opacity: 1;
    color: rgb(229 231 235 / var(--tw-text-opacity, 1))
}

.text-gray-300 {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1))
}

.text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1))
}

.text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1))
}

.text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1))
}

.text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1))
}

.text-gray-800 {
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1))
}

.text-gray-900 {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1))
}

.text-green-400 {
    --tw-text-opacity: 1;
    color: rgb(74 222 128 / var(--tw-text-opacity, 1))
}

.text-green-500 {
    --tw-text-opacity: 1;
    color: rgb(34 197 94 / var(--tw-text-opacity, 1))
}

.text-green-600 {
    --tw-text-opacity: 1;
    color: rgb(22 163 74 / var(--tw-text-opacity, 1))
}

.text-green-900 {
    --tw-text-opacity: 1;
    color: rgb(20 83 45 / var(--tw-text-opacity, 1))
}

.text-orange-500 {
    --tw-text-opacity: 1;
    color: rgb(249 115 22 / var(--tw-text-opacity, 1))
}

.text-orange-600 {
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1))
}

.text-purple-600 {
    --tw-text-opacity: 1;
    color: rgb(147 51 234 / var(--tw-text-opacity, 1))
}

.text-red-400 {
    --tw-text-opacity: 1;
    color: rgb(248 113 113 / var(--tw-text-opacity, 1))
}

.text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity, 1))
}

.text-red-600 {
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1))
}

.text-transparent {
    color: transparent
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.text-yellow-400 {
    --tw-text-opacity: 1;
    color: rgb(250 204 21 / var(--tw-text-opacity, 1))
}

.text-yellow-500 {
    --tw-text-opacity: 1;
    color: rgb(234 179 8 / var(--tw-text-opacity, 1))
}

.text-yellow-600 {
    --tw-text-opacity: 1;
    color: rgb(202 138 4 / var(--tw-text-opacity, 1))
}

.line-through {
    text-decoration-line: line-through
}

.placeholder-gray-500::-moz-placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(107 114 128 / var(--tw-placeholder-opacity, 1))
}

.placeholder-gray-500::placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(107 114 128 / var(--tw-placeholder-opacity, 1))
}

.opacity-0 {
    opacity: 0
}

.opacity-10 {
    opacity: .1
}

.opacity-15 {
    opacity: .15
}

.opacity-20 {
    opacity: .2
}

.opacity-30 {
    opacity: .3
}

.opacity-5 {
    opacity: .05
}

.opacity-60 {
    opacity: .6
}

.opacity-70 {
    opacity: .7
}

.opacity-80 {
    opacity: .8
}

.opacity-90 {
    opacity: .9
}

.shadow-2xl {
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-md {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-xl {
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.ring-2 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.ring-4 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.ring-green-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity, 1))
}

.ring-orange-200 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 215 170 / var(--tw-ring-opacity, 1))
}

.ring-orange-500 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(249 115 22 / var(--tw-ring-opacity, 1))
}

.backdrop-blur-sm {
    --tw-backdrop-blur: blur(4px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.duration-1000 {
    transition-duration: 1s
}

.duration-300 {
    transition-duration: .3s
}

.duration-500 {
    transition-duration: .5s
}

.duration-700 {
    transition-duration: .7s
}

.ease-in-out {
    transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.ease-out {
    transition-timing-function: cubic-bezier(0, 0, .2, 1)
}

.hover\:-translate-y-1:hover {
    --tw-translate-y: -.25rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.hover\:-translate-y-2:hover {
    --tw-translate-y: -.5rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.hover\:-translate-y-3:hover {
    --tw-translate-y: -.75rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.hover\:-translate-y-6:hover {
    --tw-translate-y: -1.5rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.hover\:scale-105:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.hover\:scale-110:hover {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.hover\:scale-125:hover {
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.hover\:border-orange-200:hover {
    --tw-border-opacity: 1;
    border-color: rgb(254 215 170 / var(--tw-border-opacity, 1))
}

.hover\:border-orange-300:hover {
    --tw-border-opacity: 1;
    border-color: rgb(253 186 116 / var(--tw-border-opacity, 1))
}

.hover\:border-transparent:hover {
    border-color: transparent
}

.hover\:bg-blue-700:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1))
}

.hover\:bg-gray-100:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1))
}

.hover\:bg-gray-200:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1))
}

.hover\:bg-gray-50:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1))
}

.hover\:bg-green-600:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1))
}

.hover\:bg-orange-50:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1))
}

.hover\:bg-orange-600:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1))
}

.hover\:bg-orange-700:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(194 65 12 / var(--tw-bg-opacity, 1))
}

.hover\:bg-white\/20:hover {
    background-color: #fff3
}

.hover\:bg-white\/30:hover {
    background-color: #ffffff4d
}

.hover\:bg-white\/50:hover {
    background-color: #ffffff80
}

.hover\:bg-gradient-to-r:hover {
    background-image: linear-gradient(to right, var(--tw-gradient-stops))
}

.hover\:from-green-700:hover {
    --tw-gradient-from: #15803d var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(21 128 61 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.hover\:from-orange-700:hover {
    --tw-gradient-from: #c2410c var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(194 65 12 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.hover\:to-emerald-700:hover {
    --tw-gradient-to: #047857 var(--tw-gradient-to-position)
}

.hover\:to-red-700:hover {
    --tw-gradient-to: #b91c1c var(--tw-gradient-to-position)
}

.hover\:to-yellow-700:hover {
    --tw-gradient-to: #a16207 var(--tw-gradient-to-position)
}

.hover\:text-orange-500:hover {
    --tw-text-opacity: 1;
    color: rgb(249 115 22 / var(--tw-text-opacity, 1))
}

.hover\:text-orange-600:hover {
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1))
}

.hover\:text-white:hover {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.hover\:opacity-100:hover {
    opacity: 1
}

.hover\:shadow-2xl:hover {
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.hover\:shadow-lg:hover {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.hover\:shadow-xl:hover {
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px
}

.focus\:ring-4:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.focus\:ring-white\/30:focus {
    --tw-ring-color: rgb(255 255 255 / .3)
}

.group:hover .group-hover\:translate-x-1 {
    --tw-translate-x: .25rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.group:hover .group-hover\:translate-x-2 {
    --tw-translate-x: .5rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.group:hover .group-hover\:rotate-3 {
    --tw-rotate: 3deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.group:hover .group-hover\:rotate-6 {
    --tw-rotate: 6deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.group:hover .group-hover\:scale-110 {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.group:hover .group-hover\:scale-125 {
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

@keyframes pulse {
    50% {
        opacity: .5
    }
}

.group:hover .group-hover\:animate-pulse {
    animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite
}

.group:hover .group-hover\:text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1))
}

.group:hover .group-hover\:text-gray-900 {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1))
}

.group:hover .group-hover\:text-orange-600 {
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1))
}

.group:hover .group-hover\:opacity-10 {
    opacity: .1
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1
}

.group:hover .group-hover\:opacity-20 {
    opacity: .2
}

.group:hover .group-hover\:opacity-5 {
    opacity: .05
}

.group:hover .group-hover\:shadow-2xl {
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .sm\:flex-row {
        flex-direction: row
    }

    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }

    .sm\:text-6xl {
        font-size: 3.75rem;
        line-height: 1
    }
}

@media (min-width: 768px) {
    .md\:col-span-1 {
        grid-column: span 1 / span 1
    }

    .md\:mt-0 {
        margin-top: 0
    }

    .md\:block {
        display: block
    }

    .md\:flex {
        display: flex
    }

    .md\:hidden {
        display: none
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }

    .md\:flex-row {
        flex-direction: row
    }
}

@media (min-width: 1024px) {
    .lg\:col-span-2 {
        grid-column: span 2 / span 2
    }

    .lg\:block {
        display: block
    }

    .lg\:h-auto {
        height: auto
    }

    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }

    .lg\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr))
    }

    .lg\:grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr))
    }

    .lg\:flex-row {
        flex-direction: row
    }

    .lg\:flex-row-reverse {
        flex-direction: row-reverse
    }

    .lg\:justify-start {
        justify-content: flex-start
    }

    .lg\:space-y-16>:not([hidden])~:not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(4rem * var(--tw-space-y-reverse))
    }

    .lg\:p-12 {
        padding: 3rem
    }

    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem
    }

    .lg\:pl-8 {
        padding-left: 2rem
    }

    .lg\:text-left {
        text-align: left !important;
    }

    .lg\:text-7xl {
        font-size: 4.5rem;
        line-height: 1
    }
}
.customer-journey{
    background-color: #f6f4e7;
}

/* ===== VISUAL FEAST SECTION - MODERN RESPONSIVE DESIGN ===== */

.visual-feast-section {
    padding: 5rem 0;
    /* background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%); */
    position: relative;
    overflow: hidden;
    background-color: #f6f4e7;
}

.visual-feast-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f97316" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23f97316" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23f97316" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23f97316" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23f97316" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.visual-feast-container {
    width: 100%;
    padding: 0 1rem;
    position: relative;
}

/* Header Styles */
.visual-feast-header {
    text-align: center;
    margin-bottom: 4rem;
}

.visual-feast-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.visual-feast-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #f97316;
    margin-right: 0.5rem;
}

.visual-feast-badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.visual-feast-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.visual-feast-accent {
    color: #ea580c;
    background: linear-gradient(135deg, #ea580c, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.visual-feast-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Content Layout */
.visual-feast-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Gallery Styles */
.visual-feast-gallery {
    flex: 1;
}

.visual-feast-main-image {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.visual-feast-main-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.visual-feast-image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.visual-feast-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.visual-feast-main-image:hover .visual-feast-main-img {
    transform: scale(1.05);
}

.visual-feast-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.visual-feast-image-info {
    max-width: 100%;
}

.visual-feast-tags {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.visual-feast-tag {
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
}

.visual-feast-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.visual-feast-star {
    width: 1rem;
    height: 1rem;
    color: #fbbf24;
    fill: currentColor;
}

.visual-feast-image-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.visual-feast-image-desc {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Navigation Buttons */
.visual-feast-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.visual-feast-image-container:hover .visual-feast-nav {
    opacity: 1;
}

.visual-feast-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.visual-feast-nav-left {
    left: 1rem;
}

.visual-feast-nav-right {
    right: 1rem;
}

.visual-feast-play {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.visual-feast-image-container:hover .visual-feast-play {
    opacity: 1;
}

.visual-feast-play:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}
@media screen and (min-width: 1366px) and (max-width: 1499px) {
.visual-feast-container{
    max-width: 1200px;
    margin: 0 auto;
}
.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1200px !important;
}
}

/* Thumbnails */
.visual-feast-thumbnails {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: #f9fafb;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.visual-feast-thumbnails::-webkit-scrollbar {
    display: none;
}

.visual-feast-thumb {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    padding: 0;
}

.visual-feast-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.visual-feast-thumb:hover {
    transform: scale(1.05);
    border-color: #f97316;
}

.visual-feast-thumb.active {
    border-color: #f97316;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
    transform: scale(1.1);
}

.visual-feast-thumb:hover img {
    transform: scale(1.1);
}

/* Feature Cards */
.visual-feast-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-feast-feature-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.visual-feast-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.4);
}

.visual-feast-feature-icon {
    width: 3rem;
    height: auto;
    margin-bottom: 1rem;
    color: #f97316;
}

.visual-feast-feature-card:nth-child(2) .visual-feast-feature-icon {
    color: #10b981;
}

.visual-feast-feature-card:nth-child(3) .visual-feast-feature-icon {
    color: #059669;
}

.visual-feast-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.visual-feast-feature-desc {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Stats Section */
.visual-feast-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.visual-feast-stat {
    text-align: center;
    min-width: 120px;
}

.visual-feast-stat-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.visual-feast-stat:hover .visual-feast-stat-circle {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.visual-feast-stat-orange {
    background: linear-gradient(135deg, #ea580c, #f97316);
}

.visual-feast-stat-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.visual-feast-stat-blue {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.visual-feast-stat-red {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.visual-feast-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.visual-feast-stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    line-height: 1.3;
}

/* Responsive Design */
@media (min-width: 768px) {
    .visual-feast-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }

    .visual-feast-gallery {
        flex: 2;
    }

    .visual-feast-features {
        flex: 1;
        gap: 2rem;
    }

    .visual-feast-image-container {
        height: 500px;
    }
}

/* Specific styling for 768px screen size only */
@media (min-width: 768px) and (max-width: 768px) {
    .visual-feast-gallery {
        flex: 1;
    }

    .visual-feast-features {
        flex: 2;
        gap: 2rem;
    }
}

/* Detailed Comparison Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slideDown {
    animation: slideDown 0.5s ease-out;
}

/* Disable AOS animations on screens smaller than 1366px */
@media (max-width: 1365px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    [data-aos="fade-up"] {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    [data-aos="fade-down"] {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    [data-aos="fade-left"] {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    [data-aos="fade-right"] {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    [data-aos="zoom-in"] {
        opacity: 1 !important;
        transform: scale(1) !important;
    }

    [data-aos="zoom-out"] {
        opacity: 1 !important;
        transform: scale(1) !important;
    }

    [data-aos="flip-up"] {
        opacity: 1 !important;
        transform: rotateX(0) !important;
    }

    [data-aos="flip-down"] {
        opacity: 1 !important;
        transform: rotateX(0) !important;
    }

    [data-aos="flip-left"] {
        opacity: 1 !important;
        transform: rotateY(0) !important;
    }

    [data-aos="flip-right"] {
        opacity: 1 !important;
        transform: rotateY(0) !important;
    }

    [data-aos="slide-up"] {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    [data-aos="slide-down"] {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    [data-aos="slide-left"] {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    [data-aos="slide-right"] {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
}

    .visual-feast-title {
        font-size: 3rem;
    }

    .visual-feast-subtitle {
        font-size: 1.375rem;
    }


@media (min-width: 1024px) {
    .visual-feast-section {
        padding: 6rem 0;
    }
    .tiffin .banner-title{
        font-size:14px;
    }

    .visual-feast-container {
        padding: 0 2rem;
    }

    .visual-feast-image-container {
        height: 600px;
    }

    .visual-feast-title {
        font-size: 3.5rem;
    }

    .visual-feast-stats {
        gap: 3rem;
    }

    .visual-feast-stat {
        min-width: 150px;
    }

    .visual-feast-stat-circle {
        width: 5rem;
        height: 5rem;
    }

    .visual-feast-stat-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .visual-feast-section {
        padding: 3rem 0;
    }

    .visual-feast-container {
        padding: 0 0.75rem;
    }

    .visual-feast-title {
        font-size: 2rem;
    }

    .visual-feast-subtitle {
        font-size: 1.125rem;
    }

    .visual-feast-image-container {
        height: 300px;
    }

    .visual-feast-overlay {
        padding: 1.5rem;
    }

    .visual-feast-image-title {
        font-size: 1.5rem;
    }

    .visual-feast-feature-card {
        padding: 1.25rem;
    }

    .visual-feast-stats {
        gap: 1.5rem;
    }

    .visual-feast-stat {
        min-width: 100px;
    }

    .visual-feast-stat-circle {
        width: 3.5rem;
        height: 3.5rem;
    }

    .visual-feast-stat-number {
        font-size: 1.25rem;
    }

    .visual-feast-stat-label {
        font-size: 0.8rem;
    }
}



@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Additional Utility Classes */
.visual-feast-fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.visual-feast-slide-in {
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Focus and Accessibility */
.visual-feast-nav:focus,
.visual-feast-play:focus,
.visual-feast-thumb:focus {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .visual-feast-section {
        background: #ffffff;
        border: 2px solid #000000;
    }

    .visual-feast-feature-card {
        border: 2px solid #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .visual-feast-section::before,
    .visual-feast-main-img,
    .visual-feast-feature-card,
    .visual-feast-stat-circle,
    .visual-feast-badge {
        animation: none;
        transition: none;
    }
}

/* ===== CUSTOMER JOURNEY SECTION STYLES ===== */
.journey-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.125rem;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    background-color: #f3f4f6;
    color: #4b5563;
}

/* Active state - high specificity to override Tailwind */
button.journey-nav-btn.active,
.journey-nav-btn.active {
    background: linear-gradient(to right, #ea580c, #ca8a04) !important;
    background-color: transparent !important;
    background-image: linear-gradient(to right, #ea580c, #ca8a04) !important;
    color: white !important;
    transform: scale(1.1) !important;
    box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.5), 0 0 0 1px rgba(251, 146, 60, 0.8), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    outline: none !important;
    border: none !important;
}

.journey-nav-btn:hover:not(.active) {
    transform: scale(1.05);
    background-color: #e5e7eb;
}

.journey-nav-btn:focus:not(.active) {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

.journey-nav-btn.active:focus {
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.6), 0 0 0 2px rgba(251, 146, 60, 0.9), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.journey-step {
    transition: all 0.5s ease;
    display: none;
}

.journey-step.active {
    display: block;
}

.journey-progress {
    transition: width 1s ease;
}

/* Banner Background Animations */
@keyframes float-particle {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) translateX(-5px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-15px) translateX(8px) rotate(270deg);
        opacity: 0.6;
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.animate-float-particle {
    animation: float-particle 8s ease-in-out infinite;
}

.animate-twinkle {
    animation: twinkle 3s ease-in-out infinite;
}
.lg-outer {
    z-index: 9999 !important;
}
.lg-backdrop {
    z-index: 9999 !important;
}

.premium-subtitle {
    display: inline-block;
    font-family: 'Dynalight', sans-serif;
    font-size: 24px;
    font-style: italic;
    color: #7fb741;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.premium-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.premium-title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #7fb741, #66bb6a, #4caf50);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    animation: expandWidth 1s ease-out 0.5s both;
}

.premium-title-underline::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #7fb741;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(127, 187, 65, 0.6);
}

/* Mobile Menu Styles */
.premium-mobile-menu {
    margin-top: 40px;
}

.premium-week-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.premium-tab-btn {
    padding: 12px 24px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.premium-tab-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #7fb741, #66bb6a);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.premium-tab-btn:hover::before {
    width: 300px;
    height: 300px;
}

.premium-tab-btn:hover {
    color: #ffffff;
    border-color: #7fb741;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(127, 187, 65, 0.3);
}

.premium-tab-btn.active {
    background: linear-gradient(135deg, #7fb741, #66bb6a);
    color: #ffffff;
    border-color: #7fb741;
    box-shadow: 0 4px 16px rgba(127, 187, 65, 0.4);
    transform: translateY(-2px);
}

.premium-tab-btn.active::before {
    display: none;
}

.premium-tab-content-wrapper {
    position: relative;
    min-height: 500px;
}

.premium-tab-panel {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.premium-tab-panel.active {
    display: block;
}

.premium-meal-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-left: 4px solid transparent;
}

.premium-meal-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #7fb741, #66bb6a);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.premium-meal-card:hover {
    transform: translateX(8px) translateY(-4px);
    box-shadow: 0 8px 24px rgba(127, 187, 65, 0.2);
    border-left-color: #7fb741;
}

.premium-meal-card:hover::before {
    transform: scaleY(1);
}

.premium-day-label {
    font-size: 12px;
    font-weight: 700;
    color: #7fb741;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.premium-day-label::before {
    content: "▸";
    margin-right: 8px;
    font-size: 14px;
}

.premium-meal-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.premium-meal-icon {
    font-size: 24px;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.premium-meal-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.5;
}

.premium-meal-date {
    background: linear-gradient(135deg, #2e7d32, #388e3c);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    min-width: 65px;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    flex-shrink: 0;
}

.premium-meal-date span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
    opacity: 0.9;
}

/* Desktop Grid Layout */
.premium-desktop-menu {
    margin-top: 50px;
}

.premium-grid-wrapper {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(127, 187, 65, 0.1);
}

.premium-grid-header {
    display: grid;
    grid-template-columns: 120px repeat(4, 1fr);
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 50%, #4caf50 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

.premium-grid-day-col,
.premium-grid-week-col {
    padding: 24px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.premium-grid-day-col {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.premium-grid-week-col:last-child {
    border-right: none;
}

.premium-grid-body {
    display: flex;
    flex-direction: column;
}

.premium-grid-row {
    display: grid;
    grid-template-columns: 120px repeat(4, 1fr);
    border-bottom: 1px solid #e8f5e9;
    transition: all 0.3s ease;
}

.premium-grid-row:last-child {
    border-bottom: none;
}

.premium-grid-row:hover {
    background: linear-gradient(90deg, #f1f8f4 0%, #ffffff 100%);
    transform: scale(1.002);
}

.premium-grid-day {
    background: linear-gradient(135deg, #81c784 0%, #66bb6a 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
}

.premium-grid-row:hover .premium-grid-day {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.premium-grid-cell {
    padding: 20px;
    position: relative;
    border-right: 1px solid #e8f5e9;
    transition: all 0.3s ease;
}

.premium-grid-cell:last-child {
    border-right: none;
}

.premium-grid-row:hover .premium-grid-cell {
    background: transparent;
}

.premium-cell-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding-right: 70px;
}

.premium-cell-icon {
    font-size: 20px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(76, 175, 80, 0.3));
    transition: transform 0.3s ease;
}

.premium-grid-row:hover .premium-cell-icon {
    transform: scale(1.2) rotate(10deg);
}

.premium-cell-meal {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.6;
}

.premium-cell-date {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    transition: all 0.3s ease;
}

.premium-cell-date small {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
    opacity: 0.9;
}

.premium-grid-row:hover .premium-cell-date {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(46, 125, 50, 0.4);
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 120px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .premium-menu-container {
        max-width: 1200px;
    }

    .premium-grid-header,
    .premium-grid-row {
        grid-template-columns: 100px repeat(4, 1fr);
    }

    .premium-grid-day {
        font-size: 14px;
        padding: 20px 15px;
    }

    .premium-cell-meal {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .premium-title {
        font-size: 36px;
    }

    .premium-grid-header,
    .premium-grid-row {
        grid-template-columns: 90px repeat(4, 1fr);
    }

    .premium-grid-day-col,
    .premium-grid-week-col {
        padding: 20px 15px;
        font-size: 14px;
    }

    .premium-grid-cell {
        padding: 16px;
    }

    .premium-cell-content {
        padding-right: 65px;
    }

    .premium-cell-meal {
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .premium-monthly-menu {
        padding: 60px 0;
    }

    .premium-title {
        font-size: 32px;
    }

    .premium-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .premium-monthly-menu {
        padding: 50px 0;
    }

    .premium-menu-header {
        margin-bottom: 40px;
    }

    .premium-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .premium-subtitle {
        font-size: 18px;
    }

    .premium-week-tabs {
        gap: 6px;
        margin-bottom: 24px;
    }

    .premium-tab-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .premium-meal-card {
        padding: 16px;
        margin-bottom: 12px;
    }

    .premium-meal-text {
        font-size: 14px;
    }

    .premium-meal-date {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 55px;
    }

    .premium-meal-date span {
        font-size: 9px;
    }
}

@media (max-width: 576px) {
    .premium-menu-container {
        padding: 0 15px;
    }

    .premium-title {
        font-size: 24px;
    }

    .premium-subtitle {
        font-size: 16px;
    }

    .premium-header-icon img {
        width: 60px;
        height: 60px;
    }

    .premium-week-tabs {
        gap: 4px;
    }

    .premium-tab-btn {
        padding: 8px 14px;
        font-size: 12px;
        flex: 1;
        min-width: calc(25% - 3px);
    }

    .premium-meal-card {
        padding: 14px;
    }

    .premium-day-label {
        font-size: 11px;
    }

    .premium-meal-icon {
        font-size: 20px;
    }

    .premium-meal-text {
        font-size: 13px;
    }

    .premium-meal-date {
        padding: 6px 10px;
        font-size: 11px;
        min-width: 50px;
    }
}

/* Print Styles */
@media print {
    .premium-monthly-menu {
        background: #ffffff;
        padding: 20px 0;
    }

    .premium-week-tabs {
        display: none;
    }

    .premium-tab-panel {
        display: block !important;
        page-break-inside: avoid;
    }

    .premium-meal-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ============================================
   Tiffin Menu Carousel Section - Unique Design
   ============================================ */

.tiffin-menu-carousel-section {
    padding: 60px 20px;
    background: #ffffff;
    background-image: url('../images/menu-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
/*o
.tiffin-menu-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(127, 183, 65, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(239, 128, 26, 0.03) 0%, transparent 50%),
        rgba(255, 255, 255, 0.85);
    pointer-events: none;
    z-index: 0;
} */

/* .tiffin-menu-carousel-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 200px, rgba(0, 0, 0, 0.008) 200px, rgba(0, 0, 0, 0.008) 202px);
    pointer-events: none;
    z-index: 0;
} */


.tiffin-menu-carousel-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    overflow: hidden;
}

.tiffin-menu-carousel-header {
    text-align: center;
    margin-bottom: 30px;
}

.tiffin-menu-carousel-title {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    position: relative;
}

.tiffin-menu-carousel-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.tiffin-menu-carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tiffin-menu-carousel-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #4b5563;
    position: relative;
    overflow: hidden;
}

.tiffin-menu-carousel-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #fc8019;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.tiffin-menu-carousel-btn:hover {
    box-shadow: 0 8px 20px rgba(252, 128, 25, 0.25);
    transform: scale(1.1);
    border-color: #fc8019;
}

.tiffin-menu-carousel-btn:hover::before {
    width: 100%;
    height: 100%;
}

.tiffin-menu-carousel-btn:hover svg {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.tiffin-menu-carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
    pointer-events: none;
}

.tiffin-menu-carousel-btn:disabled:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: #e5e7eb;
    transform: scale(1);
}

.tiffin-menu-carousel-btn svg {
    width: 24px;
    height: 24px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.tiffin-menu-carousel-week-info {
    text-align: center;
}

.tiffin-menu-carousel-week-title {
    font-size: 32px;
    font-weight: 900;
    color: #fc8019;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
    text-shadow: 0 2px 8px rgba(252, 128, 25, 0.2);
    transition: all 0.3s ease;
}

.tiffin-menu-carousel-week-number {
    display: inline-block;
}

.tiffin-menu-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.tiffin-menu-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.tiffin-menu-carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #fc8019;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.tiffin-menu-carousel-dot:hover {
    transform: scale(1.2);
}

.tiffin-menu-carousel-dot.active {
    background: #fc8019;
    width: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(252, 128, 25, 0.4);
}

.tiffin-menu-carousel-wrapper {
    position: relative;
    min-height: 450px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
    padding: 5px;
    margin-top: 0;
}

/* Smooth text transition for dish names only - cards stay static */
.tiffin-menu-carousel-dish-name {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tiffin-menu-carousel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    grid-auto-rows: min-content;
    grid-auto-columns: minmax(0, 1fr);
}

.tiffin-menu-carousel-day-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 28px 24px;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    text-align: center;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word;
    word-wrap: break-word;
    grid-column: span 1;
}

.tiffin-menu-carousel-day-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 18px;
    background: #fc8019;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
}

.tiffin-menu-carousel-day-card:hover::before {
    opacity: 1;
}

.tiffin-menu-carousel-day-card:hover {
    box-shadow:
        0 15px 40px rgba(252, 128, 25, 0.2),
        0 5px 15px rgba(252, 128, 25, 0.15);
    transform: translateY(-5px) !important;
    background: #ffffff;
}

.tiffin-menu-carousel-day-header {
    text-align: center;
    margin-bottom: 18px;
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.tiffin-menu-carousel-calendar-icon {
    width: 44px;
    height: 44px;
    color: #fc8019;
    margin: 0 auto 12px;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px;
    background: rgba(252, 128, 25, 0.1);
    border-radius: 10px;
}

.tiffin-menu-carousel-day-card:hover .tiffin-menu-carousel-calendar-icon {
    transform: scale(1.1) rotate(5deg);
    color: #fc8019;
    background: rgba(252, 128, 25, 0.15);
}

.tiffin-menu-carousel-day-name {
    font-weight: 800;
    color: #fc8019;
    font-size: 20px;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.tiffin-menu-carousel-day-card:hover .tiffin-menu-carousel-day-name {
    color: #fc8019;
}

.tiffin-menu-carousel-day-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.tiffin-menu-carousel-dish-item {
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.tiffin-menu-carousel-dish-label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.tiffin-menu-carousel-dish-name {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.7;
    margin: 0;
    text-align: center;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
    transition: all 0.4s ease;
    padding: 10px 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(239, 128, 26, 0.08) 0%, rgba(127, 183, 65, 0.08) 100%);
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    hyphens: auto;
    display: block;
    white-space: normal;
    overflow: hidden;
}

.tiffin-menu-carousel-day-card:hover .tiffin-menu-carousel-dish-name {
    color: #0f172a;
    background: linear-gradient(135deg, rgba(239, 128, 26, 0.15) 0%, rgba(127, 183, 65, 0.15) 100%);
    transform: translateY(-2px);
}

.tiffin-menu-carousel-footer {
    text-align: center;
    margin-top:60px;
}

.tiffin-menu-carousel-footer-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 40px;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04);
    display: inline-block;
    max-width: 800px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.tiffin-menu-carousel-footer-card:hover {
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.12),
        0 2px 6px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.tiffin-menu-carousel-footer-text {
    color: #475569;
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
}

.tiffin-menu-carousel-footer-text strong {
    color: #0a4a28;
    font-weight: 700;
}

.tiffin-menu-carousel-footer-note {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tiffin-menu-carousel-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .tiffin-menu-carousel-day-card {
        padding: 28px 20px;
    }
}

@media (max-width: 768px) {
    .tiffin-menu-carousel-section {
        padding: 80px 16px;
    }

    .tiffin-menu-carousel-header {
        margin-bottom: 50px;
    }

    .tiffin-menu-carousel-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .tiffin-menu-carousel-subtitle {
        font-size: 18px;
    }

    .tiffin-menu-carousel-navigation {
        gap: 28px;
        margin-bottom: 20px;
    }

    .tiffin-menu-carousel-btn {
        width: 50px;
        height: 50px;
    }

    .tiffin-menu-carousel-week-title {
        font-size: 28px;
    }

    .tiffin-menu-carousel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-bottom: 50px;
    }

    .tiffin-menu-carousel-day-card {
        padding: 26px 20px;
    }

    .tiffin-menu-carousel-day-name {
        font-size: 18px;
    }

    .tiffin-menu-carousel-dish-name {
        font-size: 15px;
    }

    .tiffin-menu-carousel-footer {
        margin-top: 50px;
    }

    .tiffin-menu-carousel-footer-card {
        padding: 28px 32px;
    }
}

@media (max-width: 480px) {
    .tiffin-menu-carousel-section {
        padding: 60px 12px;
    }

    .tiffin-menu-carousel-header {
        margin-bottom: 40px;
    }

    .tiffin-menu-carousel-title {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .tiffin-menu-carousel-subtitle {
        font-size: 16px;
    }

    .tiffin-menu-carousel-navigation {
        gap: 20px;
        margin-bottom: 20px;
    }

    .tiffin-menu-carousel-btn {
        width: 44px;
        height: 44px;
    }

    .tiffin-menu-carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .tiffin-menu-carousel-week-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .tiffin-menu-carousel-indicators {
        gap: 8px;
        margin-top: 10px;
    }

    .tiffin-menu-carousel-dot {
        width: 8px;
        height: 8px;
    }

    .tiffin-menu-carousel-dot.active {
        width: 28px;
    }

    .tiffin-menu-carousel-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .tiffin-menu-carousel-day-card {
        padding: 24px 18px;
    }

    .tiffin-menu-carousel-calendar-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 10px;
    }

    .tiffin-menu-carousel-day-name {
        font-size: 17px;
    }

    .tiffin-menu-carousel-dish-label {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .tiffin-menu-carousel-dish-name {
        font-size: 14px;
    }

    .tiffin-menu-carousel-footer {
        margin-top: 40px;
    }

    .tiffin-menu-carousel-footer-card {
        padding: 24px 20px;
    }

    .tiffin-menu-carousel-footer-text {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .tiffin-menu-carousel-footer-note {
        font-size: 13px;
    }

}

/* ============================================
   Premium Menu Showcase Section - Timeline Design
   ============================================ */

.premium-menu-showcase-section {
    padding: 60px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.premium-menu-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(252, 128, 25, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}



.premium-menu-showcase-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.premium-menu-showcase-header {
    text-align: center;
    margin-bottom: 30px;
}

.premium-menu-showcase-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -1px;
    position: relative;
}

.premium-menu-showcase-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fc8019;
    border-radius: 2px;
}

.premium-menu-showcase-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 24px auto 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Tab Navigation */
.premium-menu-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    position: relative;
}

.premium-menu-tab {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.premium-menu-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(252, 128, 25, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.premium-menu-tab .tab-number,
.premium-menu-tab .tab-label {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.premium-menu-tab .tab-number {
    font-size: 32px;
    font-weight: 900;
    color: #94a3b8;
    line-height: 1;
    letter-spacing: -1px;
}

.premium-menu-tab .tab-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-menu-tab:hover {
    border-color: #fc8019;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(252, 128, 25, 0.15);
}

.premium-menu-tab:hover::before {
    opacity: 0.08;
}

.premium-menu-tab:hover .tab-number,
.premium-menu-tab:hover .tab-label {
    color: #fc8019;
}

.premium-menu-tab.active {
    background: #ffffff;
    border-color: #fc8019;
    border-width: 2px;
    box-shadow: 0 8px 24px rgba(252, 128, 25, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.premium-menu-tab.active::before {
    opacity: 0;
}

.premium-menu-tab.active .tab-number,
.premium-menu-tab.active .tab-label {
    color: #fc8019;
}

/* Compact Grid Layout */
.premium-menu-content {
    position: relative;
}

.premium-menu-main-card {
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.premium-menu-main-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #fc8019;
}


.premium-menu-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.premium-menu-day-item {
    position: relative;
    display: flex;
    flex-direction: column;
}

.day-marker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.day-marker .day-badge {
    margin-bottom: 0;
}

.day-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.day-number svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.premium-menu-day-item:hover .day-number {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.day-line {
    display: none;
}

.day-content-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.day-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #fc8019;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.premium-menu-day-item:hover .day-content-card {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #fc8019;
}

.premium-menu-day-item:hover .day-content-card::before {
    transform: scaleY(1);
}

.day-badge {
    display: inline-block;
    background: #fc8019;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    align-self: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 128, 25, 0.25);
}

.premium-menu-day-item:hover .day-badge {
    background: #fc8019;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 128, 25, 0.35);
}

.day-dish-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.premium-menu-day-item:hover .day-dish-name {
    color: #fc8019;
}

.day-dish-description {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 968px) {
    .premium-menu-main-card {
        padding: 36px;
    }

    .premium-menu-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}


@media (max-width: 768px) {
    .premium-menu-showcase-section {
        padding: 80px 16px;
    }

    .premium-menu-showcase-title {
        font-size: 36px;
    }

    .premium-menu-showcase-header {
        margin-bottom: 50px;
    }

    .premium-menu-tabs {
        margin-bottom: 50px;
        gap: 12px;
    }

    .premium-menu-tab {
        min-width: 120px;
        padding: 16px 24px;
    }

    .premium-menu-tab .tab-number {
        font-size: 24px;
    }

    .premium-menu-tab .tab-label {
        font-size: 12px;
    }

    .premium-menu-main-card {
        padding: 28px;
    }

    .premium-menu-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .day-content-card {
        padding: 22px;
    }

    .day-dish-name {
        font-size: 17px;
    }

    .day-dish-description {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .premium-menu-showcase-section {
        padding: 60px 12px;
    }


    .premium-menu-showcase-title {
        font-size: 28px;
    }

    .premium-menu-showcase-subtitle {
        font-size: 16px;
    }

    .premium-menu-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .premium-menu-tab {
        width: 100%;
        min-width: auto;
    }

    .premium-menu-main-card {
        padding: 24px;
    }

    .premium-menu-timeline {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .day-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .day-content-card {
        padding: 20px;
    }

    .day-dish-name {
        font-size: 16px;
    }

    .day-dish-description {
        font-size: 12px;
    }
}


/* Daily Fresh Process Section - Professional Animations */
.process-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #fc8019 !important;
}

.process-icon-container {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover .process-icon-container {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(252, 128, 25, 0.15) !important;
}

.process-icon-container svg {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover .process-icon-container svg {
    transform: scale(1.1);
}

.process-timeline-marker {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulseMarker 2s ease-in-out infinite;
}

.process-card:hover ~ .process-timeline-marker,
.process-timeline-marker:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(252, 128, 25, 0.4);
    animation: none;
}

@keyframes pulseMarker {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(252, 128, 25, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(252, 128, 25, 0);
    }
}

.process-step {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.process-step:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) {
    animation-delay: 0.3s;
}

.process-step:nth-child(4) {
    animation-delay: 0.4s;
}

.process-step:nth-child(5) {
    animation-delay: 0.5s;
}

.process-step:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-badge {
    transition: all 0.3s ease;
}

.process-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 128, 25, 0.2);
}

.process-title-accent {
    transition: all 0.3s ease;
    display: inline-block;
}

.process-title-accent:hover {
    transform: scale(1.05);
}

/* Smooth icon rotation on hover */
.process-card:hover .process-icon-container svg {
    animation: iconBounce 0.6s ease-in-out;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1.1) translateY(0);
    }
    50% {
        transform: scale(1.15) translateY(-3px);
    }
}

/* ============================================
   Index Page Specific Styles
   Extracted from index.blade.php
   ============================================ */

/* Generic slideInUp animation for inline styles */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trust Section Animations */
@keyframes index-slideInUp-trust {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

/* How It Works Section Animations */
@keyframes index-slideInUp-howitworks {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Daily Fresh Process Section Animations */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Generic float animation for inline styles (Plan Section) */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

@keyframes index-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

/* Visual Feast Navigation Arrows - Improved Visibility */
.visual-feast-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.visual-feast-nav:hover {
    background: rgba(0, 0, 0, 0.9) !important;
    border-color: white !important;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

.visual-feast-nav-left {
    left: 15px !important;
}

.visual-feast-nav-right {
    right: 15px !important;
}

.visual-feast-nav svg {
    width: 24px !important;
    height: 24px !important;
    stroke: white !important;
    stroke-width: 2.5 !important;
}

/* Ensure arrows are visible on all backgrounds */
.visual-feast-nav::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    z-index: -1;
}

/* Customer Journey Section Animations */
@keyframes index-slideInUp-journey {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.5);
    }
}

/* Smart Choice Section Animations */
@keyframes index-slideInUp-smartchoice {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slideDown {
    animation: slideDown 0.5s ease-out;
}

/* Fix header z-index without affecting sections */
.banner {
    position: relative;
    z-index: 1000;
}

.banner .navbar,
.banner header,
.banner .header {
    position: relative;
    z-index: 1001;
}

/* Ensure header stays on top */
.navbar,
.navbar-fixed-top,
.header,
header {
    position: relative !important;
    z-index: 9999 !important;
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f6f4e7;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.chef-character {
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

.chef-character img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: bounce 2s infinite;
}

.chef-character img.loaded {
    opacity: 1;
}

/* Show chef immediately if image is already cached */
.chef-character img[src] {
    opacity: 1;
}

.preloader-logo {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.preloader-tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: spin 1s linear infinite;
}

.preloader-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.preloader-dot {
    width: 12px;
    height: 12px;
    background: #8b4513;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.preloader-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.contact-modal {
    background-color: #3f3f3f !important;
    box-shadow: 0 0 6px white !important;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Ensure main content is visible and prevent horizontal overflow */
html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    overflow-y: auto;
}

/* Prevent horizontal overflow on all sections */
section {
    max-width: 100%;
    overflow-x: hidden;
}

/* Ensure images and media don't overflow */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Fix container overflow - ensure containers respect viewport */
.container, [class*="max-w-"] {
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .container, [class*="max-w-"] {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Responsive adjustments for small screens */
@media (max-width: 640px) {
    /* Ensure absolute positioned elements don't overflow */
    .absolute {
        max-width: calc(100vw - 1rem);
    }
}

/* Make sure main content is not hidden */
.main-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Fallback: Hide preloader after 3 seconds if JavaScript fails */
.preloader:not(.hidden) {
    animation: fadeOut 0.5s ease-out 3s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.preloader-content {
    text-align: center;
    color: #8b4513;
}

.chef-character {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    animation: chefBounce 2s ease-in-out infinite;
}

.chef-character img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}


.preloader-logo {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #8b4513;
    animation: logoPulse 2s ease-in-out infinite;
}

.preloader-tagline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #a0522d;
    font-weight: 500;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #d4c4b0;
    border-top: 3px solid #8b4513;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.preloader-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1rem;
}

.preloader-dot {
    width: 6px;
    height: 6px;
    background: #8b4513;
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite both;
}

.preloader-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.preloader-dot:nth-child(2) {
    animation-delay: -0.16s;
}

.preloader-dot:nth-child(3) {
    animation-delay: 0s;
}

@keyframes chefBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes dotBounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* FAQ Accordion Styles */
.faq-icon {
    transition: transform 0.3s ease;
}

.faq-content {
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-content.hidden {
    max-height: 0;
    opacity: 0;
}

.faq-content:not(.hidden) {
    max-height: 200px;
    opacity: 1;
}

/* Week navigation styles */
.week-dot {
    cursor: pointer;
    transition: all 0.3s ease;
}

.week-dot:hover {
    transform: scale(1.2);
}

.week-dot.active {
    transform: scale(1.3);
}

/* Menu card animations */
.menu-card {
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.tiffin .plan .pack-container .content ul li::before{
       background-image: url("/assets/images/circle.svg");
}
.tiffin .plan .trial-pack .trial-list ul li::before{
      background-image: url("/assets/images/circle.svg");
}
.tiffin .refer .refer-container::after{
       background-image: url("/assets/images/badge.png");
}
.tiffin .food-menu .menu-content ul li::before{
       background-image: url("/assets/images/circle.svg");
}
.tiffin .month-menu .heading h2::before{
       background-image: url("/assets/images/line.png");
}
.tiffin .enquiry .enquiry-content::before{
       background-image: url("/assets/images/shape.png");
}
.tiffin .faq .ques::before {
background-image: url("/assets/images/right-arrow.svg");
}

.tiffin .footer .footer-item ul li a::before{
       background-image: url("/assets/images/arrow.svg");
}
@media (min-width: 768px){
    .tiffin .refer{
            background-image: url("/assets/images/back-layer.png");
    }
}
@media (min-width: 1366px){
     .tiffin .refer .refer-container::before{
           background-image: url("/assets/images/mail-chef.png");
     }
}
@media (min-width: 1600px){
    .tiffin .app .app-wrapper::before{
            background-image: url("/assets/images/person.png");
    }
}