/* CSS Variables */
:root {
    --primary-maroon: #971E36;
    --text-white: #FFFFFF;
    --text-green: #90EE90;
    --menu-bg: #DCE4CF;
    --menu-text: #2D5A2D;
    --tiffin-bg: #971E36;
    --tiffin-green: #2D5A2D;
    --tiffin-blue: #1E3A8A;
    --tiffin-red: #DC2626;
    --testimonial-bg: #265037;
    --testimonial-text: #FFFFFF;
    --about-bg: #e5eee2;
    --about-text: #265037;
    --footer-bg: #265037;
    --footer-text: #FFFFFF;
    --footer-link-hover: #90EE90;
}

/* Navbar */
.navbar {
    background-color: var(--primary-maroon) !important;
    padding: 15px 0;
}

.navbar-nav {
    margin-left: auto;
}

.nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    margin: 0 15px;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--text-green) !important;
}

.navbar-toggler {
    border-color: var(--text-white);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Banner Section (clean, minimal) */
.banner-section {
    background-color: #FBF0B7; /* pale warm yellow */
    padding: 18px 0;
    position: relative;
}

/* Row spacing */
.banner-row { gap: 12px; }

/* Logo */
.mini-logo {
    width: 180px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
    margin-top: -35px;
    margin-left: -12px;
}

/* Search area */
.banner-center { width: 100%; }
.search-wrapper {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}
.search-input {
    width: 100%;
    padding: 16px 62px 16px 18px;
    border-radius: 36px;
    border: 2px solid rgba(45,90,45,0.08);
    background: #fff;
    font-size: 1.05rem;
    color: #222;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    text-transform: uppercase;
}
.search-input::placeholder { color: #777; opacity: 0.9; }
.search-btn {
    position: absolute;
    right: 8px;
    border-radius: 28px;
    border: none;
    background: #8a2b2b;
    color: #fff;
    width: 46px;
    height: 46px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 6px 12px rgba(138,43,43,0.16);
    cursor: pointer;
}

/* Badge images (decorative) */
.banner-badges .badge-img {
    height: 62px;
    width: auto;
    object-fit: contain;
    display: inline-block;
}

.aaspados_img{
    height: 137px;
    width: 560px;
}
/* Action links (right) */
.banner-actions { display: flex; gap: 12px; align-items: center; }
.banner-actions .action-link {
    color: #1f1f1f;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 6px 10px;
    border-radius: 8px;
}
.banner-actions .cart-link {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
}

/* Chips */
.chip {
    background: rgba(255,255,255,0.95);
    padding: 8px 14px;
    border-radius: 22px;
    font-weight: 600;
    font-size: 1.2rem; /* Increased from 0.95rem */
    box-shadow: 0 6px 12px rgba(0,0,0,0.04);
    margin: 6px 6px 0 0;
}

.chip-maroon {
    background: #982A42 !important;
    color: #fff !important;
}
.chip-green {
    background: #749F60 !important;
    color: #fff !important;
}
.chip-blue {
    background: #0097B2 !important;
    color: #fff !important;
}
.chip-yellow {
    background: #D5A314 !important;
    color: #fff !important;
}
.chip-purple {
    background: #945B67 !important;
    color: #fff !important;
}

/* Remove/override old helper rules that caused layout problems */
.logo-section, .food-section, .food-image, .search-container, .search-icon {
    /* intentionally left blank to avoid earlier conflicting rules */
    display: none;
}

/* About Us Section */
.about-us-section {
    background-color: var(--about-bg);
    padding: 80px 0;
}

.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-us-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-us-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: left;
    color: var(--about-text);
    padding: 20px;
}

.about-us-description {
    font-family: Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 450px;
}

.about-us-title {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 500;
}

/* Footer Navigation Section Styles */
.footer-navigation-section {
    background-color: var(--footer-bg);
    padding: 60px 0;
    /* Adjust padding for visual spacing */
    color: var(--footer-text);
    text-align: center;
}

.footer-title {
    font-family: Arial, sans-serif;
    /* Adjusted to be closer to image */
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-white);
    /* Ensure titles are white */
}

.footer-list {
    list-style: none;
    /* Remove default bullet points */
    padding-left: 0;
    margin-bottom: 30px;
    /* Space between lists and address */
}

.footer-list-item {
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
}

.footer-list-item a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list-item a:hover {
    color: var(--footer-link-hover);
}

.footer-address-title {
    font-family: Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.footer-address-content {
    font-family: Arial, sans-serif;
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-white);
}

/* Menu Carousel Section */
.menu-section {
    background-color: var(--menu-bg);
    padding: 80px 0;
}

.menu-title {
    font-family: 'Georgia', serif;
    color: var(--menu-text);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 60px;
    text-align: center;
}

/* Fixed menu item styles */
.menu-item {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.menu-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.menu-item-name {
    color: var(--menu-text);
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.menu-item-price {
    color: var(--menu-text);
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.menu-item-description {
    color: var(--menu-text);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
    text-align: center;
    font-weight: bold;
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--menu-text);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Gap between columns */
.carousel-item .col-lg-4 {
    display: flex;
    justify-content: center;
}


/* Tiffin Service Section */
.tiffin-section {
    background-color: var(--tiffin-bg);
    padding: 60px 0;
    color: var(--text-white);
}

.tiffin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.tiffin-title {
    color: var(--text-green);
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.2;
}

.tiffin-menu-options {
    display: flex;
    gap: 20px;
    align-items: center;
}

.tiffin-option {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.tiffin-option:hover {
    color: var(--text-green);
}

.tiffin-ad-card {
    background: var(--text-white);
    border-radius: 15px;
    position: relative;
}

.tiffin-pricing-section {
    position: absolute;
    top: 90px;
    right: 44px;
    padding: 20px;
    z-index: 10;
    line-height: 22px;
}

.tiffin-pricing-item {
    margin-bottom: 15px;
    padding: 8px 0;
}

.tiffin-pricing-item:last-of-type {
    margin-bottom: 20px;
}

.tiffin-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #1E3A8A;
}

.tiffin-rate {
    font-size: 1rem;
    font-weight: 600;
    color: #2D5A2D;
}

.other-food-text {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--tiffin-blue);
    border: 2px solid #000;
    padding: 8px 12px;
    border-radius: 4px;
    background: var(--text-white);
}

.tiffin-food-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.ad-content {
    display: flex;
    flex-direction: column;
}


.ghar-jaisa-banner {
    background: var(--tiffin-red);
    color: var(--text-white);
    padding: 8px 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
}

.tiffin-logo {
    color: var(--tiffin-blue);
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.tiffin-pricing {
    background: #E3F2FD;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-item {
    text-align: center;
}

.pricing-title {
    color: var(--tiffin-blue);
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.pricing-amount {
    color: var(--tiffin-green);
    font-size: 0.9rem;
    font-weight: 600;
}

.other-food-box {
    background: var(--text-white);
    border: 2px solid #000;
    color: var(--tiffin-blue);
    padding: 8px 12px;
    border-radius: 4px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
}

.campaign-strip {
    background: #FFD700;
    color: var(--tiffin-green);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.campaign-text {
    font-size: 0.9rem;
    line-height: 1.3;
}

.campaign-highlight {
    background: var(--tiffin-blue);
    color: var(--text-white);
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
}

.phone-strip {
    background: var(--tiffin-red);
    color: var(--text-white);
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.phone-pronunciation {
    font-size: 0.8rem;
    opacity: 0.9;
}

.phone-icon {
    font-size: 1.2rem;
    margin-right: 5px;
}

.tiffin-menu-table {
    background: var(--text-white);
    border-radius: 15px;
    padding: 30px;
    color: var(--tiffin-green);
}

.table-title {
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: var(--tiffin-green);
}

.menu-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid var(--tiffin-green);
}

.menu-table th,
.menu-table td {
    border: 1px solid var(--tiffin-green);
    padding: 12px 8px;
    text-align: left;
    font-size: 0.85rem;
    line-height: 1.3;
}

.menu-table th {
    background-color: var(--tiffin-green);
    color: var(--text-white);
    font-weight: bold;
    text-align: center;
}

.menu-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.tiffin-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    background: var(--text-green);
    color: var(--tiffin-bg);
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--text-white);
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--testimonial-bg);
    padding: 80px 0;
    color: var(--testimonial-text);
}

.testimonial-card {
    background: transparent;
    border: none;
    padding: 0;
}

.testimonial-content {
    min-height: 500px;
    display: flex;
    align-items: center;
}

.testimonial-text {
    padding: 0 40px;
    height: auto;
}

.testimonial-quote {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
    max-width: 80%;
}

.testimonial-title {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--testimonial-text);
}

.testimonial-image {
    height: 500px;
    object-fit: cover;
    border-radius: 0;
    width: 100%;
}

/* Testimonials Carousel Controls */
.testimonials-carousel .carousel-control-prev,
.testimonials-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    z-index: 10;
}

.testimonials-carousel .carousel-control-prev {
    left: -50px;
}

.testimonials-carousel .carousel-control-next {
    right: -50px;
}

.testimonials-carousel .carousel-control-prev:hover,
.testimonials-carousel .carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Food Testimonial Section */
.food-testimonial-section {
    background-image:  url("../img/food_testimonial.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.food-testimonial-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
}

.food-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--tiffin-green);
    padding: 30px 25px;
    border-radius: 8px;
    max-width: 85%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
}

.testimonial-quote-overlay {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 400;
}

.testimonial-source {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
    color: #FFFFFF;
}

/* Food Carousel Section */
.food-carousel {
    background: #FBF0B7;
    padding: 18px 0 0 0;
    margin-bottom: 0;
}
.food-carousel-item {
    width: 210px;
    margin-bottom: 12px;
}
.food-carousel-img {
    width: 210px;
    height: 210px;
    object-fit: cover;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.food-carousel-label {
    margin-top: 10px;
    font-size: 1.25rem;
    color: #222;
    font-family: Arial, sans-serif;
    font-weight: 400;
}
