@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins';
}

html,
body {
    height: 100%;
    width: 100%;
}


.whatsapp-icon {
    position: fixed;
    height: 5vw;
    width: 5vw;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatapp-iconn{
    font-size: 2.7vw;
}

.whatsapp-icon {
    bottom: 20px;
    right: 20px;
}
@media (max-width: 480px) {
    .whatsapp-icon {
        width: 20vw; 
        height: 20vw;
        font-size: 2vw;
        bottom: 2%;
        right: 2%;
        z-index: 2000;
    }
    .whatapp-iconn{
        font-size: 10vw;
    }
}










.main{
    background-color: #EEEEEE;
}
.page1 {
    min-height: 100vh;
    width: 100%;
    padding: 1vw 3vw;
    position: relative;
}

.page1-content {
    width: 100%;
}

.navbar {
    height: 13vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    box-shadow: 0 4px 20px rgba(144, 238, 144, 0.3);
    padding: 0 2vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.navbar-left {
    height: auto;
    width: 22%;
    overflow: hidden;
}

.navbar-left img {
    height: auto;
    width: 8vw;
    object-fit: cover;
    margin-top: 1vw;
}

.navbar-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    margin-right: 2vw;
}

.navbar-right a {
    position: relative;
    text-decoration: none;
    color: black;
    font-size: 1.3vw;
    padding: .4vw;
    transition: color 0.3s ease;
}

.navbar-right a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #ff7043;
    transition: width 0.4s ease;
}

.navbar-right a:hover::after {
    width: 100%;
}

.page1-main-content {
    height: 85vh;
    width: 100%;
    display: flex;
    margin-top: 5vw;
}

.page1-left {
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2vw;

}

.page1-left h2 {
    font-size: 2.5vw;
    line-height: 4vw;
    margin-left: 2vw;
    font-weight: 600;
    color: green;
    letter-spacing: -1.5px;
}

.page1-left p {
    width: 90%;
    font-size: 1vw;
    margin-top: 2vw;
}

.page1-left button {
    background-color: orange;
    padding: 1vw 2vw;
    color: white;
    text-decoration: none;
    border-radius: 1vw;
    margin-top: 3vw;
    border: none;
    cursor: pointer;
}

.page1-left button:hover {
    background-color: #ff6600;
    color: #fff;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.form-popup1 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.form-container1 {
    background: #fff;
    padding: 2vw;
    border-radius: 1vw;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.form-container1 input,
.form-container1 button {
    padding: .5vw;
    font-size: 1vw;
    border: 1px solid #ccc;
    border-radius: 0.5vw;
}

.form-container1 button {
    background-color: #28a745;
    color: #fff;
    cursor: pointer;
    border: none;
}

.close-btn1 {
    position: absolute;
    top: 1vw;
    right: 1vw;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}


.page1-right {
    height: 100%;
    width: 50%;
    padding: 3vw 2vw;
}

.page1-right img{
    height: 55vh;
    width: 100%;
    object-fit: cover;
    border-radius: 1vw;
    margin-top: 3vw;
    padding-right: 2vw;
}


.page2 {
    min-height: 100vh;
    width: 100%;
    padding: 2vw 4vw;
}

.page2-content {
    width: 100%;
}

.page2-main-head h2 {
    font-family: 'sans-serif';
    font-weight: 100;
    font-size: 3vw;
    border-bottom: 2px solid green;
    padding-bottom: .6vw;
    text-align: center;
}

.page2-all-cards {
    margin-bottom: 2vw;
}

.page2-heading {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    margin-top: 3vw;
}

.page2-heading h2 {
    text-align: center;
    font-size: 2vw;
    font-family: 'sans-serif';
    font-weight: 100;
}

.page2-heading span {
    height: 2px;
    width: 10vw;
    background-color: #ff6600;
    display: block;
}

.page2-para {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1vw;
    margin-bottom: 2vw;
}

.page2-para p {
    text-align: center;
    width: 65%;
    font-size: 1.1vw;
    opacity: .7;
}

.page2-card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5vw;
}

.card {
    width: 20vw;
    background: linear-gradient(to bottom, #ffffff, #d7f8e7);
    border-radius: 1vw;
    box-shadow: 4px 8px 30px 6px rgba(0, 0, 0, 0.1);
    padding: 1.7vw 1.1vw;
    position: relative;
    transition: transform 0.3s ease;
}

.card img {
    height: 8vw;
    width: 8vw;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1vw;
    margin-left: 4.5vw;
    transition: transform 0.3s ease-in-out;
}

.card img:hover {
    transform: scale(1.2);
}

.card h3 {
    font-size: 1.2vw;
    color: brown;
    margin: 10px 0 5px;
}
.card .card-span{
    font-size: .7vw;
    font-weight: 500;
}
.card p {
    font-size: .9vw;
    color: #555;
    margin-bottom: 10px;
}

.price-tag {
    background-color: #f3f3f3;
    padding: 0.6vw 1vw;
    border-radius: 0.5vw;
    font-size: .8vw;
    font-weight: 400;
    color: #333;
    margin: 1vw 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.price-tag .tax-note {
    font-size: 0.7vw;
    font-weight: 400;
    color: #888;
}

.order-btn {
    background-color: #ffffff;
    color: rgb(245, 45, 45);
    padding: .4vw 1.3vw;
    border: 1px solid transparent;
    border-radius: 1.5vw;
    font-size: 1.1vw;
    cursor: pointer;
    margin-top: 1vw;
    transition: all 0.3s ease;
    margin-bottom: 1vw;
}

.order-btn:hover {
    background: linear-gradient(to bottom, #fff, #ffd6d6);
    border: 1px solid rgb(236, 56, 56);
}

.card .coming-soon-badge {
    width: 55%;
    background-color: rgb(240, 240, 83);
    color: rgb(0, 0, 0);
    font-size: 0.7vw;
    font-weight: 600;
    padding: 4px 14px;
    text-transform: uppercase;
    border-radius: 5px 0 5px 0;
    box-shadow: 0 4px 10px rgba(255, 82, 82, 0.3);
    animation: pulse 1.5s infinite;
    margin-top: 1vw;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.85;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.form-content {
    background: white;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.form-content input {
    width: 100%;
    margin: 10px 0;
    padding: 0.5vw;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-content button {
    padding: 0.8rem 2rem;
    background: green;
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: red;
}



.page3 {
    min-height: 100vh;
    width: 100%;
    position: relative;
}

.about-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4vw 8vw;
    font-family: 'Poppins', sans-serif;
}

.about-image img {
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    object-fit: cover;
    border: 10px solid #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.about-content {
    width: 55%;
    padding-left: 3vw;
}

.about-content h2 {
    font-size: 3vw;
    color: #333;
    position: relative;
    font-family: 'sans-serif';
    font-weight: 100;
}

.underline-arrow {
    color: #ff3d63;
    margin-left: 0.5vw;
    font-size: 1.5vw;
}

.about-para {
    font-size: 1vw;
    color: #777;
    margin: 1vw 0;
    text-align: justify;
}

.about-content h3 {
    font-size: 1.5vw;
    color: #111;
    margin-bottom: 1vw;
    font-weight: 300;
}
.read-more-btn {
    display: inline-block;
    margin-bottom: 1vw;
    padding: 0.3vw 1.2vw;
    color: rgb(236, 0, 0);
    text-decoration: none;
    font-size: 1vw;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.about-subtext {
    font-size: 1vw;
    color: #777;
    margin-bottom: 2vw;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
    margin-bottom: 2vw;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    font-size: 1vw;
    color: #444;
}

.feature img {
    width: 1.6vw;
    height: 1.6vw;
}

.read-more {
    background-color: #ff3d63;
    color: white;
    padding: 0.6vw 1.2vw;
    border: none;
    border-radius: 1.5vw;
    font-size: 1vw;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #e73356;
    transform: scale(1.05);
}


.page4 {
    min-height: 100vh;
    width: 100%;
}



.page4-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
}

.page4-heading h2 {
    font-size: 3vw;
    margin-bottom: 10px;
    color: #333;
    font-family: 'sans-serif';
    font-weight: 100;

}

.page4-heading span {
    height: 2px;
    width: 10vw;
    background-color: #ff6600;
    display: block;
}

.pricing-section p {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 30px;
    text-align: center;
}

.pricing-cards {
    display: flex;
    justify-content: flex-start;
    gap: 2.5vw;
    flex-wrap: wrap;
    margin-top: 3vw;
    padding-left: 10vw;
}

.pricing-card {
    width: 25vw;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2.3vw 2vw;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card .offer-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #e91e63;
    color: #fff;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 5px 0 5px 0;
}

.pricing-card h3 {
    font-size: 1.7vw;
    font-weight: 500;
    margin-bottom: .7vw;
    text-align: center;
}
.star {
    color: red;
    font-size: 1.2vw;
    vertical-align: super;
    margin-left: 0.2vw;
}

.pricing-card p {
    font-size: 1.1vw;
    color: #555;
    margin-bottom: 20px;
}

.button-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pricing-card button {
    width: 100%;
    background: #e91e63;
    color: white;
    border: none;
    padding: .4vw 1.2vw;
    border-radius: .7vw;
    font-size: 0.9rem;
    cursor: pointer;
}

.pricing-card .whatsapp-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4vw;
    height: 2.2vw;
    background-color: #25D366;
    color: white;
    border-radius: 6px;
    text-decoration: none;
}
.button-row a i{
    font-size: 1.7vw;
}
.plan-list {
    margin-top: 15px;
    text-align: left;
}

.plan-list li {
    list-style: none;
    padding: 5px 0;
    font-size: 1vw;
    font-weight: 400;
}

.plan-list li::before {
    content: "🍽️";
    margin-right: 8px;
}

.price {
    float: right;
    font-weight: 400;
}

/* Popup Form */
.popup-form3 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.form-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.form-content h2 {
    margin-bottom: 15px;
    color: #cc4d00;
}

.form-content input,
.form-content select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.form-content button {
    background-color: #cc4d00;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
}

.close-btn3 {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    color: red;
    cursor: pointer;
}

#errorMsg {
    color: red;
    margin-bottom: 10px;
}

.highlight-partition {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    padding: 2vw;
    background: #EEEEEE;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: 3vw;
}

.price-highlight,
.meals-highlight {
    width: 50%;
}

.price-highlight {
    background-color: #fffef9;
    padding: 1.4vw;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.comparison-table th,
.comparison-table td {
    padding: 0.8rem;
    border: 1px solid #ddd;
    text-align: center;
}

.comparison-table th {
    background-color: #ffe6cc;
    color: #a84200;
    font-weight: 600;
    font-size: 1.3vw;
}

.comparison-table td {
    background-color: #fff;
    font-size: 1.1vw;
}

.highlight-message h3 {
    color: #cc4d00;
    font-size: 1.3vw;
    margin-bottom: 0.5rem;
}

.highlight-message p {
    margin: 0.3rem 0;
    font-size: 1.1vw;
}

.tick-points {
    margin-top: 1rem;
    padding-left: 1rem;
}

.tick-points li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #333;
}



.meal-features {
    width: 95%;
    background-color: #fff8ec;
    padding: 1.8vw 2.8vw;
    border-radius: .6vw;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  
}

.meal-features h3 {
    font-size: 1.7vw;
    color: #e67300;
    margin-bottom: 1.5vw;
}

.meal-features ul {
    list-style: none;

}

.meal-features li {
    font-size: 1vw;
    margin-bottom: 1vw;
    display: flex;
    align-items: center;
    gap: 0.7vw;
    color: #333;
}

.meal-features li span {
    color: green;
    font-weight: bold;
    font-size: 1.2vw;
}




.page5 {
    height: 40vh;
    width: 100%;
}

.tiffin-banner {
    width: 100%;
    background: linear-gradient(135deg, #ff2c6f, #ff8163);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 2vw 3vw;
    gap: 3vw;
}

.text-section {
    display: flex;
    flex-direction: column;
}

.white-brush {
    display: inline-block;
    background: #fff;
    color: #222;
    padding: 1vw 2vw;
    font-size: 2vw;
    font-weight: 500;
    border-radius: 10px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

.highlight {
    color: #ff9900;
}

.discount {
    margin-top: 2vw;
    font-size: 1.3vw;
    font-weight: bold;
}

.bold {
    color: #000;
}

.order-button {
    width: 40%;
    margin-top: 2vw;
    background: #fff;
    color: #f52d2d;
    border: none;
    border-radius: 25px;
    padding: 0.8vw 2vw;
    font-size: 1vw;
    cursor: pointer;
    transition: 0.3s;
}

.order-button:hover {
    background: #f52d2d;
    color: white;
    border: 1px solid white;
}

.image-section {
    text-align: center;
}

.image-section img {
    width: 80%;
}


.page6 {
    min-height: 100vh;
    width: 100%;
}

.why-choose {
    padding: 5vw 8vw;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    text-align: center;
}

.why-choose h2 {
    font-size: 3vw;
    margin-bottom: 1vw;
    font-family: 'sans-serif';
    font-weight: 100;
}

.why-choose .page6-span {
    color: #ff5722;
    font-weight: 400;
}

.intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3vw;
}

.features-container {
    margin-top: 3vw;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2vw;
}

.feature-box {
    width: 16vw;
    background: white;
    padding: 1.4vw;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box img {
    width: 4.5vw;
    height: 4vw;
    margin-bottom: 1vw;
}

.feature-box h3 {
    font-size: 1.1vw;
    color: #ff5722;
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: .8vw;
    color: #666;
}


.page7-testimonials {
  width: 100%;
  background-color: #fafafa;
  padding: 4vw 2vw;
}

.testimonials {
  max-width: 700px;
  margin: auto;
  text-align: center;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
  font-weight: 600;
}

.testimonial-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonial-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  box-sizing: border-box;
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
}

.testimonial-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.profile h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}

.profile span {
  font-size: 0.85rem;
  color: #777;
}
.stars {
  color: #fbc02d;
  font-size: 1.2rem;
  margin-top: 0.8rem;
}

/* Arrows */
.testimonial-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.testimonial-arrow {
  font-size: 2rem;
  color: #aaa;
  padding: 0 1rem;
  cursor: pointer;
  user-select: none;
}

.testimonial-arrow:hover {
  color: #333;
}

/* Dots */
.testimonial-dots {
  margin-top: 1.5rem;
}

.testimonial-dots .dot {
  height: 10px;
  width: 10px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-dots .dot.active {
  background-color: #333;
} 





.page7 {
    min-height: 55vh;
    width: 100%;
    padding: 1vw 2vw;
}

footer {
    width: 100%;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3vw;
    border-bottom: 1px solid red;
    margin-bottom: 2vw;
}

.footer-logo {
    width: 33%;
    margin-bottom: 2vw;
}

.footer-logo img {
    width: 12vw;
}

.footer-logo p {
    font-size: .9vw;
    opacity: .7;
}

.footer-menu {
    width: 30%;
    margin-bottom: 2vw;
}

.footer-menu h3 {
    color: red;
    font-weight: 400;
    margin-bottom: 1vw;
    margin-left: 8vw;
}

.footer-anchor {
    display: flex;
    flex-direction: column;
    gap: .3vw;
    margin-left: 8vw;
}

.footer-anchor a {
    text-decoration: none;
    color: black;
    opacity: .7;
    width: fit-content;
}

.footer-anchor a:hover {
    color: red;
}

.footer-social {
    width: 30%;
}

.footer-social h3 {
    color: red;
    font-weight: 500;
}

.icons {
    display: flex;
    align-items: center;
    gap: 1.6vw;
    margin-top: 1vw;
}
.icons a{
    text-decoration: none;
}

.icons i {
    height: 3.5vw;
    width: 3.5vw;
    font-size: 1.8vw;
    color: red;
    border: 1px solid red;
    padding: .7vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all .3s ease;
}

.icons i:hover {
    border: 1px solid black;
    color: black;
    transform: scale(0.8);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p span {
    color: red;
}





/* responsive design  */

/* page1 responsive */
@media (max-width: 480px) {
    .page1 {
        padding: 4vw 5vw;
        height: auto;
    }

    .navbar {
        width: 100%;
        height: 8vh;
        padding: 1vw 3vw;
        gap: 2vw;
    }

    .navbar-left {
        width: 25vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbar-left img {
        width: 17vw;
        height: auto;
    }

    .navbar-right {
        justify-content: center;
        gap: 3vw;
    }

    .navbar-right a {
        font-size: 2.7vw;
    }
    .home-btn{
        display: none;
    }
    .page1-main-content {
        flex-direction: column;
        height: auto;
    }

    .page1-left,
    .page1-right {
        width: 100%;
        padding: 4vw 2vw;
        text-align: center;
    }

    .page1-left h2 {
        font-size: 9vw;
        margin-top: 7vw;
        line-height: 10vw;
    }

    .page1-left p {
        font-size: 3.5vw;
        width: 100%;
        margin-top: 4vw;
    }

    .page1-left button {
        font-size: 4vw;
        padding: 2vw 4vw;
        border-radius: 2vw;
        margin-top: 4vw;
    }
    
    .page1-right {
        padding: 5vw 4vw;
    }
    
    .page1-right img{
        height: auto;
        border-radius: 2vw;
    }
    
    .form-container1 {
        width: 90%;
        padding: 5vw;
        gap: 3vw;
        border-radius: 4vw;
    }

    .form-container1 input,
    .form-container1 button {
        padding: 3.5vw;
        font-size: 4vw;
        border-radius: 2vw;
    }

    .close-btn1 {
        top: 3vw;
        right: 3vw;
        font-size: 6vw;
    }
}


/* page2 responsive  */
@media (max-width: 480px) {
    .page2 {
        padding: 4vw 5vw;
    }

    .page2-main-head h2 {
        font-size: 7vw;
        padding-bottom: 2vw;
    }

    .page2-heading {
        gap: 1vw;
        margin-top: 12vw;
    }

    .page2-heading h2 {
        font-size: 5vw;
    }

    .page2-heading span {
        width: 20vw;
        height: 2px;
    }

    .page2-para p {
        width: 100%;
        font-size: 3vw;
        margin: 3vw 0;
    }

    .page2-card-container {
        flex-direction: column;
        align-items: center;
        gap: 5vw;
    }

    .card {
        width: 100%;
        height: 60vh;
        padding: 5vw;
        border-radius: 2vw;
    }

    .card img {
        height: 30vw;
        width: 30vw;
    }

    .card h3 {
        font-size: 5vw;
        margin: 3vw 0 1vw;
    }

    .card p {
        font-size: 4vw;
    }
    
    .price-tag {
        font-size: 3vw;
        padding: 2vw 3vw;
        border-radius: 2vw;
        margin-bottom: 2vw;
    }

    .price-tag .tax-note {
        font-size: 2.5vw;
    }

    .order-btn {
        font-size: 4vw;
        padding: 2vw 5vw;
        border-radius: 3vw;
    }

    .card .coming-soon-badge {
        font-size: 3vw;
        padding: 5px 10px;
        border-radius: 4px;
        margin-top: 5vw;
        text-align: center;
    }

    .form-content {
        width: 90%;
        padding: 5vw;
    }

    .form-content input {
        font-size: 4vw;
        padding: 3vw;
    }

    .form-content button {
        font-size: 4vw;
        padding: 3vw 5vw;
    }

    .close-btn {
        font-size: 6vw;
        top: 10px;
        right: 15px;
    }
}


/* page3 responsive  */
@media (max-width: 480px) {
    .page3 {
        height: auto;
        padding: 5vw 4vw;
    }

    .about-section {
        flex-direction: column;
        padding: 6vw 5vw;
        text-align: center;
    }

    .about-image img {
        width: 60vw;
        height: 60vw;
        margin-bottom: 5vw;
    }

    .about-content {
        width: 100%;
        padding-left: 0;
    }

    .about-content h2 {
        font-size: 7vw;
    }

    .underline-arrow {
        font-size: 4vw;
    }

    .about-para {
        font-size: 3.5vw;
        text-align: justify;
        margin: 4vw 0;
    }

    .about-content h3 {
        font-size: 5vw;
        margin-bottom: 3vw;
    }
    .read-more-btn {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    .about-subtext {
        font-size: 3.5vw;
        margin-bottom: 4vw;
    }

    .features {
        flex-direction: column;
        align-items: flex-start;
        gap: 3vw;
        margin-bottom: 4vw;
    }

    .feature {
        font-size: 3.5vw;
        gap: 2vw;
    }

    .feature img {
        width: 5vw;
        height: 5vw;
    }

    .read-more {
        font-size: 3.5vw;
        padding: 2.5vw 5vw;
        border-radius: 6vw;
    }
}


/* page4 responsive  */
@media (max-width: 480px) {
    .page4 {
        height: auto;
        padding: 6vw 4vw;
    }

    .page4-heading {
        gap: 1vw;
    }

    .page4-heading h2 {
        font-size: 6vw;
    }

    .page4-heading span {
        width: 20vw;
    }

    .pricing-section p {
        font-size: 3.5vw;
        margin-bottom: 5vw;
        padding: 0 3vw;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
        gap: 6vw;
        margin-top: 15vw;
        padding-left: 0;
    }

    .pricing-card {
        width: 85vw;
        padding: 6vw 5vw;
    }

    .pricing-card h3 {
        font-size: 6vw;
    }
    .star{
        font-size: 4vw;
    }
    .pricing-card p {
        font-size: 3.5vw;
        margin-bottom: 4vw;
    }

    .pricing-card button {
        padding: 2vw 0;
        font-size: 3.5vw;
        border-radius: 4vw;
    }
    
    .pricing-card .whatsapp-icon-btn {
        width: 10vw;
        height: 8vw;
    }

    .button-row a i {
        font-size: 4.5vw;
    }
    .plan-list {
        margin-top: 4vw;
    }

    .plan-list li {
        font-size: 3.5vw;
        padding: 3vw 0;
       
    }

    .pricing-card .offer-badge {
        font-size: 3vw;
        padding: 1vw 2.5vw;
        top: -4vw;
        left: -4vw;
    }

    .price {
        float: right;
        display: block;
        margin-top: 1vw;
        font-size: 3.8vw;
    }
    .form-content {
    width: 90%;
    padding: 15px;
  }

  .form-content h2 {
    font-size: 1.2rem;
    text-align: center;
  }

  .form-content input,
  .form-content select,
  .form-content button {
    font-size: 0.95rem;
    padding: 8px;
  }

  .close-btn3 {
    top: 8px;
    right: 10px;
    font-size: 18px;
  }

  .highlight-partition {
        width: 105%;
        flex-direction: column;
        gap: 4vw;
        margin-right: 5vw;
    }

    .price-highlight,
    .meals-highlight {
        width: 105%;
    }

    .comparison-table th {
        font-size: 4vw;
    }

    .comparison-table td {
        font-size: 3.6vw;
    }

    .highlight-message h3 {
        font-size: 4.2vw;
        text-align: center;
    }

    .highlight-message p {
        font-size: 3.5vw;
        text-align: center;
    }

    .meal-features {
        width: 100%;
        padding: 4vw;
    }

    .meal-features h3 {
        font-size: 4.5vw;
    }

    .meal-features li {
        font-size: 3.5vw;
        gap: 2vw;
        align-items: flex-start;
        line-height: 1.4;
        
    }

    .meal-features li span {
        font-size: 4vw;
    }
}


/* page5 responsive  */
@media (max-width: 480px) {
    .page5 {
        height: auto;
        padding: 6vw 4vw;
    }

    .tiffin-banner {
        flex-direction: column;
        text-align: center;
        padding: 6vw 4vw;
        gap: 5vw;
    }

    .white-brush {
        font-size: 6vw;
        padding: 3vw 5vw;
        border-radius: 6vw;
    }

    .discount {
        margin-top: 3vw;
        font-size: 4vw;
    }

    .order-button {
        width: 70%;
        font-size: 4vw;
        padding: 3vw 5vw;
        margin: 4vw auto 0;
        border-radius: 10vw;
    }

    .image-section img {
        width: 90%;
    }

    .text-section {
        align-items: center;
    }
}


/* page6 responsive  */
@media screen and (max-width: 480px) {
    .why-choose {
        padding: 10vw 5vw;
    }

    .why-choose h2 {
        font-size: 7vw;
        margin-bottom: 4vw;
    }

    .intro {
        font-size: 1rem;
        margin-bottom: 5vw;
    }

    .features-container {
        flex-direction: column;
        align-items: center;
        gap: 5vw;
    }

    .feature-box {
        width: 80vw;
        padding: 5vw;
    }

    .feature-box img {
        width: 10vw;
        height: 10vw;
        margin-bottom: 3vw;
    }

    .feature-box h3 {
        font-size: 4.5vw;
        margin-bottom: 2vw;
    }

    .feature-box p {
        font-size: 3.5vw;
    }
}



/* .page7-testimonials responsive */
@media (max-width: 480px) {
    .page7-testimonials {
        height: auto;
        padding: 5vw 0;
    }

    .testimonials {
        padding: 5vw 4vw;
    }

    .testimonials h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .testimonial-wrapper {
        overflow-x: auto;
    }

    
}







/* page7 responsive  */
@media screen and (max-width: 480px) {
    .page7 {
        padding: 4vw 5vw;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 5vw;
        margin-top: 5vw;
        margin-bottom: 5vw;
    }

    .footer-logo,
    .footer-menu,
    .footer-social {
        width: 100%;
        margin-bottom: 2vw;
    }

    .footer-logo img {
        width: 30vw;
    }

    .footer-logo p {
        font-size: 3.5vw;
    }

    .footer-menu h3 {
        font-size: 4.5vw;
        margin-left: 0;
    }

    .footer-anchor {
        margin-left: 0;
        gap: 2vw;
    }

    .footer-anchor a {
        font-size: 3.8vw;
    }

    .footer-social h3 {
        font-size: 4.5vw;
        margin-bottom: 2vw;
    }

    .icons {
        gap: 4vw;
        margin-top: 2vw;
    }

    .icons i {
        height: 12vw;
        width: 12vw;
        font-size: 6vw;
        padding: 2vw;
    }

    .footer-bottom p {
        font-size: 3.5vw;
        padding-bottom: 4vw;
    }
}