/*
==============================================
website Name: G Pulla Reddy Sweets
==============================================

TABLE OF CONTENTS:
1. CSS Variables
2. Theme Buttons
3. Typography & Base Styles
4. Section Styles
5. Header & Navigation
6. Sidebar & Offcanvas
7. Breadcrumb
8. Food Category Section
9. Scrollbar & Utilities
10. Banner Sections
11. Testimonials
12. Pagination
13. Contact Section
14. Footer
15. Products Section
16. Delicacies Section
17. Heritage Journey Section
18. Traditional Sweets Section
19. About Page
20. Mission & Vision
21. Heritage Section
22. Contact Info & Map
23. Banner Containers
24. Responsive Overrides
==============================================
*/

/* ==============================================
   1. CSS VARIABLES
============================================== */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed: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");

* {
    font-family: "Barlow Condensed";
}
:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #AC1E23;
    --theme2: #AC1E23;
    --theme3: #AC1E23;
    --header: #212121;
    --base: #00813D;
    --text: #5C5C5B;
    --border: #D9D9D9;
    --border2: #ffffff2b;
    --button: #1C2539;
    --button2: #030734;
    --ratting: #FF9F0D;
    --bg: #F4F1EA;
    --bg2: #DF0A0A0D;
}


/* ==============================================
   2. THEME BUTTONS
============================================== */
.theme-btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    padding: 20px;
    color: var(--white);
    text-align: center;
    border-radius: 9px;
    letter-spacing: 0.8px;
    z-index: 1;
    transition: all 500ms ease;
    background-color: var(--theme);
    text-transform: uppercase;
}

.theme-btn i {
    margin-right: 10px;
    font-size: 24px;
}

.theme-btn::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: scale(0, 0);
    z-index: -1;
    transition: all 500ms ease;
}

.theme-btn:hover::before {
    background-color: var(--theme2);
    transform: scale(1, 1);
}

.theme-btn.bg-white {
    background-color: var(--white);
    color: var(--header);
}

.theme-btn.bg-white:hover {
    color: var(--white);
}

.theme-btn.bg-white:hover::before {
    background-color: var(--theme3);
}

.theme-btn.bg-red-2 {
    background-color: var(--theme2);
    color: var(--white);
    border-radius: 7px;
}

.theme-btn.bg-red-2:hover {
    color: var(--white);
}

.theme-btn.bg-red-2:hover::before {
    background-color: var(--theme);
}

@media (max-width: 991px) {
    .theme-btn {
        padding: 16px 36px;
        font-size: 16px;
    }
    .theme-btn i {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .theme-btn {
        padding: 14px;
        font-size: 14px;
        margin-top: 0px!important;
    }
    .theme-btn i {
        font-size: 20px;
    }
}


/* ==============================================
   3. TYPOGRAPHY & BASE STYLES
============================================== */
body {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--text);
    background-color: var(--white);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    border: none;
    background-color: transparent;
    padding: 0;
}

input,
input:focus {
    color: var(--white);
    outline: none;
}

a {
    text-decoration: none !important;
    outline: none !important;
    cursor: pointer;
    color: var(--header) !important;
    transition: all 0.4s ease-in-out;
}

p {
    margin: 0;
    transition: all 0.4s ease-in-out;
  
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    color: var(--header);
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
}

/* Heading Sizes */
h1 {
    font-size: 145px;
    font-weight: 600;
    line-height: 100%;
}

h2 {
    font-size: 70px;
    line-height: 110%;
    font-weight: 700;
}

h3 {
    font-size: 44px;
    font-weight: 700;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

h5 {
    font-size: 18px;
    font-weight: 600;
}

h6 {
    font-size: 16px;
    font-weight: 700;
    line-height: 145%;
}

/* Heading Responsive */
@media (max-width: 1399px) {
    h1 { font-size: 130px; }
    h2 { font-size: 58px; }
    h3 { font-size: 28px; }
}

@media (max-width: 1199px) {
    h1 { font-size: 110px; }
    h2 { font-size: 54px; }
}

@media (max-width: 991px) {
    h1 { font-size: 72px; }
    h2 { font-size: 42px; }
    h3 { font-size: 24px; }
}

@media (max-width: 575px) {
    h1 { font-size: 52px; }
    h2 { font-size: 32px; }
}


/* ==============================================
   4. SECTION STYLES
============================================== */
.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
    margin-top: -6px;
}

.section-title span {
    color: var(--theme2);
    margin-bottom: 5px;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
}

.center {
    text-align: center;
    margin: 0 auto;
}

.section-bg {
    background-color: var(--bg);
}

.section-padding {
    padding: 120px 0;
}

@media (max-width: 1199px) {
    .section-padding {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 0;
    }
}


/* ==============================================
   5. HEADER & NAVIGATION
============================================== */
.header-1 {
    position: relative;
    z-index: 99;
    overflow-x: clip;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.header-main .header-logo img {
    width: 180px;
}

.header-main .main-menu ul {
    margin-bottom: 0;
}

.header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 30px;
}

.header-main .main-menu ul li:last-child {
    margin-inline-end: 0;
}

.header-main .main-menu ul li a {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: var(--header);
    text-align: left;
    position: relative;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a:hover {
    color: var(--theme2) !important;
}

.header-main .main-menu ul li:hover > a {
    color: var(--theme2);
}

.header-main .main-menu ul li:hover > a::after {
    color: var(--theme);
}

.header-main .header-right {
    gap: 25px;
}

@media (max-width: 767px) {
    .header-main .header-right .header-button {
        display: none;
    }
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}


/* ==============================================
   6. SIDEBAR & OFFCANVAS
============================================== */
.sidebar__toggle {
    cursor: pointer;
}

.offcanvas__info {
    background: var(--white) none repeat scroll 0 0;
    border-left: 2px solid var(--theme2);
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    transform: translateX(calc(100% + 80px));
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
    display: none;
}

.offcanvas__logo a img {
    width: 150px;
}

.offcanvas__wrapper {
    position: relative;
    height: 100%;
    padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas__content .text {
    color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area {
    margin-top: 30px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items:not(:last-child) {
    margin-bottom: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items .offcanvas-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme2);
    position: relative;
    z-index: 9;
    cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
    color: var(--white);
}

.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 900;
    top: 0;
    opacity: 0;
    visibility: hidden;
    right: 0;
}

@media (max-width: 575px) {
    .offcanvas__wrapper {
        padding: 20px;
    }
}

@media (max-width: 450px) {
    .offcanvas__info {
        width: 300px;
    }
}


/* ==============================================
   7. BREADCRUMB
============================================== */
.breadcrumb-wrapper .page-heading {
    position: relative;
    padding: 160px 0;
}
.breadcrumb-wrapper .page-heading h1 {
    color: var(--white);
    font-size: 50px;
    font-weight: 700;
    position: relative;
    z-index: 9;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: flex;
    align-items: center;
    justify-content: left;
    color: #ffde59;
    margin-top: 20px;
    gap: 10px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items div {
    font-size: 1.1rem;
    color: #ffde59;
    /* color: var(--theme2); */
    font-weight: 600;
    text-transform: uppercase;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: #ffde59!important;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items div a {
    /* color: var(--theme2); */
    transition: all 0.4s ease-in-out;
    color: #ffde59!important;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items div a:hover {
    color: var(--theme);
}

.breadcrumb-wrapper .page-heading .breadcrumb-items div i {
    font-size: 20px;
    color: var(--theme2);
}
@media (max-width: 768px) {
    .breadcrumb-wrapper{
         min-height: 500px;
    }
    .breadcrumb-wrapper .page-heading .breadcrumb-items li a {
        color: #fff!important;
    }
}

@media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading {
        padding: 80px 0;
    }
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 50px;
    }
    .breadcrumb-wrapper .page-heading .breadcrumb-items {
        margin-top: 15px;
    }
    .breadcrumb-wrapper .page-heading .breadcrumb-items li {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items {
        align-items: center;
        justify-content: center;
    }
    .breadcrumb-wrapper .page-heading h1 {
        text-align:center;
    }
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 36px;
    }
    .breadcrumb-wrapper .page-heading .breadcrumb-items div i {
        font-size: 18px;
    }
}


/* ==============================================
   8. FOOD CATEGORY SECTION
============================================== */
.food-category-section {
    position: relative;
}

.food-icon-wrapper {
    background-color: #AC1E23;
    border-radius: 14px;
    padding: 70px 75px;
}

.single-food-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.food-icon-wrapper .single-food-icon .icon {
    font-size: 55px;
    color: var(--theme3);
}

.food-icon-wrapper .single-food-icon .content {
    margin-top: 20px;
}

.food-icon-wrapper .single-food-icon .content h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 19px;
    text-align: center;
}

@media (max-width: 991px) {
    .food-icon-wrapper .single-food-icon {
        text-align: center;
    }
}


/* ==============================================
   9. SCROLLBAR & UTILITIES
============================================== */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--theme);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--theme);
    border-radius: 10px;
}

.fix {
    overflow: hidden;
}

.mt-10 {
    margin-top: 10px;
}

.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
    width: 100%;
    height: 100%;
}

@media (max-width: 768) {
    .bg-cover {
        background-position: bottom;
    }
}



.color-bg {
    color: var(--text) !important;
    opacity: 0.3;
}

.theme-color-3 {
    color: var(--white) !important;
}

/* Scroll Up Button */
.scroll-up {
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px var(--border);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    position: fixed;
    right: 25px;
    bottom: 35px;
    height: 50px;
    width: 50px;
    transition: all 0.4s ease-in-out;
}

.scroll-up::after {
    position: absolute;
    content: "\f176";
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    font-size: 18px;
    color: var(--theme2);
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.scroll-up svg path {
    fill: none;
}

.scroll-up svg.scroll-circle path {
    stroke: var(--theme2);
    stroke-width: 4px;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
}


/* ==============================================
   10. BANNER SECTIONS
============================================== */
 .carousel-item {
            /* height: 650px; */
            margin: 0;
            padding: 0;
        }

        .carousel-fade .carousel-item {
            opacity: 0;
            transition-duration: 0.1s;
            transition-property: opacity;
        }

        .carousel-fade .carousel-item.active {
            opacity: 1;
        }

        .banner-container,
        .banner-container1,
        .banner-container2 {
            height: 100%;
            width: 100%;
            min-height: 600px;
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding-left: 100px;
            margin: 0;
        }


        /* Headings */
        .banner-container h2,
        .banner-container1 h2,
        .banner-container2 h2 {
            color: #E5C592;
            font-size: 72px;
            text-align: left;
            font-weight: bolder;
            line-height: 1.2;
            margin-bottom: 20px;
            text-transform: capitalize;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* Subheadings */
        .banner-container h5,
        .banner-container1 h5,
        .banner-container2 h5 {
            color: #fff;
            font-size: 24px;
            font-weight: 300;
            letter-spacing: 5px;
            text-transform: uppercase;
            margin-bottom: 50px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        /* CTA Button */
        .heritage-cta-button {
            color: white;
            background-color: #AC1E23;
            padding: 18px 45px;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .heritage-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }

        /* Indicators */
        .carousel-indicators {
            bottom: 20px;
        }

        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #E5C592;
            opacity: 0.6;
            border: none;
            transition: opacity 0.3s ease;
        }

        .carousel-indicators .active {
            opacity: 1;
        }

        /* Controls */
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            filter: brightness(0) invert(1);
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .banner-container h2,
            .banner-container1 h2,
            .banner-container2 h2 {
                font-size: 56px;
            }
        }

        @media (max-width: 768px) {
            .carousel-item {
                height: 500px;
            }

            .banner-container,
            .banner-container1,
            .banner-container2 {
                padding-left: 50px;
                padding-right: 20px;
                min-height: 500px;
            }

            .banner-container h2,
            .banner-container1 h2,
            .banner-container2 h2 {
                font-size: 42px;
                color: #fddf5a;
            }

            .banner-container h5,
            .banner-container1 h5,
            .banner-container2 h5 {
                font-size: 18px;
                letter-spacing: 3px;
                font-weight: 700;
            }

            .heritage-cta-button {
                font-size: 16px;
                padding: 14px 35px;
                background-color: #AC1E23;
                color: #fff;
            }

            /* Mobile Background images - add your mobile versions here */
             .banner-container {
                background-image: url("../img/GPR_Mobile-banners_3.png");
                background-position: center;
                background-size: cover;
                
            }
            .banner-container1 {
                background-image: url("../img/GPR_Mobile-banners_1.png");
                background-position: right;
                background-size: cover;
            }
            .banner-container2 {
                background-image: url("../img/GPR_Mobile-banners_2.png");
                background-position: center;
                background-size: cover;
            }
        }

        @media (max-width: 480px) {
            .carousel-item {
                height: 450px;
            }

            .banner-container,
            .banner-container1,
            .banner-container2 {
                padding-left: 25px;
                padding-right: 15px;
                min-height: 450px;
            }

            .banner-container h2,
            .banner-container1 h2,
            .banner-container2 h2 {
                font-size: 32px;
            }

            .banner-container h5,
            .banner-container1 h5,
            .banner-container2 h5 {
                font-size: 14px;
                letter-spacing: 2px;
                margin-bottom: 30px;
            }

            .heritage-cta-button {
                font-size: 14px;
                padding: 12px 28px;
                letter-spacing: 2px;
            }
        }



/* ==============================================
   11. SIDEBAR & WIDGETS
============================================== */
.main-sidebar .single-sidebar-widget {
    margin-bottom: 35px;
    margin-top: -5px;
}

.main-sidebar .single-sidebar-widget .wid-title {
    margin-bottom: 25px;
    padding-left: 10px;
    position: relative;
}

.main-sidebar .single-sidebar-widget .wid-title::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 2px;
    height: 17px;
    position: absolute;
    background-color: var(--theme);
}

.main-sidebar .single-sidebar-widget .wid-title h4 {
    font-size: 24px;
    font-weight: 600;
}

.main-sidebar .single-sidebar-widget .widget-categories {
    border-bottom: 1px solid var(--border);
    padding-bottom: 40px;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.main-sidebar .single-sidebar-widget .widget-categories ul li:not(:last-child) {
    margin-bottom: 20px;
}

.main-sidebar .single-sidebar-widget .popular-food-posts .single-post-item {
    overflow: hidden;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.main-sidebar .single-sidebar-widget .popular-food-posts .single-post-item:last-child {
    margin-bottom: 0;
    border: none;
    padding-bottom: 0;
}

.main-sidebar .single-sidebar-widget .popular-food-posts .single-post-item .thumb {
    width: 80px;
    height: 80px;
    float: left;
    overflow: hidden;
    margin-right: 20px;
}

.main-sidebar .single-sidebar-widget .popular-food-posts .single-post-item .post-content {
    overflow: hidden;
}

.main-sidebar .single-sidebar-widget .popular-food-posts .single-post-item .post-content .star {
    font-size: 14px;
    color: var(--theme3);
    margin-bottom: 3px;
}

.main-sidebar .single-sidebar-widget .popular-food-posts .single-post-item .post-content h4 {
    text-transform: capitalize;
    margin-bottom: 3px;
}

@media (max-width: 575px) {
    .main-sidebar .single-sidebar-widget {
        margin-bottom: 30px;
    }
}


/* ==============================================
   12. CTA BANNER
============================================== */
.food-banner-section {
    position: relative;
}

.main-cta-banner {
    position: relative;
}

.main-cta-banner::before {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
}

.main-cta-banner-wrapper {
    padding: 120px 100px;
    /* border-radius: 20px; */
    position: relative;
    background-position: center;
    /* min-height: 550px; */
    z-index: 9;
}

@media (max-width: 1199px) {
    .main-cta-banner-wrapper {
        padding: 120px 60px;
    }
}

@media (max-width: 767px) {
    .main-cta-banner-wrapper {
        padding: 70px 50px;
        text-align: left;
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .main-cta-banner-wrapper {
        padding: 60px 40px;
    }
}


/* ==============================================
   13. TESTIMONIALS
============================================== */
.testimonial-section {
    background-size: cover;
    position: relative;
}

.testimonial-wrapper .testimonial-items {
    max-width: 980px;
    margin: 0 auto;
}

.testimonial-wrapper .testimonial-items .testimonial-content {
    margin-top: -7px;
}

.testimonial-wrapper .testimonial-items .testimonial-content .client-info {
    margin-bottom: 30px;
}

.testimonial-wrapper .testimonial-items .testimonial-content .client-info h4 {
    font-size: 29px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.testimonial-wrapper .testimonial-items .testimonial-content .client-info h5 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--theme2);
}

.testimonial-wrapper .testimonial-items .testimonial-content .star {
    margin-top: 15px;
}

.testimonial-wrapper .testimonial-items .testimonial-content .star span {
    font-size: 14px;
    color: var(--theme3);
    transition: all 0.4s ease-in-out;
}

.testimonial-wrapper .testimonial-items .testimonial-image-slider {
    width: 200px;
    padding: 40px 0;
}

@media (max-width: 991px) {
    .testimonial-wrapper.style-responsive {
        margin-bottom: -45px;
    }
}


/* ==============================================
   14. PAGINATION
============================================== */
.page-nav-wrap ul li {
    display: inline-block;
}

.page-nav-wrap ul li .page-numbers {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: #f6f6f6;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    margin: 0 2px;
}

.page-nav-wrap ul li .page-numbers i {
    margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
    background-color: var(--theme);
    color: var(--white);
}

@media (max-width: 767px) {
    .page-nav-wrap ul li .page-numbers {
        margin-top: 10px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }
}


/* ==============================================
   15. CONTACT SECTION
============================================== */
.contact-info-items {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0px 15px 10px 0px rgba(242, 242, 242, 0.18);
    padding: 60px 30px;
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 1;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.contact-info-items .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-items::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: url("../../assets/img/shape/catagory-card-shape.jpg");
    opacity: 0;
    transition: all 0.4s ease-in-out;
    z-index: -1;
    visibility: hidden;
}

.contact-info-items .icon {
    transition: all 0.4s ease-in-out;
}

.contact-info-items .content {
    margin-top: 20px;
}

.contact-info-items .content h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.contact-info-items:hover,
.contact-info-items.active {
    background-color: var(--theme);
}

.contact-info-items:hover, .contact-info-items.active p a{
    color: #fff!important;
}

.contact-info-items:hover::before,
.contact-info-items.active::before {
    opacity: 1;
    visibility: visible;
}

.contact-info-items:hover .icon,
.contact-info-items.active .icon {
    filter: invert(1) brightness(200%);
    color: #fff;
}

.contact-info-items:hover .content h3,
.carousel-item h4,
.contact-info-items:hover .content p,
.contact-info-items.active .content h3 {
    color: var(--white);
}

.contact-info-items:hover .phone-item a,
.contact-info-items:hover .phone-item .location {
    color: #fff !important;
}

@media (max-width: 768px) {
    .contact-location{
        height: 380px;
    }
}

/* Contact Form */
.contact-area .contact-form-items .contact-title {
    margin-bottom: 30px;
}

.contact-area .contact-form-items .contact-title h3 {
    margin-top: -10px;
    font-weight: 700;
}

.contact-area .contact-form-items .form-clt {
    position: relative;
}

.contact-area .contact-form-items .form-clt .icon {
    position: absolute;
    top: 18px;
    left: 0;
}

.contact-area .contact-form-items .form-clt .icon i {
    color: var(--header);
}

.contact-area .contact-form-items .form-clt input {
    width: 100%;
    outline: none;
    border: none;
    padding: 20px 30px;
    color: var(--text);
    background-color: transparent;
    text-transform: capitalize;
    font-weight: 500;
    border-bottom: 1px solid var(--text);
}

.contact-area .contact-form-items .form-clt-big textarea {
    padding: 20px 30px 80px;
    width: 100%;
    outline: none;
    border: none;
    color: var(--text);
    background-color: transparent;
    text-transform: capitalize;
    font-weight: 500;
    border-bottom: 1px solid var(--text);
}

@media (max-width: 575px) {
    .contact-area .contact-form-items .form-clt .icon {
        display: none;
    }
    .contact-area .contact-form-items .form-clt input {
        padding: 15px 20px;
    }
}

/* Phone Grid */
.phone-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
    padding: 0 10px;
}

.phone-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.phone-item a {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    text-decoration: none;
}

.phone-item .location {
    display: block;
    font-size: 16px;
}

@media (max-width: 576px) {
    .phone-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


/* ==============================================
   16. FOOTER SECTION
============================================== */
.footer-section {
    position: relative;
}

.footer-widgets-wrapper {
    padding: 70px 0 40px;
    position: relative;
    z-index: 9;
}

.footer-widgets-wrapper .single-footer-widget {
    margin-top: 30px;
}

.single-footer-widget ul{
 padding-left: 5px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 30px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head h4 {
    text-transform: capitalize;
    margin-top: 10px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
    margin-top: 40px;
    gap: 15px;
    position: relative;
    z-index: 9;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: rgba(92, 92, 91, 0.1);
    color: var(--header);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content p{
    color: var(--text);
}

.footer-widgets-wrapper .single-footer-widget .list-items li {
    text-transform: capitalize;
}

.footer-widgets-wrapper .single-footer-widget .list-items li:not(:last-child) {
    margin-bottom: 15px;
}

.footer-widgets-wrapper .single-footer-widget .list-items li a .text-effect {
    text-transform: capitalize;
    position: relative;
    transition: all 0.4s ease-in-out;
    color: var(--text);
    overflow: hidden;
    display: block;
    height: 25px;
    line-height: normal;
}

.footer-widgets-wrapper .single-footer-widget .list-items li a .text-effect .effect-1 {
    display: block;
    height: 100%;
    position: relative;
    top: 0%;
    transition: 0.3s;
}

.footer-widgets-wrapper .single-footer-widget .list-items li a:hover .text-effect {
    color: var(--theme);
}

.footer-widgets-wrapper .single-footer-widget .list-items li a:hover .text-effect .effect-1 {
    top: -100%;
}

.footer-widgets-wrapper .single-footer-widget .footer-address-text h6 {
    font-weight: 400;
    color: var(--text);
    line-height: 150%;
    font-size: 20px;
    text-transform: capitalize;
}

.footer-widgets-wrapper .single-footer-widget .footer-address-text h6 span {
    color: var(--theme2);
}

.footer-widgets-wrapper .single-footer-widget .footer-address-text h5 {
    padding: 5px 0;
    text-transform: capitalize;
}

.footer-bottom {
    padding: 30px 0;
    background-color: #AC1E23;
}

.footer-bottom .footer-bottom-wrapper p {
    text-transform: capitalize;
    color: var(--white);
    font-size: 20px;
    margin-bottom: 0!important;
}

.footer-bottom .footer-bottom-wrapper p a {
    color: var(--white) !important;
}

.footer-bottom .footer-bottom-wrapper p a:hover {
    color: var(--theme3);
}

@media (max-width: 1199px) {
    .footer-widgets-wrapper {
        padding: 60px 0 0px;
    }
}

@media (max-width: 991px) {
    .footer-widgets-wrapper {
        padding: 50px 0 0px;
    }
}

@media (max-width: 767px) {
    .footer-bottom .footer-bottom-wrapper {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center !important;
    }
}

@media (max-width: 575px) {
    .footer-widgets-wrapper .single-footer-widget .widget-head {
        margin-bottom: 20px;
    }
    .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
        margin-top: 20px;
    }
}


/* ==============================================
   17. PRODUCTS SECTION
============================================== */
.food-items {
    background-color: transparent;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.food-items:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background-color: #fff;
}

.food-image {
    height: 250px;
    margin: 15px;
    position: relative;
}

.food-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.food-image:hover {
    cursor: pointer;
}

.food-items:hover .food-image:hover {
    background-color: #ffffff;
}

.food-content h3 {
    font-weight: 700;
    font-size: 16px;
    color: #111;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .food-items {
        margin-bottom: 20px;
    }
}


/* ==============================================
   18. DELICACIES SECTION
============================================== */
.delicacies-hero-section {
    background-color: #FFEEEE;
    padding: 50px 20px;
    display: flex;
    align-items: center;
    margin-right: 20px;
    justify-content: center;
}

.delicacies-content-wrapper {
    text-align: center;
}

.delicacies-tagline {
    color: #AC1E23;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.delicacies-main-heading {
    font-size: 31px;
    font-weight: bolder;
    color: #1a1a1a;
    text-transform: uppercase;
    vertical-align: middle;
    text-align: center;
    margin-bottom: 5px;
}

.delicacies-description {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.delicacies-cta-btn {
    background-color: #AC1E23;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 7px;
}

.delicacies-cta-btn:hover {
    background-color: #b71c1c;
}

/* Carousel */
.delicacies-carousel-container {
    position: relative;
}

.delicacies-carousel-wrapper {
    border: 2px solid #B71C1C;
    border-radius: 15px;
    padding: 21px 24px 12px;
    background-color: white;
    position: relative;
}

.delicacies-carousel-inner {
    overflow: hidden;
}

.delicacies-carousel-item {
    display: none;
}

.delicacies-carousel-item.delicacies-active {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.delicacies-product-card {
    text-align: center;
    flex: 0 0 calc(33.333% - 14px);
}

.delicacies-product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.delicacies-product-name {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
}

.delicacies-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #AC1E23;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.3s ease;
    font-size: 26px;
}

.delicacies-carousel-control:hover {
    background-color: #AC1E23;
}

.delicacies-carousel-control.delicacies-prev {
    left: -19px;
}

.delicacies-carousel-control.delicacies-next {
    right: -19px;
}

@media (max-width: 992px) {
    .delicacies-main-heading {
        font-size: 32px;
    }
    .delicacies-product-card {
        flex: 0 0 calc(50% - 10px);
    }
    .delicacies-carousel-item.delicacies-active .delicacies-product-card:nth-child(3) {
        display: none;
    }
}

@media (max-width: 768px) {
    .delicacies-hero-section {
        padding: 40px 20px;
        margin-right: 0;
    }
    .delicacies-carousel-control {
        width: 30px;
        height: 30px;
    }
    .delicacies-carousel-control.delicacies-next {
        margin-right: 5px;
    }
    .delicacies-carousel-control.delicacies-prev {
        margin-left: 5px;
    }
    .delicacies-main-heading {
        font-size: 28px;
    }
    .delicacies-carousel-wrapper {
        padding: 20px 50px;
    }
    .delicacies-product-card {
        flex: 0 0 100%;
    }
    .delicacies-carousel-item.delicacies-active {
        flex-direction: column;
    }
    .delicacies-carousel-item.delicacies-active .delicacies-product-card:nth-child(2),
    .delicacies-carousel-item.delicacies-active .delicacies-product-card:nth-child(3) {
        display: none;
    }
}


/* ==============================================
   19. HERITAGE JOURNEY SECTION
============================================== */
.heritage-journey-section {
    padding: 60px 0;
    background-color: #fff;
}

.heritage-image-wrapper {
    position: relative;
    height: 732px;
}

.heritage-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid #AC1E23;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.heritage-welcome-tag {
    color: #AC1E23;
    font-size: 27px;
    font-weight: 700;
    text-transform: uppercase;
}

.heritage-main-title {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.heritage-main-title1 {
    font-size: 70px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.heritage-highlight-text {
    color: #AC1E23;
}

.heritage-description-text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.heritage-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.heritage-feature-item {
    display: flex;
    gap: 15px;
}

.heritage-icon-container {
    flex-shrink: 0;
}
.heritage-icon-container img{
    width: 54px;
}

.heritage-feature-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.heritage-feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .heritage-content-block {
        padding-left: 0;
        margin-top: 40px;
    }
    .heritage-main-title {
        font-size: 36px;
    }
    .heritage-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
}

@media (max-width: 768px) {
    .heritage-main-title1 {
      font-size: 28px!important;
    }
    
    .heritage-image-wrapper {
        height: 500px;
    }
}

@media (max-width: 576px) {
    .heritage-journey-section {
        padding: 40px 0;
    }
    .welcome-sec{
        padding: 20px!important;
    }
    .heritage-main-title {
        font-size: 28px;
    }
    .heritage-features-grid {
        gap: 20px;
    }
}


/* ==============================================
   20. POPULAR SWEETS SECTION
============================================== */
.sweet-tradition-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.sweet-tradition-header {
    text-align: center;
    margin-bottom: 20px;
}

.sweet-tradition-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.sweet-tradition-title-black {
    color: #000;
}

.sweet-tradition-title-red {
    color: #AC1E23;
}

.sweet-tradition-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.sweet-collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
}

.jaggery-collection-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.25s ease, color 0.25s ease;
}

.jaggery-collection-card:hover {
    transform: translateY(-5px);
}

.jaggery-product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.jaggery-card-content {
    padding: 25px;
    text-align: center;
}

.jaggery-category-title {
    color: #AC1E23;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.jaggery-product-count {
    color: #333;
    font-size: 14px;
    margin-bottom: 20px;
}

.jaggery-explore-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 37px;
    padding: 12px 0;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    background-color: #AC1E23;
    color: #fff;
}

.jaggery-explore-btn:hover,
.jaggery-explore-btn:focus {
    opacity: 0.95;
    transform: scale(1.02);
    background-color: #1a1a1a;
    color: #fff;
}

.jaggery-collection-card:has(.jaggery-explore-btn:hover),
.jaggery-collection-card:has(.jaggery-explore-btn:focus) {
    background-color: #AC1E23;
    color: #fff;
}

.jaggery-collection-card:has(.jaggery-explore-btn:hover) .jaggery-category-title,
.jaggery-collection-card:has(.jaggery-explore-btn:focus) .jaggery-category-title,
.jaggery-collection-card:has(.jaggery-explore-btn:hover) .jaggery-product-count,
.jaggery-collection-card:has(.jaggery-explore-btn:focus) .jaggery-product-count {
    color: #fff;
}

.sweet-view-more-container {
    text-align: center;
    margin-top: 40px;
}

.sweet-view-more-btn {
    background-color: #b92e2e;
    color: #fff;
    padding: 15px 50px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sweet-view-more-btn:hover {
    background-color: #a02626;
}

.hidden-row {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .sweet-tradition-title {
        font-size: 32px;
    }
    .sweet-collections-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    .sweet-tradition-description {
        font-size: 14px;
    }
}


/* ==============================================
   21. TRADITIONAL SWEETS SHOWCASE
============================================== */
.heritage-sweets-showcase {
    background: linear-gradient(to right, #ffe5e5 0%, #ffd9d9 50%, #ffe5e5 100%);
    padding: 0;
    overflow: hidden;
}

.sweets-content-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.sweets-info-panel {
    flex: 0 0 45%;
    padding: 60px 50px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sweets-category-label {
    font-size: 18px;
    font-weight: 700;
    color: #AC1E23;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.sweets-main-title {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sweets-main-title .highlight-pure {
    color: #AC1E23;
}

.sweets-description-text {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    font-weight: 400;
}

.sweets-features-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sweets-feature-item {
    background: #fff;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2px;
    transition: background 0.3s ease;
    position: relative;
}

.sweets-feature-item:hover {
    background: #b71c1c;
}

.sweets-feature-item:hover .sweets-feature-text {
    color: white;
    transition: color 0.3s ease;
}

.sweets-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.sweets-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.sweets-feature-icon img.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.sweets-feature-item:hover .sweets-feature-icon img.default-image {
    opacity: 0;
}

.sweets-feature-item:hover .sweets-feature-icon img.hover-image {
    opacity: 1;
}

.sweets-feature-text {
    font-size: 20px;
    font-weight: 600;
    color: black;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sweets-highlight-number {
    font-weight: 700;
}

.sweets-visual-gallery {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
}

.sweets-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991px) {
    .sweets-content-wrapper {
        flex-direction: column;
        min-height: auto;
    }
    .sweets-info-panel {
        flex: 1;
        padding: 50px 40px;
    }
    .sweets-visual-gallery {
        flex: 1;
        min-height: 400px;
    }
    .sweets-main-title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .sweets-info-panel {
        padding: 40px 30px;
    }
    .sweets-main-title {
        font-size: 32px;
    }
    .sweets-feature-item {
        padding: 15px 18px;
    }
    .sweets-feature-text {
        font-size: 14px;
    }
    .sweets-description-text {
        font-size: 14px;
    }
    .sweets-visual-gallery {
        min-height: 350px;
    }
}

@media (max-width: 575px) {
    .sweets-info-panel {
        padding: 30px 20px;
    }
    .sweets-main-title {
        font-size: 28px;
    }
    .sweets-category-label {
        font-size: 11px;
    }
    .sweets-visual-gallery {
        min-height: 300px;
    }
}


/* ==============================================
   22. ABOUT PAGE SECTIONS
============================================== */
.category-heading {
    display: none;
    margin-top: -43px;
    margin-bottom: 20px;
}

.category-heading h2 {
    color: #B71C1C;
}

/* About Content */
.kurnool-about-wrapper {
    padding: 80px 0;
}

.kurnool-about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.kurnool-about-text {
    flex: 1;
    background-color: #FFF8F8;
    padding: 24px;
}

.kurnool-about-label {
    font-size: 18px;
    font-weight: bold;
    color: #AC1E23;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.kurnool-about-heading {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 30px;
    word-spacing: 5px;
}

.kurnool-about-heading .kurnool-highlight {
    color: #AC1E23;
}

.kurnool-about-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.kurnool-about-founder {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    text-align: justify;
}

.kurnool-about-founder strong {
    color: #1a1a1a;
    font-weight: 600;
}

.kurnool-about-image-placeholder {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kurnool-about-image-frame {
    width: 100%;
    height: auto;
}

.kurnool-about-image-frame img {
    width: 34%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-radius: 8px;
    position: absolute;
    margin-top: -17%;
}


/* ==============================================
   23. MISSION & VISION SECTION
============================================== */
.kurnool-mission-wrapper {
    padding: 60px 0;
    background-color: #ffffff;
}

.kurnool-mission-image-section {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
}

.kurnool-mission-image-section img {
    width: 560px;
    position: absolute;
}

.kurnool-mission-image-placeholder {
    width: 100%;
    max-width: 630px;
    aspect-ratio: 1 / 1.1;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    text-align: center;
}

.kurnool-mission-content {
    flex: 1;
    padding-top: 20px;
}

.kurnool-mission-section {
    margin-bottom: 50px;
}

.kurnool-mission-section:last-child {
    margin-bottom: 0;
}

.kurnool-mission-title {
    width: 78%;
    font-size: 29px;
    font-weight: 700;
    color: #AC1E23;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #d4a574;
    display: inline-block;
}

.kurnool-mission-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.kurnool-mission-text {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}

.kurnool-mission-text:last-of-type {
    margin-bottom: 0;
}

.kurnool-core-values-title {
    width: 78%;
    font-size: 29px;
    font-weight: 700;
    color: #AC1E23;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #d4a574;
    display: inline-block;
}

/* Toggle Buttons */
.kurnool-toggle-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.kurnool-toggle-btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #AC1E23;
    background-color: transparent;
    color: #AC1E23;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kurnool-toggle-btn:hover {
    background-color: #AC1E23;
    color: white;
    transform: translateY(-2px);
}

.kurnool-toggle-btn.active {
    background-color: #AC1E23;
    color: white;
}

.kurnool-content-section {
    display: none;
    opacity: 0;
    transform: translateY(30px);
}

.kurnool-content-section.active {
    display: block;
    animation: slideUpFade 0.6s ease forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==============================================
   24. HERITAGE SECTION (ABOUT PAGE)
============================================== */
.heritage-section {
    padding: 60px 20px;
    background-color: #fff;
}

.heritage-header-tagline-about {
    text-align: center;
    color: #AC1E23;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.heritage-main-title-about {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.heritage-card-wrapper {
    margin-bottom: 30px;
}

.heritage-sweet-card {
    border: none;
    background: transparent;
}

.heritage-image-container {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.heritage-sweet-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.heritage-sweet-card:hover .heritage-sweet-image {
    transform: scale(1.05);
}

.heritage-card-title {
   
    font-size: 22px;
    font-weight: 700;
    color: #AC1E23;
    margin-bottom: 15px;
}

.heritage-card-description {
   
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: justify;
}


/* ==============================================
   25. CONTACT INFO & MAP
============================================== */
#map {
    height: 500px;
    width: 100%;
}

.icon img {
    width: 60px;
    height: 60px;
}

.content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
}


/* Address Carousel */
.address-carousel {
    position: relative;
    min-height: 180px;
}

.carousel-item {
    display: none;
    text-align: center;
    /* padding: 10px; */
    animation: fadeIn 0.5s;
}

.carousel-item.active {
    display: block;
    padding: 0;
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.carousel-item h4 {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.carousel-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: -87px;
}

.carousel-btn:hover {
    background: #b71c1c;
}

.carousel-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: #AC1E23;
    width: 25px;
    border-radius: 5px;
}


/* ==============================================
   26. AWARDS SECTION
============================================== */
.awards {
    margin-top: 100px;
}

@media (max-width: 768px) {
    .awards {
        margin: 30px 0;
    }
}


/* ==============================================
   27. SWEET INDULGENCE CARD
============================================== */
.sweet-indulgence-card {
    position: relative;
    width: 100%;
    max-width: 1200px;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8); */
}

.sweet-indulgence-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sweet-indulgence-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
}

.sweet-indulgence-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

.sweet-indulgence-heading-primary {
    font-size: 6rem;
    font-weight: 400;
    color: #f5e6d3;
    line-height: 1;
    margin-bottom: 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.sweet-indulgence-heading-secondary {
    font-size: 3rem;
    font-weight: 400;
    color: #f5e6d3;
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.sweet-indulgence-tagline {
    
    font-size: 1.8rem;
    color: #d4c4b0;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.sweet-indulgence-cta {

    background: #AC1E23;
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(139, 90, 43, 0.4);
    width: fit-content;
}
.sweet-indulgence-decor {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.3), transparent);
    filter: blur(20px);
}

.sweet-indulgence-decor-1 {
    top: 10%;
    right: 20%;
    animation: sweet-float 6s ease-in-out infinite;
}

.sweet-indulgence-decor-2 {
    bottom: 15%;
    right: 15%;
    animation: sweet-float 8s ease-in-out infinite reverse;
}

.sweet-indulgence-decor-3 {
    top: 50%;
    right: 30%;
    animation: sweet-float 7s ease-in-out infinite;
}

@keyframes sweet-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.sweet-indulgence-glow {
    position: absolute;
    bottom: 80px;
    left: 80px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    animation: sweet-pulse 4s ease-in-out infinite;
}

@keyframes sweet-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .sweet-indulgence-heading-primary,
    .sweet-indulgence-heading-secondary {
        font-size: 4rem;
    }
    .sweet-indulgence-tagline {
        font-size: 1.2rem;
    }
    .sweet-indulgence-content {
        padding: 40px;
    }
    .sweet-indulgence-cta {
        padding: 15px 35px;
        font-size: 1rem;
    }
}


/* ==============================================
   28. RESPONSIVE OVERRIDES - TABLET
============================================== */
@media screen and (max-width: 1024px) {
    .kurnool-about-content {
        gap: 30px;
    }
    .kurnool-about-heading {
        font-size: 2rem;
    }
    .kurnool-mission-content {
        padding: 40px 30px;
    }
    .kurnool-mission-image-section {
        flex: 1;
        width: 100%;
    }
    .kurnool-mission-image-placeholder {
        max-width: 100%;
        aspect-ratio: auto;
        min-height: 350px;
    }
    .kurnool-mission-content {
        padding-top: 0;
    }
}

@media screen and (max-width: 768px) {
    .kurnool-about-wrapper {
        padding: 40px 0;
    }
    .kurnool-about-content {
        flex-direction: column;
        gap: 30px;
    }
    .kurnool-about-text {
        order: 1;
        width: 100%;
        padding: 0;
    }
    .kurnool-about-image-placeholder {
        order: 2;
        width: 100%;
        /* padding: 0 20px; */
    }
    .kurnool-about-heading {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    .kurnool-about-description,
    .kurnool-about-founder {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .kurnool-mission-wrapper .row {
        flex-direction: column;
    }
    .kurnool-mission-wrapper .col-lg-5,
    .kurnool-mission-wrapper .col-lg-7 {
        width: 100%;
        max-width: 100%;
    }
    .kurnool-mission-image-section {
        padding: 30px 20px;
    }
    .kurnool-mission-content {
        padding: 30px 20px;
    }
    .kurnool-mission-title,
    .kurnool-core-values-title {
        font-size: 1.5rem;
    }
    .kurnool-mission-wrapper {
        padding: 40px 0;
    }
    .heritage-main-title,
    .heritage-main-title-about {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .heritage-card-title {
        font-size: 20px;
    }
    .heritage-section {
        padding: 40px 15px;
    }
     .kurnool-about-content {
        flex-direction: column;
    }

    .kurnool-about-image-placeholder {
        order: 1;  
    }

    .kurnool-about-text {
        order: 2;   
    }

    .kurnool-about-image-frame img {
        width: 100%;
        height: auto;
        display: block;
        position: static;
        margin: 0;
    }

}


/* ==============================================
   29. RESPONSIVE OVERRIDES - MOBILE
============================================== */
@media screen and (max-width: 576px) {
    .kurnool-about-wrapper {
        padding: 30px 0;
    }
    .container {
        padding: 20px 15px;
    }
    .kurnool-about-label {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    .kurnool-about-heading {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    .kurnool-highlight {
        display: inline-block;
    }
    .kurnool-about-description,
    .kurnool-about-founder {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    .kurnool-about-text {
        padding: 0;
    }
    .kurnool-about-image-placeholder {
        padding: 0 ;
    }
     .kurnool-about-content {
        flex-direction: column;
    }

    .kurnool-about-image-placeholder {
        order: 1;   
    }

    .kurnool-about-text {
        order: 2;  
    }

    .kurnool-about-image-frame img {
        width: 100%;
        height: auto;
        display: block;
        position: static;
        margin: 0;
    }
  }
    .kurnool-mission-wrapper {
        padding:11px ;
    }
    .kurnool-mission-image-section {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    .kurnool-mission-image-placeholder img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
    .kurnool-mission-content {
        padding: 20px 15px;
    }
    .kurnool-mission-section {
        margin-bottom: 30px;
    }
    .kurnool-mission-title,
    .kurnool-core-values-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
        cursor: pointer;
    }
    .kurnool-mission-text {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    .kurnool-mission-label {
        display: block;
        margin-bottom: 5px;
        font-size: 0.95rem;
    }
    .heritage-main-title,
    .heritage-main-title-about {
        font-size: 28px;
    }
}

@media screen and (max-width: 375px) {
    .kurnool-about-heading {
        font-size: 1.35rem;
    }
    .kurnool-about-description,
    .kurnool-about-founder,
    .kurnool-mission-text {
        font-size: 0.85rem;
    }
    .kurnool-mission-title,
    .kurnool-core-values-title {
        font-size: 1.2rem;
    }
    .container,
    .kurnool-about-text,
    .kurnool-about-image-placeholder,
    .kurnool-mission-image-section,
    .kurnool-mission-content {
        padding-left: 12px;
        padding-right: 12px;
    }
}


/* ==============================================
   30. UTILITY RESPONSIVE STYLES
============================================== */
@media screen and (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }
    body {
        overflow-x: hidden;
    }
    .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
    .kurnool-mission-title,
    .kurnool-core-values-title {
        padding: 10px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}


/* ==============================================
   END OF STYLESHEET
============================================== */


 .sw7742x9kl_banner {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 60px 40px;
            overflow: hidden;
            background-size: cover;
            background-repeat: no-repeat;
            background-image: url('../img/sweetsbanner1.jpg');
        }

        .sw7742x9kl_banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(135deg, rgba(20, 15, 10, 0.85) 0%, rgba(40, 30, 20, 0.75) 50%, rgba(20, 15, 10, 0.85) 100%); */
            z-index: 1;
        }

        .vx8n2qpm7_wrapper {
            position: relative;
            z-index: 2;
            max-width: 700px;
            text-align: left;
            animation: fadeInRight 1.2s ease-out;
        }

        .jk5lm8n9p_heading {
            
            font-size: clamp(3rem, 8vw, 7rem);
            font-weight: 400;
            color: #f5f5f5;
            line-height: 1.1;
            margin-bottom: 0;
            letter-spacing: -2px;
        }

        .qt3rb6vx2_subtitle {
            
            font-size: clamp(2.5rem, 7vw, 6rem);
            font-weight: 700;
            color: #f5f5f5;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }

        .yz9wc4fh1_tagline {
        
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            font-weight: 300;
            color: #d4d4d4;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 40px;
        }

        .kd7pf2xs8_btn {
            display: inline-block;
        
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            font-weight: 600;
            color: #fff;
            background: linear-gradient(135deg, #d97634 0%, #c85a1a 100%);
            padding: 18px 45px;
            border-radius: 8px;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(217, 118, 52, 0.4);
            border: none;
            cursor: pointer;
        }

        .kd7pf2xs8_btn:hover {
            background: linear-gradient(135deg, #e88a4d 0%, #d97634 100%);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(217, 118, 52, 0.6);
            color: #fff;
        }

        .nh6lj1vk9_first {
            /* Add your first banner background image here */
            background-image: url('assets/img/sweetsbanner1.jpg');
        }

        .bw4ts5yd3_second {
            /* Add your second banner background image here */
            background-image: url('assets/img/sweetsbanner2.jpg');
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @media (max-width: 992px) {
            .sw7742x9kl_banner {
                padding: 50px 30px;
                justify-content: center;
            }

            .vx8n2qpm7_wrapper {
                text-align: center;
            }

            .jk5lm8n9p_heading {
                font-size: clamp(2.5rem, 10vw, 5rem);
            }

            .qt3rb6vx2_subtitle {
                font-size: clamp(2rem, 9vw, 4.5rem);
            }

            .yz9wc4fh1_tagline {
                font-size: clamp(0.75rem, 2.5vw, 0.95rem);
                letter-spacing: 3px;
            }

            .kd7pf2xs8_btn {
                padding: 16px 40px;
                font-size: clamp(0.85rem, 2.5vw, 1rem);
            }
        }

        @media (max-width: 576px) {
            .sw7742x9kl_banner {
                padding: 40px 20px;
                min-height: 90vh;
            }

            .jk5lm8n9p_heading {
                font-size: clamp(2rem, 12vw, 3.5rem);
                letter-spacing: -1px;
            }

            .qt3rb6vx2_subtitle {
                font-size: clamp(1.8rem, 11vw, 3rem);
                margin-bottom: 20px;
            }

            .yz9wc4fh1_tagline {
                font-size: 0.7rem;
                letter-spacing: 2px;
                margin-bottom: 30px;
            }

            .kd7pf2xs8_btn {
                padding: 14px 35px;
                font-size: 0.8rem;
                letter-spacing: 1.5px;
            }
        }




/* ========== Mobile Menu & Offcanvas Styles ========== */
/* ========== CRITICAL FIX FOR MOBILE MENU ========== */

/* Fix the offcanvas z-index and transform */
.offcanvas__info {
  background: #fff;
  position: fixed !important;
  right: 0 !important;
  top: 0 !important;
  width: 400px;
  height: 100%;
  z-index: 10000 !important; /* MUST be above overlay */
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  
  /* Hidden by default - off screen to the right */
  transform: translateX(calc(100% + 80px)) !important;
  transition: transform 0.45s ease-in-out !important;
}

.offcanvas__info::-webkit-scrollbar {
  display: none;
}

/* When menu is open - slide in */
.offcanvas__info.info-open {
  transform: translateX(0) !important;
  opacity: 1 !important;
}

/* Overlay must be below offcanvas */
.offcanvas__overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(21, 21, 21, 0.8) !important;
  z-index: 9999 !important; /* Below offcanvas but above everything else */
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  pointer-events: none;
}

.offcanvas__overlay.overlay-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
}

/* Ensure hamburger is clickable and visible */
.header__hamburger {
  cursor: pointer;
  z-index: 100;
  padding: 5px;
}

.sidebar__toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: none;
  background: transparent;
}

.sidebar__toggle i {
  font-size: 24px;
  color: #333;
  transition: color 0.3s;
}

.sidebar__toggle:hover i {
  color: #AC1E23;
}

/* Mobile responsive width */
@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px !important;
  }
}

@media (max-width: 375px) {
  .offcanvas__info {
    width: 280px !important;
  }
}

/* Body overflow when menu is open */
body.menu-open {
  overflow: hidden !important;
}




.gallery-section .array-button .array-prev, .gallery-section .array-button .array-next {
  background-color: transparent !important;
  font-size: 60px;
  color: var(--text);
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translate(-50%, -50%);
  box-shadow: none;
  z-index: 99;
  border: 0px;
}
@media (max-width: 1399px) {
  .gallery-section .array-button .array-prev, .gallery-section .array-button .array-next {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .gallery-section .array-button .array-prev, .gallery-section .array-button .array-next {
    font-size: 40px;
  }
}
.gallery-section .array-button .array-next {
  left: auto;
  right: 5%;
}

.gallery-image {
  position: relative;
}
.gallery-image img {
  width: 100%;
  height: 100%;
  border-radius: 27px;
  object-fit: cover;
}
@media (max-width: 575px) {
  .gallery-image {
    height: 400px;
  }
}
.gallery-image .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 42px;
  z-index: 9;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  transition-delay: 0s;
  transition-delay: 0s;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
}
.gallery-image .icon i {
  color: var(--white);
}
.gallery-image::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: 0.5s all ease;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 27px;
}
.gallery-image:hover .icon {
  -webkit-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
  transition-delay: 300ms;
  opacity: 1;
  visibility: visible;
}
.gallery-image:hover::after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.galler-image-2 {
  position: relative;
  height: 448px;
}
.galler-image-2 img {
  width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  .galler-image-2 {
    height: 380px;
  }
}
.galler-image-2 .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  z-index: 9;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  transition-delay: 0s;
  transition-delay: 0s;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
}
.galler-image-2 .icon i {
  color: var(--white);
}
.galler-image-2::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: 0.5s all ease;
  background-color: rgba(0, 0, 0, 0.5);
}
.galler-image-2:hover .icon {
  -webkit-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
  transition-delay: 300ms;
  opacity: 1;
  visibility: visible;
}
.galler-image-2:hover::after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}



 .nav-menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
     
        flex-direction: column;
    }

    .nav-item {
        position: relative;
    }

    .nav-link {
        text-decoration: none;
        color: #333;
        font-size: 16px;
        font-weight: 500;
        padding: 0.5rem 1rem;
        transition: color 0.3s ease;
        display: block;
    }

    .nav-link:hover {
        color: #ff6b6b;
    }

    .nav-item-active .nav-link {
        color: #ff6b6b;
        font-weight: 600;
    }

    .nav-item-dropdown::after {
        content: '▼';
        font-size: 10px;
        margin-left: 5px;
        color: #666;
    }

    .contact-button {
        background-color: var(--theme);
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    }

    .contact-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    }

    .contact-button:active {
        transform: translateY(0);
    }

   .mob-banner {
    background:linear-gradient(to bottom, rgba(66, 3, 45, 0.88) 0%, rgba(71, 43, 50, 0.80) 24%, rgba(180, 80, 60, 0.75) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2.5rem 1.8rem;
}

.mob-banner-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 100%;
}

.legacy-badge {
    background: rgba(229, 197, 146, 0.25);
    color: #E5C592;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    width: fit-content;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(229, 197, 146, 0.3);
}

.banner-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0.5rem 0 0 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.banner-subtitle {
    color: #E5C592;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.banner-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0.8rem 0 1rem 0;
    max-width: 95%;
    font-weight: 400;
}

.explore-btn {
    background: #E5C592;
    color: #2D1810;
    border: none;
    padding: 1rem 2.2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    background: #f0d4a8;
}

.explore-btn .arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    font-weight: 400;
}

.explore-btn:hover .arrow {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 375px) {
    .mob-banner {
        padding: 2rem 1.5rem;
    }
    
    .banner-title {
        font-size: 1.9rem;
    }
    
    .banner-subtitle {
        font-size: 1.7rem;
    }
    
    .banner-description {
        font-size: 0.88rem;
    }
    
    .explore-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 320px) {
    .banner-title {
        font-size: 1.7rem;
    }
    
    .banner-subtitle {
        font-size: 1.5rem;
    }
}


.offcanvas__overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}



/* Desktop Nav */
.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Hamburger Icon */
.uni-hamburger i {
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Mobile Sidebar */
.uni-mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: -2px 0 15px rgba(0,0,0,0.25);
    transition: right 0.3s ease;
    padding: 20px;
}

.uni-mobile-sidebar.active {
    right: 0;
}

.uni-mobile-header {
    display: flex;
    justify-content: flex-end;
}

.uni-mobile-close i {
    font-size: 22px;
    cursor: pointer;
}

/* Overlay */
.uni-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 9998;
}

.uni-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Nav Links */
.uni-mobile-nav ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.uni-mobile-nav ul li {
    margin-bottom: 15px;
}

.uni-mobile-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    display: block;
    padding: 10px 0;
}

.header-logo img{
    max-height: 38px !important;
    width: auto;
}


/* Smooth image loading */
.food-image img {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Placeholder while loading */
.food-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    min-height: 250px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.food-image img[src] {
    background: none;
}




/* products-handler */
/* Category list item styling */
.widget-categories .categories-list li {
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
}

/* Active category highlight with ::before element */
.widget-categories .categories-list li.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 17px;
    background-color: var(--theme);
}

/* Active category text styling */
.widget-categories .categories-list li.active a {
    color: var(--theme);
    font-weight: 600;
}

/* Optional: Hover effect */
.widget-categories .categories-list li:hover::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 17px;
    background-color: var(--theme);
    opacity: 0.5;
}

.widget-categories .categories-list li:hover a {
    color: var(--theme);
}



/* Styling for the new Founder's Vision Section */
.founder-vision-wrapper {
    padding-top: 80px; /* Adjust spacing as needed */
    padding-bottom: 80px; /* Adjust spacing as needed */
}

.founder-vision-content {
    display: flex;
    flex-wrap: wrap; /* Allows stacking on smaller screens */
    align-items: center;
    gap: 40px; /* Spacing between image and text */
}

.founder-image-placeholder {
    flex: 1; /* Takes up one part of the space */
    min-width: 300px; /* Ensure a minimum width */
}

.founder-vision-text {
    flex: 1.5; /* Takes up more space than the image */
    min-width: 350px; /* Ensure a minimum width */
}

.founder-image-frame {
    /* Style similar to the existing image frame for consistency */
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.kurnool-about-label {
    /* Reusing the existing style for the label/tagline */
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-color-2, #AC1E23); /* Using a theme color variable */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.founder-heading {
    /* Styling for the main heading, matching the H1/H2 style */
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 30px;
}

.kurnool-highlight {
    /* Reusing the existing highlight color */
    color: var(--theme-color-2, #AC1E23);
}

.founder-points {
    margin-top: 20px;
}

.founder-point-item {
    margin-bottom: 25px;
}

.point-title {
    font-size: 20px;
    color: var(--heading-color, #1a1a1a);
    margin-bottom: 8px;
    font-weight: 700;
}

.point-title i {
    margin-right: 10px;
}

.point-description {
    font-size: 16px;
    color: var(--body-color, #555);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .founder-vision-content {
        flex-direction: column;
    }

    .founder-image-placeholder,
    .founder-vision-text {
        min-width: 100%;
    }
}

.testimonial-heading{
    margin-bottom: 50px;
    font-weight: 700;
}
.testimonial-content p{
    font-size: 30px;
    color: #555;
}
.awards-title{
    font-weight: 700;
}

.testimonial-heading h2{
    font-weight: 700;
}
@media (max-width: 768px) {
    .testimonial-content p {
        font-size: 20px;
    }
    .founder-vision-wrapper{
        padding-bottom: 0;
        padding-top: 0;
    }
    .heritage-section {
        padding: 0;
    }
    .food-category-section{
        padding: 40px 0;
    }
    .contact-info-section{
        padding: 0;
    }
    .contact-title h3{
        font-size: 30px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 30px;
    }
    
}
/* Desktop: Show 3 cards per slide */
@media (min-width: 768px) {
    .delicacies-carousel-item.mobile-slide {
        display: none !important;
    }
    
    .delicacies-carousel-item.desktop-slide {
        display: flex !important;
        gap: 1.5rem;
        justify-content: space-between;
    }
    
    .delicacies-carousel-item.desktop-slide .delicacies-product-card {
        flex: 1;
        min-width: 0;
    }
    
    .delicacies-carousel-item.desktop-slide:not(.delicacies-active) {
        display: none !important;
    }
}

/* Mobile: Show 1 card per slide */
@media (max-width: 767px) {
    .delicacies-carousel-item.desktop-slide {
        display: none !important;
    }
    
    .delicacies-carousel-item.mobile-slide {
        display: flex !important;
        justify-content: center;
    }
    
    .delicacies-carousel-item.mobile-slide:not(.delicacies-active) {
        display: none !important;
    }
    
    .delicacies-carousel-item.mobile-slide .delicacies-product-card {
        width: 100%;
        max-width: 300px;
    }
}

/* Base carousel item styles */
.delicacies-carousel-item {
    display: none;
}

.delicacies-carousel-item.delicacies-active {
    display: flex !important;
}

/* Base styles - hide all slides by default */
.delicacies-carousel-item {
    display: none !important;
}

.delicacies-carousel-item.delicacies-active {
    display: flex !important;
}

/* Desktop: Show only desktop-slide elements with 3 cards */
@media (min-width: 768px) {
    .delicacies-carousel-item.mobile-slide {
        display: none !important;
    }
    
    .delicacies-carousel-item.desktop-slide.delicacies-active {
        display: flex !important;
        gap: 1.5rem;
        justify-content: space-between;
        flex-direction: row;
    }
    
    .delicacies-carousel-item.desktop-slide .delicacies-product-card {
        flex: 1;
        min-width: 0;
    }
}

/* Mobile: Show only mobile-slide elements with 1 card */
@media (max-width: 767px) {
    .delicacies-carousel-item.desktop-slide {
        display: none !important;
    }
    
    .delicacies-carousel-item.mobile-slide.delicacies-active {
        display: flex !important;
        justify-content: center;
        align-items: center;
    }
    
    .delicacies-carousel-item.mobile-slide .delicacies-product-card {
        width: 100%;
        max-width: 300px;
    }
}



/* Using ID - Most specific, won't affect anything else */
#carouselExampleAutoplaying .carousel-inner {
   
}

#carouselExampleAutoplaying .carousel-item {
    
}

#carouselExampleAutoplaying .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* home page mobile banner */
/* Hide mobile by default, show desktop */
#carouselExampleAutoplaying .mobile-banner {
    display: none;
}

#carouselExampleAutoplaying .desktop-banner {
    display: block;
}

/* Base carousel styling */
#carouselExampleAutoplaying .carousel-item {
    
}

#carouselExampleAutoplaying .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile: Show mobile images, hide desktop */
@media (max-width: 768px) {
    #carouselExampleAutoplaying .mobile-banner {
        display: block;
    }
    
    #carouselExampleAutoplaying .desktop-banner {
        display: none;
    }
    
    #carouselExampleAutoplaying .carousel-item {
        height: 500px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1199px) {
    #carouselExampleAutoplaying .carousel-item {
        height: 500px;
    }
}