/* Sticky Call */
.sticky-call {
    position: fixed;
    left: 20px;
    bottom: 85px;
    width: 40px;
    height: 40px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    text-decoration: none;
}

.sticky-call:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Sticky WhatsApp */
.sticky-whatsapp {
    position: fixed;
    left: 20px;
    bottom: 40px;
    width: 40px;
    height: 40px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    text-decoration: none;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Mobile */
@media (max-width:768px) {

    .sticky-call,
    .sticky-whatsapp {
        width: 35px;
        height: 35px;
        font-size: 22px;
        left: 15px;
    }
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

@media(max-width:768px) {
    .gallery-img {
        height: 180px;
    }
}

.pt-100 {
    padding-top: 50px !important;
}

.pb-100 {
    padding-bottom: 41px !important;
}

.footer-1 .footer-bottom {
    padding: 7px 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.footer .footer-widget-wrap {
    padding-top: 28px;
}

.breadcrumb-section .breadcrumb-wapper .breadcrumb-content {
    z-index: 2;
    position: relative;
    text-align: center;
    padding-top: 114px;
    padding-bottom: 51px;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.blog-img {
    overflow: hidden;
    display: block;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: .5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-content {
    padding: 28px;
}

.blog-content h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 6px;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    color: #b68c2f;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.blog-btn:hover {
    color: #000;
}

.blog-btn i {
    transition: .3s;
}

.blog-btn:hover i {
    transform: translateX(6px);
}

.home-blog-action {
    margin-top: 42px;
    text-align: center;
}

.view-all-blogs {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 14px 28px;
    border: 2px solid #b68c2f;
    border-radius: 8px;
    background: #b68c2f;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.view-all-blogs:hover {
    background: transparent;
    color: #b68c2f;
    transform: translateY(-2px);
}

.view-all-blogs i {
    transition: transform .3s;
}

.view-all-blogs:hover i {
    transform: translateX(5px);
}

.fclr {
    color: white;
}

.team-section {
    background: #f8f9fc;
}

.team-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.team-card img {
    width: 100%;
    height: 192px;
    object-fit: cover;
    transition: .4s;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-content {
    padding: 15px;
}

.team-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}

.team-content span {
    display: block;
    color: #c89b2d;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.team-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media(max-width:768px) {

    .team-card img {
        height: 220px;
    }

    .team-content h3 {
        font-size: 17px;
    }

    .team-content p {
        font-size: 13px;
    }

}

.committee-title {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #7b1e1e;
    padding: 8px 30px;
    border-bottom: 4px solid #d4af37;
    position: relative;
    letter-spacing: 1px;
}

.committee-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #7b1e1e;
    border-radius: 10px;
}

@media (max-width:768px) {
    .committee-title {
        font-size: 1.6rem;
        padding: 6px 20px;
    }
}

.blog-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: .3s;
}

.blog-content h3 a:hover {
    color: #b68c2f;
}

.blog-content p {
    color: #666;
    line-height: 1.75;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    color: #777;
    font-size: 14px;
    margin-bottom: 13px;
}

.blog-meta i {
    color: #b68c2f;
    margin-right: 5px;
}

.blog-type {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 14px;
    border-radius: 30px;
    color: #fff;
    background: #b68c2f;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.blog-img-placeholder {
    height: 300px;
    display: grid;
    place-items: center;
    color: #b68c2f;
    background: #f4efe5;
    font-size: 55px;
}

.blog-empty {
    padding: 60px 25px;
    border-radius: 15px;
    background: #fff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.blog-empty i {
    color: #b68c2f;
    font-size: 50px;
    margin-bottom: 18px;
}

.blog-detail-section {
    padding: 100px 0;
}

.blog-detail-card {
    overflow: hidden;
    border: 1px solid rgba(182, 140, 47, .13);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(33, 25, 9, .08);
}

.blog-detail-heading {
    padding: 38px 42px 30px;
}

.blog-detail-card h1 {
    margin: 14px 0 18px;
    color: #222;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.2;
}

.blog-detail-type {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 30px;
    background: #b68c2f;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-featured-image {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0 42px;
    border-radius: 15px;
    background: #eee;
}

.blog-featured-image img {
    display: block;
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-featured-image>span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #b68c2f;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .18);
}

.blog-featured-image:hover img {
    transform: scale(1.025);
}

.blog-detail-description {
    margin: 0;
    padding: 36px 42px;
    color: #555;
    font-size: 17px;
    line-height: 1.9;
}

.blog-detail-description p:last-child {
    margin-bottom: 0;
}

.blog-detail-description img {
    max-width: 100%;
    height: auto;
}

.blog-gallery-wrap {
    padding: 0 42px 42px;
}

.blog-gallery-wrap>h3 {
    position: relative;
    margin-bottom: 22px;
    padding-bottom: 12px;
    font-size: 24px;
}

.blog-gallery-wrap>h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52px;
    height: 3px;
    border-radius: 4px;
    background: #b68c2f;
}

.blog-gallery {
    margin-top: 0;
}

.blog-gallery a {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.blog-gallery img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: .4s;
}

.blog-gallery a:hover img {
    transform: scale(1.04);
}

.gallery-zoom {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(25, 20, 10, .4);
    color: #fff;
    font-size: 25px;
    opacity: 0;
    transition: .3s;
}

.blog-gallery a:hover .gallery-zoom {
    opacity: 1;
}

.blog-sidebar {
    position: sticky;
    top: 25px;
    padding: 30px;
    border: 1px solid rgba(182, 140, 47, .15);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(33, 25, 9, .08);
}

.sidebar-title {
    margin-bottom: 10px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
}

.sidebar-title span {
    color: #b68c2f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.sidebar-title h3 {
    margin: 4px 0 0;
    font-size: 26px;
}

.recent-blog-item {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 15px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    color: inherit;
    text-decoration: none;
}

.recent-blog-image {
    display: grid;
    width: 92px;
    height: 82px;
    place-items: center;
    overflow: hidden;
    border-radius: 10px;
    background: #f4efe5;
    color: #b68c2f;
    font-size: 25px;
}

.recent-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s;
}

.recent-blog-item time {
    display: block;
    margin-bottom: 5px;
    color: #888;
    font-size: 12px;
}

.recent-blog-item time i {
    margin-right: 4px;
    color: #b68c2f;
}

.recent-blog-item h4 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.45;
    transition: .3s;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.recent-blog-item:hover h4 {
    color: #b68c2f;
}

.recent-blog-item:hover img {
    transform: scale(1.07);
}

.sidebar-all-posts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
    padding: 13px 18px;
    border-radius: 8px;
    background: #b68c2f;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.sidebar-all-posts:hover {
    background: #222;
    color: #fff;
}

.recent-empty {
    padding: 20px 0 5px;
    color: #777;
}

@media (max-width: 991px) {
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 575px) {
    .blog-detail-section {
        padding: 70px 0;
    }

    .blog-detail-heading, .blog-detail-description {
        padding: 26px 22px;
    }

    .blog-featured-image {
        margin: 0 22px;
    }

    .blog-featured-image img {
        height: 280px;
    }

    .blog-gallery-wrap {
        padding: 0 22px 28px;
    }

    .blog-gallery img {
        height: 220px;
    }

    .blog-sidebar {
        padding: 24px 20px;
    }
}



/* 5 Columns */
@media(min-width:992px) {
    .col-lg-2-4 {
        width: 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.business-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .3s;
    height: 100%;
    border-top: 4px solid #ff4d00;
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.category {
    display: inline-block;
    background: #ff4d00;
    color: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.category i {
    margin-right: 6px;
}

.shop-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.business-info {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.business-info li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.business-info strong {
    color: #222;
}

.call-btn {
    display: block;
    text-align: center;
    background: #ff4d00;
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.call-btn:hover {
    background: #8d6824;
    color: #fff;
}