.about-section .about-text {
    max-width: 1100px !important;
    /* wider */
    margin: 0 auto !important;
    text-align: center;
    display: block;
    line-height: 1.7;
}

.about-title {
    text-align: center !important;
    width: 100%;
}


/* scrollable row */
.features-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    /* padding: 1rem 0; */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.features-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.feature-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .features-scroll {
        justify-content: center;
        flex-wrap: wrap;
    }

    .feature-item {
        white-space: normal;
        flex: 0 1 calc(25% - 1.5rem);
    }
}

/* Footer */
footer {
    background-color: #4A3020;
    /* Your primary brown */
    color: #FFFFFF;
    /* White text */
}

footer a {
    color: #FFB347;
    /* Golden orange from your logo */
}

footer a:hover {
    color: #FF8C42;
    /* Warm orange accent */
}

/* Footer Styling with Primary Color #4A3020 */
.footer-section {
    background-color: #4A3020;
    color: #f5f5f5;
    /* padding: 30px 0 0; */
}

.footer-menu-wrap {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Widget Title */
.footer-widget .widget-title h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Logo */
.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    filter: brightness(1.1);
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-contact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.single-contact .icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.single-contact .icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.single-contact .content span {
    display: block;
    color: #d4c4b0;
    font-size: 13px;
    margin-bottom: 5px;
}

.single-contact .content a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-contact .content a:hover {
    color: #d4c4b0;
}

/* Widget List */
.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list li {
    margin-bottom: 12px;
}

.widget-list li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.widget-list li a:before {
    content: "›";
    position: absolute;
    left: 0;
    color: #d4c4b0;
    transition: left 0.3s ease;
}

.widget-list li a:hover {
    color: #ffffff;
    padding-left: 20px;
}

.widget-list li a:hover:before {
    left: 5px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    background-color: #3a2618;
}

.copyright-and-payment-method-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-and-payment-method-area p {
    margin: 0;
    color: #d4c4b0;
    font-size: 14px;
}

.copyright-and-payment-method-area p a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-and-payment-method-area p a:hover {
    color: #d4c4b0;
}

/* Payment Methods */
.payment-method-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-method-area span {
    color: #d4c4b0;
    font-size: 14px;
}

.payment-method-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

.payment-method-area ul li img {
    height: 30px;
    width: auto;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
}

.payment-method-area ul li img:hover {
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-section {
        padding: 40px 0 0;
    }

    .footer-widget {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .copyright-and-payment-method-area {
        flex-direction: column;
        text-align: center;
    }

    .payment-method-area {
        flex-direction: column;
    }
}



/* breadcrumb */
/* Breadcrumb Container */
.breadcrumb-wrapper {
    background-color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: #4A3020;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.breadcrumb-item a:hover {
    color: #d4c4b0;
    background-color: rgba(74, 48, 32, 0.05);
}

/* Active/Current page */
.breadcrumb-item.active {
    color: #666;
    font-weight: 500;
}

/* Separator */
.breadcrumb-separator {
    color: #999;
    margin: 0 4px;
    user-select: none;
}

/* Home Icon Style */
.breadcrumb-item .home-icon {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb-wrapper {
        padding: 12px 15px;
    }

    .breadcrumb {
        font-size: 13px;
    }

    .breadcrumb-item a {
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        font-size: 12px;
    }
}

/* Demo Content */
.demo-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.demo-content h1 {
    color: #4A3020;
    margin-bottom: 15px;
}

.demo-content p {
    color: #666;
    line-height: 1.6;
}


.single-contact-contact {
    flex-direction: column; /* stack children vertically */
}