/* --- Modern Menu Styles --- */
    :root {
        --menu-primary: #900808;
        --menu-secondary: #fdb400;
        --text-dark: #2C3E50;
        --text-gray: #7F8C8D;
        --bg-cream: #FAF8F5;
        --card-white: #FFFFFF;
        --veg-green: #27AE60;
        --nonveg-red: #E74C3C;
    }

    .menu-section-wrapper {
        background-color: var(--bg-cream);
        padding: 60px 0;
    }

    .section-head h2.title {
        color: var(--text-dark);
        font-weight: 700;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 26px;
    }

    .section-head p {
        color: var(--text-gray);
        max-width: 700px;
        margin: 0 auto 20px auto;
        font-size: 1rem;
        line-height: 1.6;
    }

    /* --- Scrollable Tabs for Mobile --- */
    .custom-nav-tabs {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 40px;
        gap: 12px;
        padding: 0;
        border: none;
    }

    .custom-nav-tabs li {
        list-style: none;
        margin: 0;
    }

    .custom-nav-tabs a {
        display: inline-block;
        padding: 14px 32px;
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 600;
        font-size: 17px;/* 
        border-radius: 2px;
        transition: all 0.3s ease;
        background: var(--card-white);
        border: 2px solid #E8E6E3; */
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
	.custom-nav-tabs a.active{
        /* background-color: var(--menu-primary);
        color: #fff;
        border-color: var(--menu-primary); */
        box-shadow: 0 4px 12px rgba(160, 64, 48, 0.2);
        /* transform: translateY(-2px); */
    }
    .custom-nav-tabs a:hover {
        background-color: #e7e5e5;
        color: #333;
        border-color: #e7e5e5;
        box-shadow: 0 4px 12px rgba(160, 64, 48, 0.2);
        transform: translateY(-2px);
    }

    /* Mobile Scroll Fix */
    @media (max-width: 768px) {
        .custom-nav-tabs {
            justify-content: flex-start;
            overflow-x: auto;
            flex-wrap: nowrap;
            padding-bottom: 15px;
			margin-bottom: 5px!important;
            -webkit-overflow-scrolling: touch;
        }
        .custom-nav-tabs::-webkit-scrollbar {
            height: 4px;
        }
        .custom-nav-tabs::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 4px;
        }
        .custom-nav-tabs a {
            padding: 12px 24px;
            font-size: 0.9rem;
        }
    }

    /* --- Menu Grid System --- */
    .menu-grid-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    @media (max-width: 992px) {
        .menu-grid-container {
            grid-template-columns: 1fr;
            gap: 5px;
        }
    }
	@media (max-width: 480px) {
        .menu-grid-container {
            grid-template-columns: 1fr;
            gap: 5px;
        }
    }
    /* --- Menu Item Card --- */
    .menu-item-card {
        background: var(--card-white);
        padding: 10px;
        border-radius: 12px;
        border: 1px solid #F0EDE8;
        transition: all 0.3s ease;
        position: relative;
        height: 100%;
    }
	.menu-item-card:hover .item-name {
    color: var(--menu-primary);
}
    .menu-item-card:hover {
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transform: translateY(-2px);
    }

    /* Veg/Non-veg Icons */
    .food-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 16px;
        height: 16px;
        border: 2px solid;
        margin-right: 10px;
        vertical-align: middle;
        flex-shrink: 0;
    }

    .food-icon.veg {
        border-color: var(--veg-green);
    }

    .food-icon.veg::after {
        content: '';
        width: 8px;
        height: 8px;
        background: var(--veg-green);
        border-radius: 50%;
    }

    .food-icon.nonveg {
        border-color: var(--nonveg-red);
    }

    .food-icon.nonveg::after {
        content: '';
        width: 10px;
        height: 10px;
        background: var(--nonveg-red);
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .item-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 5px;
        border-bottom: 1px dotted #D4D0C8;
    }

    .item-name-wrapper {
        display: flex;
        align-items: center;
        flex: 1;
    }

    .item-name {
        font-size: 18px;
        font-weight: 500;
        color: var(--text-dark);
        margin: 0;
        line-height: 1.3;
    }

    .item-price {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--menu-primary);
        white-space: nowrap;
        margin-left: 16px;
        flex-shrink: 0;
    }

    .item-desc {
        font-size: 14px;
        color: var(--text-gray);
        line-height: 1.6;
        margin: 0;
    }

    /* Tab Content Logic */
    .tab-pane {
        display: none;
        animation: fadeIn 0.5s ease;
    }

    .tab-pane.active {
        display: block;
    }

    @keyframes fadeIn {
        from { 
            opacity: 0; 
            transform: translateY(10px); 
        }
        to { 
            opacity: 1; 
            transform: translateY(0); 
        }
    }

    /* Section Title */
    .section-title {
        text-align: center;
        margin-bottom: 32px;
    }

    .section-title h4 {
        color: var(--text-dark);
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0 0 12px 0;
    }

    .dlab-separator-outer {
        display: flex;
        justify-content: center;
    }

    .dlab-separator {
        width: 80px;
        height: 3px;
        background: var(--menu-primary);
        border-radius: 2px;
    }
	/* menu css end */
	
	/* about us section */
	.services-flow {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 20px 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    gap: 10px;
}

.flow-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 35px rgba(218, 165, 32, 0.3);
    border-color: #fdb400;
    background: linear-gradient(135deg, #fff 0%, #fffef0 100%);
}

.flow-item i {
    font-size: 32px;
    color: #fdb400;
    transition: all 0.3s ease;
}

.flow-item:hover i {
    transform: scale(1.2) rotate(-5deg);
    color: #B8860B;
    filter: drop-shadow(0 4px 8px rgba(218, 165, 32, 0.4));
}

.flow-item span {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-align: center;
    transition: all 0.3s ease;
}

.flow-item:hover span {
    color: #B8860B;
}

.flow-arrow {
    font-size: 20px;
    color: #DAA520;
    font-weight: bold;
    opacity: 0.6;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.flow-item:hover + .flow-arrow {
    opacity: 1;
    transform: translateX(3px);
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Alternative: Diamond separator */
.flow-arrow.diamond::before {
    content: "◆";
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 992px) {
    /*.services-flow {*/
    /*    gap: 10px;*/
    /*    padding: 25px 15px;*/
    /*}*/
    
    .flow-item {
        min-width: 95px;
        padding: 15px 12px;
    }
    
    .flow-item i {
        font-size: 28px;
    }
    
    .flow-item span {
        font-size: 13px;
    }
    
    .flow-arrow {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    /*.services-flow {*/
    /*    flex-direction: column;*/
    /*    gap: 5px;*/
    /*    padding: 10px;*/
    /*}*/
    
    .flow-item {
        min-width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        padding: 18px 20px;
        gap: 20px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 5px 0;
    }
    
    .flow-item i {
        font-size: 28px;
        flex-shrink: 0;
    }
    
    .flow-item span {
        font-size: 15px;
        text-align: left;
    }
}

/* Extra hover effect - shimmer */
.flow-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
    transition: left 0.5s ease;
    border-radius: 12px;
}

.flow-item {
    position: relative;
    overflow: hidden;
}

.flow-item:hover::before {
    left: 100%;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
	margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.feature-item i {
    font-size: 20px;
    min-width: 24px;
    color: #2d3f2e; /* Anjappar red accent */
}

.feature-item span {
    font-weight: 500;
    color: #333;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* buttons */
.button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 25px;
}

.site-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Primary Button - Red (Anjappar Brand) */
.btn-primary {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.5);
    background: linear-gradient(135deg, #b71c1c 0%, #9a0007 100%);
}

/* Secondary Button - Outline Style */
.btn-secondary {
    background: transparent;
    color: #d32f2f;
    border-color: #d32f2f;
}

.btn-secondary:hover {
    background: #d32f2f;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
}

/* Icon Styling */
.btn-icon i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.site-button:hover i {
    transform: scale(1.1);
}

/* Ripple Effect */
.site-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.site-button:active::after {
    width: 300px;
    height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        align-items: stretch;
    }
    .site-button {
        justify-content: center;
        padding: 12px 24px;
    }
}
/* ======================================= */
/* --- Catering Section Styles --- */
.catering-section-wrapper {
    padding: 0;
    margin: 0;
}

.catering-info {
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.catering-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(253,180,0,0.1)"/><circle cx="80" cy="60" r="3" fill="rgba(253,180,0,0.1)"/><circle cx="50" cy="90" r="2" fill="rgba(253,180,0,0.1)"/></svg>');
    pointer-events: none;
}

/* Gold Badge */
.badge-gold {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(253, 180, 0, 0.2);
    color: #F44336;
    border: 1px solid #F44336;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.text-gold {
    color: #fdb400 !important;
}

.opacity-90 {
    opacity: 0.9;
}

/* Event Types Grid */
.catering-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 25px 0;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgb(143 29 29 / 10%);
    border-radius: 10px;
    border: 1px solid rgb(139 29 29 / 20%);
    transition: all 0.3s ease;
}

.event-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.event-item i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.event-item span {
    font-size: 14px;
    font-weight: 600;
}

/* Features List */
.catering-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.catering-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    opacity: 0.95;
}

.catering-features-list i {
    font-size: 16px;
    flex-shrink: 0;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, #fdb400 0%, #e6a200 100%);
    color: #1a1a1a;
    border: none;
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(253, 180, 0, 0.4);
    color: #1a1a1a;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.8);
}

.btn-outline-white:hover {
    background: #fff;
    color: #d2151e;
    transform: translateY(-3px);
    border-color: #fff;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-icon i {
    font-size: 16px;
}

/* Image Side */
.catering-gallery-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.dlab-thum.h-100 {
    height: 100%;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Badge on Image */
.catering-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    color: #d2151e;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatBadge 3s ease-in-out infinite;
}

.catering-badge i {
    font-size: 24px;
    color: #d2151e;
}

.catering-badge span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Mini Gallery Preview */
.catering-mini-gallery {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 8px;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    width: 100%;
    justify-content: flex-end;
}

.mini-thumb {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.mini-thumb:hover {
    border-color: #fdb400;
    transform: scale(1.05);
}

.mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-thumb span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 10px;
    padding: 4px;
    text-align: center;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991px) {
    .catering-info {
        min-height: auto;
        padding: 40px 25px !important;
    }
    
    .catering-gallery-wrapper {
        min-height: 400px;
    }
    
    .catering-events-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .catering-mini-gallery {
        padding: 15px;
    }
    
    .mini-thumb {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .catering-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .d-flex.flex-wrap.gap-3 {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-icon {
        justify-content: center;
    }
    
    .catering-badge {
        bottom: 20px;
        left: 20px;
        padding: 12px 16px;
    }
    
    .catering-badge span {
        font-size: 12px;
    }
}

/* Hover Effects for Overlay Icons */
.overlay-icon a,
.overlay-icon span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.overlay-icon a:hover,
.overlay-icon span:hover {
    transform: scale(1.1);
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.overlay-icon i {
    font-size: 16px !important;
    color: #d2151e !important;
}

/* google reviews */

/* --- Google Reviews Section Styles --- */
.google-reviews-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

/* Google Badge */
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    font-weight: 600;
    color: #5f6368;
    font-size: 15px;
}

.google-icon {
    width: 28px;
    height: 28px;
}

/* Rating Summary */
.google-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 14px 32px;
    /* background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06); */
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    font-size: 22px;
    color: #dadce0;
}

.rating-stars i.filled {
    color: #fbbc04;
}

.rating-score {
    font-size: 28px;
    font-weight: 700;
    color: #202124;
}

.rating-count {
    font-size: 15px;
    color: #5f6368;
}

/* Write Review Button */
.btn-write-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #FFC107;
    color: #3F51B5;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.btn-write-review:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
    color: #fff;
}

/* Google Review Card Enhancements */
.google-review-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.google-review-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

/* Google Review Badge on Avatar */
.google-review-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 2px solid #fff;
}

.google-review-badge img {
    width: 16px;
    height: 16px;
}

/* Google Stars */
.google-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
	justify-content: center;
}

.google-stars i {
    font-size: 14px;
    color: #fbbc04;
}

.review-time {
    font-size: 13px;
    color: #5f6368;
    margin-left: 10px;
}

/* Local Guide Tag */
.local-guide-tag {
    display: inline-block;
    padding: 2px 8px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: #fff;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-left: 8px;
}

/* Testimonial Text */
.google-review-card .testimonial-text p {
    color: #3c4043;
    line-height: 1.7;
    font-size: 14px;
}

/* Testimonial Name */
.google-review-card .testimonial-name {
    color: #202124;
    font-weight: 700;
}

/* Testimonial Position */
.google-review-card .testimonial-position {
    color: #5f6368;
    font-size: 13px;
}

/* Owl Carousel Customization */
.owl-theme .owl-dots .owl-dot span {
    background: #dadce0;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #4285f4;
}

/* Responsive Design */
@media (max-width: 991px) {
    .google-rating-summary {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .google-badge {
        padding: 8px 18px;
        font-size: 14px;
    }
    
    .google-rating-summary {
        padding: 20px;
    }
    
    .rating-score {
        font-size: 24px;
    }
    
    .google-stars {
        flex-wrap: wrap;
    }
    
    .review-time {
        margin-left: 0;
        margin-top: 5px;
        width: 100%;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.google-review-card {
    animation: fadeIn 0.6s ease;
}

/* blogs */
/* --- Enhanced Blog Section Styles --- */

/* Category Filter Tabs */
.blog-category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 8px 20px;
    background: #fff;
    border: 2px solid #e8e6e3;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #5f6368;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
    background: #d2151e;
    border-color: #d2151e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(210, 21, 30, 0.3);
}

/* Enhanced Card Styles */
.enhanced-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0ede8;
}

.enhanced-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: #d2151e;
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.enhanced-card:hover .image-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Category Badges */
.category-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge.recipes {
    background: linear-gradient(135deg, #d2151e 0%, #a01015 100%);
}

.category-badge.heritage {
    background: linear-gradient(135deg, #fdb400 0%, #c99000 100%);
    color: #1a1a1a;
}

.category-badge.festivals {
    background: linear-gradient(135deg, #4285f4 0%, #3367d6 100%);
}

.category-badge.news {
    background: linear-gradient(135deg, #34a853 0%, #2d8b45 100%);
}

/* Read Time */
.read-time {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #3c4043;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.read-time i {
    font-size: 11px;
}

/* Post Meta */
.post-meta {
    margin-bottom: 12px;
}

.post-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #7f8c8d;
    font-weight: 500;
}

.post-date i {
    font-size: 12px;
    color: #d2151e;
}

/* Post Title Hover */
.enhanced-card .post-title a {
    color: #2c3e50;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.enhanced-card:hover .post-title a {
    color: #d2151e;
}

/* Post Text */
.enhanced-card .dlab-post-text p {
    color: #5f6368;
    line-height: 1.7;
    font-size: 14px;
}

/* Enhanced Read More Button */
.enhanced-read-more {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 10px 22px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
}

.enhanced-read-more i {
    transition: transform 0.3s ease;
}

.enhanced-read-more:hover i {
    transform: translateX(4px);
}

/* Card Accent Line */
/* .card-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d2151e, #fdb400);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
} */

.enhanced-card:hover .card-accent-line {
    transform: scaleX(1);
}

/* View All Button */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: #d2151e;
    border: 2px solid #d2151e;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #d2151e;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(210, 21, 30, 0.3);
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(4px);
}

/* Owl Carousel Customization */
.owl-theme .owl-nav [class*='owl-'] {
    background: #fff !important;
    color: #d2151e !important;
    border: 2px solid #e8e6e3 !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    transition: all 0.3s ease !important;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #d2151e !important;
    color: #fff !important;
    border-color: #d2151e !important;
    transform: scale(1.1);
}

.owl-theme .owl-dots .owl-dot span {
    background: #dadce0;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #d2151e;
    width: 24px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .blog-category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-tab {
        flex-shrink: 0;
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .image-overlay {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .enhanced-card .dlab-post-text p {
        font-size: 13px;
    }
    
    .btn-view-all {
        width: 100%;
        justify-content: center;
    }
}

/* Animation Keyframes */
@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.enhanced-card:hover .category-badge {
    animation: floatUp 2s ease-in-out infinite;
}

/* Loading Skeleton for Blog Cards */
.blog-card-skeleton {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.skeleton-image {
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-content {
    padding: 20px;
}

.skeleton-line {
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    margin-bottom: 10px;
}

.skeleton-line.short { width: 40%; }
.skeleton-line.medium { width: 70%; }
.skeleton-line.long { width: 100%; }

/* footer */
/* About us Page */
/* ===== ENHANCED IMAGE SHOWCASE STYLES ===== */
.image-showcase-wrapper {
    padding: 20px;
    position: relative;
}

.main-image-container {
    z-index: 2;
    position: relative;
}

.image-frame-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.main-showcase-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame-wrapper:hover .main-showcase-image {
    transform: scale(1.05);
}

/* Decorative Border Effect */
.decorative-border {
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 3px solid rgba(230, 126, 34, 0.3);
    border-radius: 12px;
    z-index: -1;
    transition: all 0.3s ease;
}

.image-frame-wrapper:hover .decorative-border {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    border-color: rgba(230, 126, 34, 0.5);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    z-index: 10;
    animation: floatBadge 3s ease-in-out infinite;
}

.badge-top-left {
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.badge-bottom-right {
    bottom: 30px;
    right: -15px;
    animation-delay: 1.5s;
}

.badge-content {
    min-width: 100px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Secondary Image (Collage Effect) */
.secondary-image {
    bottom: -30px;
    left: -30px;
    z-index: 1;
    transform: rotate(-5deg);
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.image-showcase-wrapper:hover .secondary-image {
    transform: rotate(0deg) scale(1.05);
}

/* Decorative Elements */
.decorative-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(230, 126, 34, 0.1);
    z-index: 0;
}

.decorative-dot-1 {
    width: 60px;
    height: 60px;
    top: 50px;
    right: 50px;
}

.decorative-dot-2 {
    width: 40px;
    height: 40px;
    bottom: 100px;
    left: 30px;
    background: rgba(212, 175, 55, 0.15);
}

/* Pattern Overlay */
.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='6'");

/* Counter Style Fix */
.counter-style-5 {
    padding: 20px;
    transition: transform 0.3s ease;
}

.counter-style-5:hover {
    transform: translateY(-5px);
}

.counter-wrapper {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.counter-wrapper .counter {
    display: inline-block;
}

.counter-wrapper .text-warning {
    font-size: 2rem;
    margin-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .counter-wrapper {
        font-size: 2.5rem;
    }
    
    .counter-wrapper .text-warning {
        font-size: 1.5rem;
    }
}
/* ===== BADGE STYLES ===== */

/* Base Badge */
.badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

/* Badge Colors */
.badge-primary {
    color: #fff;
    background-color: #E67E22;
    border-color: #E67E22;
}

.badge-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.badge-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.badge-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.badge-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.badge-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

.badge-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

/* Badge with Border */
.badge.border-primary {
    background-color: transparent;
    color: #E67E22;
}

.badge.border-success {
    background-color: transparent;
    color: #28a745;
}

.badge.border-warning {
    background-color: transparent;
    color: #ffc107;
}

.badge.border-danger {
    background-color: transparent;
    color: #dc3545;
}

/* Badge Sizes */
.badge-sm {
    padding: 4px 8px;
    font-size: 0.65rem;
}

.badge-lg {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Badge with Icon */
.badge i {
    margin-right: 5px;
}

/* Badge Hover Effect */
.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Badge Pill (Rounded) */
.badge-pill {
    border-radius: 50px;
    padding-left: 14px;
    padding-right: 14px;
}

/* Badge Group */
.badge-group {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Anjappar Custom Badges */
.badge-anjappar {
    background: linear-gradient(135deg, #E67E22, #D4AF37);
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== BADGE LIGHT STYLE ===== */
.badge-light {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 4px;
    color: #212529;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.badge-light:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
    color: #212529;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ===== ALL BADGE VARIANTS ===== */
.badge-primary {
    color: #fff;
    background-color: #E67E22;
    border-color: #E67E22;
}

.badge-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.badge-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.badge-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.badge-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.badge-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

/* ===== BADGE WITH BORDER (Outline Style) ===== */
.badge.border-primary {
    background-color: transparent;
    color: #E67E22;
    border-color: #E67E22;
}

.badge.border-success {
    background-color: transparent;
    color: #28a745;
    border-color: #28a745;
}

.badge.border-warning {
    background-color: transparent;
    color: #ffc107;
    border-color: #ffc107;
}

.badge.border-danger {
    background-color: transparent;
    color: #dc3545;
    border-color: #dc3545;
}

.badge.border-light {
    background-color: transparent;
    color: #f8f9fa;
    border-color: #f8f9fa;
}

/* ===== BADGE SIZES ===== */
.badge-sm {
    padding: 3px 8px;
    font-size: 0.65rem;
}

.badge-lg {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* ===== BADGE PILLOW (Rounded) ===== */
.badge-pill {
    border-radius: 50px;
    padding-left: 14px;
    padding-right: 14px;
}

/* ===== BADGE WITH ICON ===== */
.badge i {
    margin-right: 5px;
    font-size: 0.9em;
}

/* ===== BADGE GROUP (Multiple Badges) ===== */
.badge-group {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.badge-group .badge {
    margin: 0;
}

/* ===== BADGE SPACING UTILITIES ===== */
.m-r5 { margin-right: 5px !important; }
.m-r10 { margin-right: 10px !important; }
.m-b5 { margin-bottom: 5px !important; }
.m-b10 { margin-bottom: 10px !important; }
.m-t5 { margin-top: 5px !important; }
.m-t10 { margin-top: 10px !important; }

/* ===== ANJAPPAR CUSTOM BADGES ===== */
.badge-anjappar-orange {
    background: linear-gradient(135deg, #E67E22, #D4AF37);
    color: #fff;
    border: none;
}

.badge-anjappar-red {
    background: linear-gradient(135deg, #8B0000, #E67E22);
    color: #fff;
    border: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .badge {
        padding: 4px 10px;
        font-size: 0.7rem;
    }
    
    .badge-lg {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .badge i {
        margin-right: 3px;
    }
}/* ===== BADGE LIGHT STYLE ===== */
.badge-light {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 4px;
    color: #212529;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.badge-light:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
    color: #212529;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ===== ALL BADGE VARIANTS ===== */
.badge-primary {
    color: #fff;
    background-color: #E67E22;
    border-color: #E67E22;
}

.badge-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.badge-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.badge-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.badge-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.badge-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

/* ===== BADGE WITH BORDER (Outline Style) ===== */
.badge.border-primary {
    background-color: transparent;
    color: #E67E22;
    border-color: #E67E22;
}

.badge.border-success {
    background-color: transparent;
    color: #28a745;
    border-color: #28a745;
}

.badge.border-warning {
    background-color: transparent;
    color: #ffc107;
    border-color: #ffc107;
}

.badge.border-danger {
    background-color: transparent;
    color: #dc3545;
    border-color: #dc3545;
}

.badge.border-light {
    background-color: transparent;
    color: #f8f9fa;
    border-color: #f8f9fa;
}

/* ===== BADGE SIZES ===== */
.badge-sm {
    padding: 3px 8px;
    font-size: 0.65rem;
}

.badge-lg {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* ===== BADGE PILLOW (Rounded) ===== */
.badge-pill {
    border-radius: 50px;
    padding-left: 14px;
    padding-right: 14px;
}

/* ===== BADGE WITH ICON ===== */
.badge i {
    margin-right: 5px;
    font-size: 0.9em;
}

/* ===== BADGE GROUP (Multiple Badges) ===== */
.badge-group {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.badge-group .badge {
    margin: 0;
}

/* ===== BADGE SPACING UTILITIES ===== */
.m-r5 { margin-right: 5px !important; }
.m-r10 { margin-right: 10px !important; }
.m-b5 { margin-bottom: 5px !important; }
.m-b10 { margin-bottom: 10px !important; }
.m-t5 { margin-top: 5px !important; }
.m-t10 { margin-top: 10px !important; }

/* ===== ANJAPPAR CUSTOM BADGES ===== */
.badge-anjappar-orange {
    background: linear-gradient(135deg, #E67E22, #D4AF37);
    color: #fff;
    border: none;
}

.badge-anjappar-red {
    background: linear-gradient(135deg, #8B0000, #E67E22);
    color: #fff;
    border: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .badge {
        padding: 4px 10px;
        font-size: 0.7rem;
    }
    
    .badge-lg {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .badge i {
        margin-right: 3px;
    }
}:hover {
    background: linear-gradient(135deg, #D4AF37, #E67E22);
    color: #fff;
}

/* Badge with Shadow */
.badge-shadow {
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .badge {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    
    .badge-lg {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}


