* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fafafa;
}

section {
    padding: 50px 0px;
}

a {
    text-decoration: none !important;
}

/* ================= HEADER ================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: linear-gradient(90deg, #8b0000, #c41e3a);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
    background: transparent;
    z-index: 999;
}

/* Scroll Active Class */
#mainHeader.scrolled {
    background-color: #FFF3F4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Change text color after scroll */
#mainHeader.scrolled .logo,
#mainHeader.scrolled nav a {
    color: #222;
}

.rating-box{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top: 15px;
    border-radius:12px;
    font-family:Arial, sans-serif;
    font-size:16px;
    color:#5a4b43;
}

/* Stars */
.star{
    color:#f6a21a;
    font-size:18px;
}

/* Rating text */
.rating-text{
    font-weight:500;
}

/* Divider */
.divider{
    margin:0 6px;
    color:#c9bfb8;
}

/* Devotees */
.devotees{
    color:#7a6c64;
}

.content {
    height: 1500px;
    background: #ff0000;
}

.why-section{
    background: #f8f3ef;
    background-image: url(../images/plan-bg.jpg); /* optional */
    background-position: center;
    background-size: cover;
}



.why-subtitle{
    color: #7a5c4d;
    font-size: 18px;
}

.why-card{
    background: #fff;
   padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
}

.why-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.why-icon{
    height: 111px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.why-card h5{
    font-weight: 600;
    color: #4a2e1e;
    margin-bottom: 10px;
}

.why-card p{
    color: #7a6c64;
    font-size: 15px;
    margin-bottom: 0px;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    transition: 0.3s ease;
}

.logo {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin-bottom: 0px;
}

.nav-menu a {
    text-decoration: none;
    color: #6b3e00;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #ffd700;
    transition: 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.download-btn {
   padding: 10px 20px 15px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 12px;

    background: linear-gradient(to bottom, #f39a52, #c65a12);

    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.35),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15),
        0 4px 6px rgba(0, 0, 0, 0.15);

    transition: all 0.25s ease;
}

/* Hover */
.download-btn:hover {
    background: linear-gradient(to bottom, #f7a964, #d96a20);
    transform: translateY(-1px);
}

/* Click */
.download-btn:active {
    transform: scale(0.97);
    box-shadow:
        inset 0 3px 6px rgba(0, 0, 0, 0.25);
}

/* =============== MOBILE MENU =============== */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #6b3e00;
    border-radius: 2px;
    transition: 0.3s;
}
.Sanatan{
    font-size: 3rem;
    font-weight: 700;
    color: rgb(107, 62, 0);
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #FFF3F4;
    padding: 80px 15px;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 22px;
    z-index: 998;
}

.mobile-menu a {
    color: #6b3e00;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 20px;
    border-bottom: 1px solid #6b3e00;
}

.mobile-menu.active {
    right: 0;
}

/* =============== RESPONSIVE =============== */

@media (max-width: 900px) {

    .nav-menu,
    .call-btn {
        display: none;
    }

    .hamburger {
        display: flex;
        padding-left: 6px;
    }
}

/* Demo Content */

.content {
    padding-top: 110px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

/* ===== HERO ===== */
.hero {
    background-image: url(../images/main-bg.jpg);
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}


.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #6b3e00
}


.hero p {
    font-size: 18px;
    color: #6b3e00
}




/* ===== MENU CARDS ===== */
.menu-card img {
    border-radius: 12px;
}




/* ===== PRODUCT CARDS ===== */
.product-card {
    background: #fff;
    border-radius: 14px;
    padding: 15px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}


.product-card:hover {
    transform: translateY(-6px);
}


.price {
    font-size: 22px;
    font-weight: 700;
    color: #7a1c12;
}


/* ===== FOOTER ICON ROW ===== */
.features {
    background: #efe3d7;
    padding: 40px 0;
    text-align: center;
}


.feature-item {
    font-weight: 600;
    color: #7a1c12;
}


/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .mobile-menu {
        padding: 102px 37px !important;
    }

    .nav-links {
        text-align: center;
        margin-top: 10px;
    }
}

.menu-section {
    background-color: #FBF0ED;
}





.menu-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    width: 60%;
    transform: translateX(-50%);
    background: linear-gradient(#f6b44b, #e8962e);
    color: #5a2500;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 16px;
    border: none;
    box-shadow: 0 4px 0 #b86a14;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.2s;
}


.menu-btn span {
    margin-left: 6px;
    font-weight: 900;
}



.Freshly {
    font-weight: bold;
    color: #6b3e00;
}

/* Card */
.card {
    width: 100%;
    background: #f7eadc;
    border: none !important;
    box-shadow: none !important;
    height: 100% !important;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Image */
.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}




/* Extras */
.extras {
    font-size: 13px;
    color: #5a3b2e;
    text-align: right;
}

.extras p {
    margin-bottom: 4px;
    font-size: 0.9rem;
}






/* Heading Style */
.meal-plan {
    color: #6b1f0f;
    /* deep brown-red */
    font-size: 2.3rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 1.6rem;
    letter-spacing: 0.5px;
}

/* Tablet */
@media (max-width: 768px) {
    .meal-plan {
        font-size: 2.3rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .meal-plan {
        font-size: 1.5rem;
    }

    .meal-plan h1 {
        font-size: 20px;
        line-height: 1.3;
    }
}


.slick-slide {
    margin: 0 5px;
}


.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.slick-slide img {
    display: block;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loding .slick-slide {
    visibility: hidden;
}

.slider {
    position: relative;
}


.slider .prevArrow {
    position: absolute;
    top: 40%;
    left: -5%;
    color: #8b0000;
    cursor: pointer;
    font-size: 2rem;
}

.slider .nextArrow {
    position: absolute;
    top: 40%;
    right: -5%;
    color: #8b0000;
    cursor: pointer;
    font-size: 2rem;
}


@media only screen and (max-width: 1024px) {
    .slider .nextArrow {
        right: 43%;
    }

    .slider .prevArrow {
        left: 43%;
    }
}


@media only screen and (max-width: 768px) {
    .slider .nextArrow {
        right: 42%;
        top: 105% !important;
    }

    .slider .prevArrow {
        left: 42%;
        top: 105% !important;
    }

    .logo a {
        display: block !important;
    }

    #elctrnic {
        width: 100%;
    }
}
.google-play img{
    width: 200px;
}

@media only screen and (max-width: 425px) {
    .slider .nextArrow {
        right: 35%;
    }
    .Sanatan{
    font-size: 2rem !important;
    font-weight: 700;
    color: rgb(107, 62, 0);
}
    .seva-title{
    font-size: 2rem !important;
    font-weight:600;
    color:#4a2e1e;
}
    .mobile-menu {
        padding: 115px 14px !important;
    }

    .slider .prevArrow {
        left: 35%;
    }

    h2 {
        font-size: 60px;
    }
}

.feature-item img {
    height: 95px;
    margin-bottom: 8px;
}

.features-strip {
    background-color: #F5E9DD;
}



/* Logo */
.footer-logo {
    width: 170px;
}

.brand-name {
    color: #5a1f12;
    font-weight: 700;
    margin-top: 10px;
}



/* Responsive */
@media (max-width: 768px) {
    .brand-name {
        font-size: 18px;
    }
}

/* Section background */
.features {
    background: #f3e6d8;
    padding: 60px 0;
}

/* Column divider (desktop only) */
.feature-col {
    padding: 20px 30px;
    position: relative;
}

@media (min-width: 768px) {
    .feature-col:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: #e2d3c3;
    }
}

/* Images */
.feature-img {
    max-width: 100%;
    margin-bottom: 15px;
}

/* Title */
.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #5a1f12;
    margin-bottom: 8px;
}

/* Text */
.feature-text {
    color: #6b4a3a;
    font-size: 16px;
    margin: 0;
}

/* Check colors */
.check-green {
    color: #2e7d32;
    margin-right: 6px;
}

.check-orange {
    color: #d97706;
    margin-right: 6px;
}

/* Mobile spacing */
@media (max-width: 767px) {
    .features {
        padding: 40px 0;
    }

}

.slick-dots {
    display: flex;
    justify-content: center;

    margin: 0;
    padding: 1rem 0;

    list-style-type: none;

    li {
        margin: 0 0.25rem;
    }

    button {
        display: block;
        width: 1rem;
        height: 1rem;
        padding: 0;

        border: none;
        border-radius: 100%;
        border: 1px solid #7a2d13;
        background-color: transparent;
        text-indent: -9999px;
    }

    li.slick-active button {
        background-color: #7a2d13;
    }

}
.testimonial-card {
    background: #f7eadc;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid #e2d3c3;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.tithi-bg{
    background-image: url(../images/main-bg.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.feature-list{
    list-style:none;
    padding:0;
    margin:0;
    font-family:Arial, sans-serif;
}

.feature-list li{
    position:relative;
    padding-left:35px;
    margin-bottom:18px;
    font-size:22px;
    color:#4a2e1e;
}

/* Custom Check Icon */
.feature-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:0;
    color:#e67e22;
    font-size:20px;
}
.suvichar-section{
    background:#f8f3ef;
    background-image:url(../images/plan-bg.jpg); /* optional */
    background-size:cover;
}


.suvichar-subtitle{
    font-size:18px;
    color:#7a5c4d;
}

.suvichar-box{
    position:relative;
    max-width:700px;
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.suvichar-text{
    font-size:26px;
    color:#4a2e1e;
    line-height:1.6;
    margin:0;
}

/* WhatsApp Button */
.whatsapp-btn{
    position:absolute;
    right:20px;
    bottom:20px;
    background:#25D366;
    padding:12px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.whatsapp-btn img{
    width:28px;
}

/* Avatar */
.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

/* Name */
.testimonial-header h3 {
    font-size: 20px;
    color: #5a1f12;
    margin-bottom: 4px;
}

/* Stars */
.stars {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 2px;
}

/* Quote text */
.testimonial-text {
    font-size: 17px;
    color: #5a1f12;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 480px) {
    .testimonial-card {
        padding: 18px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .avatar {
        width: 48px;
        height: 48px;
    }
}


.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #8b0000, #c41e3a);
    background-color: black;
}

.btns-close {
    background-color: transparent;
    color: white;
    border: none;
}

.mrp-price .price {
    text-decoration: line-through;
    font-size: 1.2rem;
}

.qty-wrapper {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 215, 150, 0.6);
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(90deg, #8b0000, #c41e3a);
}

.qty-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    color: #ffcc80;
    font-size: 22px;
    cursor: pointer;
    transition: 0.2s;
}

.qty-btn:hover {
    background: rgba(255, 215, 150, 0.15);
}

#qty {
    width: 50px;
    height: 42px;
    text-align: center;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 16px;
}

.cart-img img {
    height: 120px;
    object-fit: cover;
}

.cart-image {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 20px;
    display: block;
}

.cart-card h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.cart-card p {
    font-size: 14px;
    color: black;
    text-align: center;
    margin-bottom: 22px;
    line-height: 1.4;
}


.pay-icons {
    height: 2rem;
}

.btn:hover {
    background-color: transparent !important;
    color: white !important;
}

.top-bar {
    background: #ffb3a7;
    font-size: 14px;
    text-align: center;
    padding: 6px 0px 6px 17px;
    font-weight: 600;
}

.checkout-box {
    background: #fff;
    border-radius: 16px;
    margin: 12px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


.order-summary {
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: black;
}

.save-box {
    background: #dff9ea;
    color: #099268;
    padding: 8px;
    border-radius: 8px;
    font-size: 14px;
    margin: 10px 0;
    text-align: center;
}

.coupon-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.coupon-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
}

.coupon-btn {
    color: #007bff;
    font-weight: 600;
    background: none;
    border: none;
}

.unlock {
    font-size: 14px;
    color: #777;
    text-align: center;
    margin-top: 6px;
}

.phone-box {
    margin-top: 3px;
    font-size: 1rem;
}

.phone-box input {
    border-radius: 10px;
    height: 48px;
    font-size: 14px;
}

.bottom-icons {
    display: flex;
    justify-content: space-around;
    font-size: 11px;
    color: #777;
    margin-top: 25px;
}

.footer-text {
    font-size: 1.1rem;
    text-align: left;
    margin-top: 12px;
    color: #ffffff;
}

#coupons {
    background-color: transparent;
    text-align: left;
    padding: 0px;
    color: black;
}

.btn-close {
    color: white !important;
}

.total {
    font-size: 1rem;
}

.otp-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.otp-sub {
    font-size: 14px;
    color: #333;
}

.otp-sub span {
    font-weight: 600;
}

.otp-inputs {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}

.otp-inputs input {
    width: 60px;
    height: 55px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    outline: none;
    transition: .2s;
}

.otp-inputs input:focus {
    border-color: #000;
}

.resend {
    font-size: 13px;
    color: #666;
}

.resend span {
    color: #000;
    font-weight: 600;
}

.form-check {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}

@media(max-width:420px) {
    .otp-inputs input {
        width: 50px;
        height: 50px;
    }
}

.phone-bar {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 21px auto;
}

.phone-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.phone-icon {
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.edit-btn {
    border: 1px solid #ccc;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.edit-btn:hover {
    background: #f7f7f7;
}

.modal-input {
    height: 46px;
    border-radius: 8px;
}


.delivery-card {
    margin: 25px auto;
}

.delivery-head {
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.change-btn {
    font-size: 14px;
    color: #777;
    cursor: pointer;
}

.change-btn:hover {
    color: #000;
}

.address-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 6px;
}

.address-text {
    font-size: 14px;
    color: #333;
}

.phone {
    font-size: 14px;
    color: #777;
    margin-top: 4px;
}

.delivery-footer {
    margin-top: 12px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.delivery-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.free {
    color: #0aa25f;
    font-size: 13px;
    font-weight: 700;
    margin-left: 24px;
}

.modal-input {
    height: 46px;
    border-radius: 8px;
}

/* Wrapper */
.payment-wrap {
    max-width: 420px;
    margin: 6px auto;
    padding: 6px;
    background: #000;
    border-radius: 14px;
    display: flex;
    gap: 6px;
}

.save {
    color: #0aa25f;
    font-size: 13px;
    font-weight: 700;
}

/* Button */
.pay-btn {
    flex: 1;
    border: none;
    border-radius: 12px;
    background: #000;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 0;
    transition: .25s;
    text-align: center;
}

/* Active */
.pay-btn.active {
    background: #fff;
    color: #000;
}

/* Hover */
.pay-btn:hover {
    opacity: .85;
}

.payment-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footers-text {
    font-size: 0.9rem;
    text-align: center;
    color: black;
}

.promo-input {
    border: none;
    outline: none;
    padding: 12px 14px;
    flex: 1;
    font-size: 15px;
    color: #133843;
}

.promo-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #E0E0E0;
    overflow: hidden;
    width: 100%;
}

.promo-btn {
    border: none;
    padding: 0 22px;
    height: 44px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(180deg, #FFD978, #F4B400);
    border-radius: 0 14px 14px 0;
    cursor: pointer;
}


.coupon-card {
    background: #f2fbfa;
    border: 2px dashed #1b8f8b;
    border-radius: 14px;
    padding: 16px 18px;
    transition: 0.3s;
}

.coupon-card:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.coupon-info h6 {
    font-weight: 700;
    color: #0a3f3f;
    margin-bottom: 4px;
}

.coupon-info p {
    font-size: 14px;
    margin-bottom: 4px;
    color: #333;
}

.coupon-info small {
    color: #777;
}

/* Apply Button */
.apply-btn {
    background: linear-gradient(180deg, #ffd978, #f4b400);
    color: #000;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 20px;
    border: none;
}

.apply-btn:hover {
    background: linear-gradient(180deg, #f4b400, #ffd978);
}

.user {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 1.3rem;
}

.right-panel {
    flex: 1;
    background: #000000;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-panel h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.label {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ffffff;
}

.terms {
    font-size: 12px;
    color: #bbb;
    margin-top: 15px;
    line-height: 1.5;
}

.trouble {
    margin-top: 15px;
    font-size: 13px;
}


/* TAB BAR CONTAINER */
.tab-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.tab-wrapper::-webkit-scrollbar {
    display: none;
}


.tabs {
    display: inline-flex;
    gap: 10px;
}

.tab-btn {
    border: none;
    background: #e7d9cc;
    color: #5a2d0c;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.tab-btn.active {
    background: linear-gradient(#C63B16, #8F1E0A);
    color: #F7D36A;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* TAB CONTENT */
.tab-content {
    display: none;
    margin-top: 20px;
}

.tab-content.active {
    display: block;
}


/* GRID */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}



.title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.desc {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}







/* MOBILE */
@media (max-width: 500px) {
    .tab-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .card img {
        height: 130px;
    }
}

/* Main Container */
.food-box {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Image */
.food-img {
    width: 100%;
    height: 237px;
    object-fit: cover;
}

/* Content */
.food-content {
    padding: 18px;
}

.food-title {
    font-size: 1.3rem;
    color: #4b2e1e;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Description + Price row */
.food-info {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #d6cfc7;
    padding-top: 10px;
}

.food-desc {
    font-size: 1.1rem;
    color: #6b5a4d;
    font-weight: 600;
}

.food-price {
    font-size: 20px;
    font-weight: bold;
    color: #2e7d32;
}

.logo img {
    height: 80px;
    width: 100px;
    object-fit: cover;
}

.store-box {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #8F1E0A;
    padding: 18px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.store-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
}

.store-title img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.view-store {
    color: #8F1E0A;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.store-info {
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-info i {
    color: #555;
    font-size: 16px;
}

#Catering {
    background-image: url(../images/Catering-bg.jpg);
    background-position: center;
    background-size: cover;
}

.feature-bar {
    background: #f5e8df;
    padding: 15px 10px;
    font-weight: 600;
    font-size: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 5px 15px;
    white-space: nowrap;
}

.feature-item i {
    color: #2e7d32;
    font-size: 22px;
}

.divider {
    color: #bcaea4;
    font-weight: 400;
}

@media (max-width: 768px) {
    .feature-bar {
        font-size: 16px;
    }
}

.package-card {
    background: #f7eee7;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-6px);
}

.package-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.package-body {
    padding: 20px;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a2c2a;
}

.price-badge {
    color: #3b7d2c;
    font-weight: 700;
    font-size: 22px;
}

.package-body ul {
    padding-left: 33px;
    margin-top: 15px;
    color: #4a2c2a;
    font-size: 18px;
}

.package-body ul li {
    margin-bottom: 6px;
}

.price-box {
    background: linear-gradient(135deg, #b85c23, #8c3c0f);
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-top: 15px;
}

.price-box small {
    font-size: 16px;
    font-weight: 400;
}

.starting-text {
    font-size: 18px;
    color: #4a2c2a;
    margin-top: 10px;
}

@media(max-width:768px) {
    .package-title {
        font-size: 1.4rem;
    }

    .package-body ul {
        font-size: 16px;
    }
}



.service-item {
    text-align: center;
    padding: 20px 15px;
    position: relative;
}

.service-item i {
    font-size: 48px;
    color: #7a3e1d;
    margin-bottom: 12px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #4a2c2a;
}

.dividers {
    border-right: 1px solid #d8c2b5;
}

@media(max-width:768px) {
    .divider {
        border-right: none;
        border-bottom: 1px solid #d8c2b5;
    }
}

.service-item img {
    height: 150px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 10px;
}

/* Custom Search Modal Style */
.search-modal .modal-content {
    background: #111;
    height: 100vh;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-input {
    width: 60%;
    padding: 20px;
    font-size: 24px;
    border-radius: 50px;
    border: none;
    outline: none;
}

.btn-close-white {
    position: absolute;
    top: 30px;
    right: 40px;
    filter: invert(1);
}

@media (max-width: 768px) {
    .search-input {
        width: 90%;
        font-size: 18px;
    }
}

.contact-section {
    background: #fff8e1;
}

.contact-info {
    background: #ffffff;
    border-radius: 10px;
}


.seva-section{
    background:#f8f3ef;
    background-image:url(../images/plan-bg.jpg); /* optional */
    background-size:cover;
}

.seva-title{
    font-size: 2.5rem;
    font-weight:600;
    color:#4a2e1e;
}

.seva-subtitle{
    font-size:18px;
    color:#7a5c4d;
}

.seva-card{
    position: relative;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    transition:0.3s;
}

.seva-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: 0.4s ease;
    z-index: -1;
}

.seva-card:hover::before {
    transform: scaleY(1);
}

.seva-card:hover {
    color: #fff;
}



.seva-img{
    height:220px;
    object-fit:cover;
    width:100%;
}

.seva-body{
    padding:20px;
}

.seva-body h5{
    color:#4a2e1e;
    margin-bottom:15px;
}

.seva-btn{
    display:inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    padding:10px 22px;
    background:linear-gradient(to bottom,#f39a52,#c65a12);
    color:#fff;
    border-radius:10px;
    text-decoration:none;
    transition:0.25s;
}

.seva-btn:hover{
    background:linear-gradient(to bottom,#f7a964,#d96a20);
}

.main-footer{
    background-image:url(../images/footer-bg.jpg); /* optional */
    background-position: center;
    background-size:cover;
    color:#fff;
}

.main-footer h5{
    font-size:22px;
    margin-bottom:15px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    text-decoration:none;
    color:#f5e9df;
    transition:0.3s;
}

.footer-links a:hover{
    color:#ffb37b;
}

.social-icons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    background:#ffffff;
    border-radius:50%;
    margin:0 6px;
    color:#5a2b16;
    font-size:16px;
    transition:0.3s;
}

.social-icons a:hover{
    background:#ff7a1a;
}

.copyright{
    color:#f5e9df;
    font-size:14px;
}

.tempel img{
    border-radius: 20px;
}


/* Section */
.sanskriti-section {
  background: linear-gradient(135deg,#f4e3d6,#efd2bd);
}

/* Title */
.section-title {
  font-size: 36px;
  font-weight: 600;
  color: #5a3b2e;
}

/* Card */
.offer-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Icon */
.icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg,#f6c99e,#e9a77b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  border-radius: 15px;
  font-size: 28px;
}

/* Text */
.offer-card h4 {
  color: #6b3f2c;
  font-weight: 600;
}

.offer-card p {
  color: #7a5c4a;
  font-size: 15px;
  line-height: 1.6;
}

/* Mobile */
@media(max-width:768px){
  .section-title{
    font-size:28px;
  }
  .offer-card{
    padding:30px 20px;
  }
}

/* Section Background */
.features-section{
    background: url('your-bg-texture.png') center/cover no-repeat;
    padding: 60px 0;
}

/* Feature Card */
.feature-card{
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.feature-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

/* Icon Style */
.feature-icon{
    font-size: 40px;
    color: #d97706;
    margin-bottom: 15px;
}

.feature-title{
    font-weight: 500;
    font-size: 18px;
    color: #5b3924;
}

@media(max-width:576px){
    .feature-card{
        padding: 20px;
    }
}

.feature-icon img{
    height: 100px;
    border-radius: 20px;
}

.contact-card {
    width: 100%;
    background: #f8e8df;
    padding: 30px 25px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-card h2 {
    font-size: 28px;
    color: #6a3d2e;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    background: #f3ded2;
    padding: 15px;
    border-radius: 18px;
    margin-bottom: 18px;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.04);
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-right: 15px;
}

.icon.email { background: #e67e22; }
.icon.whatsapp { background: #25D366; }
.icon.location { background: #d35400; }
.icon.time { background: #b9770e; }

.contents h4 {
    margin: 0;
    font-size: 16px;
    color: #5b3428;
    font-weight: 600;
}

.contents p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #7a5a4e;
}



/* Card Container */
.contact-wrapper {
   
    padding: 30px 25px;
    border-radius: 25px;
    background: #f6e5dc;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

/* Subtle Mandala Corner Effect */
.contact-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, rgba(0,0,0,0.04), transparent 70%);
    border-top-right-radius: 25px;
}

/* Heading */
.contact-wrapper h2 {
    font-size: 28px;
    color: #6b3f2c;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Inputs */
form input,
form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 15px;
    border-radius: 18px;
    border: none;
    background: #f2ddd2;
    font-size: 15px;
    color: #5b3428;
    outline: none;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.04);
}

/* Textarea */
form textarea {
    height: 110px;
    resize: none;
}

/* Button */
form button {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    border: none;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(180deg, #e67e22, #c65d0e);
    box-shadow: 0 8px 15px rgba(198,93,14,0.3);
    transition: 0.3s ease;
}

/* Button Hover */
form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(198,93,14,0.35);
}

/* Responsive */
@media (max-width: 420px) {
    .contact-wrapper {
        width: 90%;
    }
}

/* Section Background */
.connect-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #e6cfc2, #f4ddd2);
    position: relative;
}

/* Subtle Mandala Effect */
.connect-section::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at bottom right, rgba(0,0,0,0.05), transparent 70%);
}

/* Heading */
.connect-section h2 {
    font-size: 32px;
    color: #6b3f2c;
    margin-bottom: 35px;
    font-weight: 600;
}

/* Social Icons Container */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #f6e5dc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #d2691e;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* Hover Effect */
.icon-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 25px rgba(0,0,0,0.15);
    background: linear-gradient(180deg, #e67e22, #c65d0e);
    color: #fff;
}

/* Responsive */
@media (max-width: 500px) {
    .icon-box {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .connect-section h2 {
        font-size: 26px;
    }
}

/* Section Styling */
.cta-section {
    padding: 70px 20px;
    text-align: center;
    background-image: url(../images/plan-bg.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

/* Subtle Mandala Corner Effect */
.cta-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at top left, rgba(0,0,0,0.05), transparent 70%);
}

/* Heading */
.cta-content h2 {
    font-size: 28px;
    color: #6b3f2c;
    margin-bottom: 35px;
    font-weight: 500;
}

/* Button */
.cta-btn {
    display: inline-block;
    padding: 16px 45px;
    border-radius: 40px;
    font-size: 20px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(180deg, #e67e22, #c65d0e);
    box-shadow: 0 10px 20px rgba(198,93,14,0.35);
    transition: all 0.3s ease;
}

/* Hover */
.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(198,93,14,0.45);
}

/* Responsive */
@media (max-width: 500px) {
    .cta-content h2 {
        font-size: 22px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 14px 30px;
    }
}

/* Button Container */
#backToTop {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  border: none;
  background: none;
  cursor: pointer;
  display: none;
  z-index: 1000;
}

/* SVG Circle */
#backToTop svg {
  transform: rotate(-90deg);
}

.progress-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 6;
}

.progress-bar {
  fill: none;
  stroke: #e67e22;
  stroke-width: 6;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 0.2s linear;
}

/* Arrow */
.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #e67e22;
}

/* Hover */
#backToTop:hover .progress-bar {
  stroke: #c65d0e;
}

#backToTop:hover .arrow {
  color: #c65d0e;
}