.cus-h-logo, .cus-f-logo{
    width: 90px;
}
.policy{
    width: 90%;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}
.tab-mou{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.tab-mou th, .tab-mou td{
    padding: 10px;
}
.tab-mou-th-1, .tab-mou-th-4, .tab-mou-td-1, .tab-mou-td-4{
    width: 100px;
    text-align: center;
}


.whatsapp-ico {
    position: fixed;
    bottom: 30px;
    right: 50px;
    z-index: 9999;
}

/* PERFECT CIRCLE CONTAINER */
.whatsapp-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    animation: whatsappPulse 2s infinite;
}

/* IMAGE FIX */
.whatsapp-circle img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

/* PULSE ANIMATION */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 420px) {
    .whatsapp-ico{
        position: fixed;
        bottom: 25px;
        right: 30px;
    }
}

/* ===== WHY FAT (FAQ) ===== */
#why-fat {
    padding: 50px 0;
    background: #ffffff;
}

.faq-item {
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: bold;
    background: #f9f9f9;
}

.faq-question i {
    color: #D4AF37;
    font-size: 18px;
}

.faq-question .arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 20px;
    background: #ffffff;
    color: #555;
    line-height: 26px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

/* PAGE LAYOUT */
.search-page {
    padding: 0px 20px;
}

/* FILTER PANEL */
.filter-panel {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .filter-panel{
        margin-bottom: 40px;
    }
}

.filter-panel h4 {
    margin-bottom: 20px;
    font-weight: bold;
}

.filter-group {
    margin-bottom: 20px;
}

/* PRODUCT RESULTS */
.search-product {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 15px;
    margin-bottom: 30px;
}

.search-product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.search-product h5 {
    font-size: 16px;
    margin: 12px 0 6px;
}

.search-product .price {
    color: #D4AF37;
    font-weight: bold;
    margin-bottom: 10px;
}

.btn-enquiry {
    display: block;
    width: 100%;
    text-align: center;
    padding: 8px 18px;
    border: 2px solid #D4AF37;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}


.btn-enquiry:hover {
    background: #D4AF37;
    text-decoration: none;
    color: white;
}

/* PRODUCT DETAIL PAGE */
.product-detail-page {
    padding: 100px 0;
    background: #f9f9f9;
}

/* Header */
.product-header {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.product-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 6px;
}

.product-category {
    font-size: 14px;
    color: #777;
}

/* Image */
.product-image-box {
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-image-box img {
    width: 100%;
    border-radius: 4px;
}

/* Info */
.product-info {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-desc {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 20px;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.product-specs li {
    font-size: 14px;
    margin-bottom: 8px;
}

/* Price */
.product-price {
    font-size: 26px;
    font-weight: bold;
    color: #D4AF37;
    margin-bottom: 25px;
}

/* Actions */
.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 12px 22px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 3px;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    color: #fff;
    text-decoration: none;
}

.btn-share {
    background: transparent;
    border: 2px solid #D4AF37;
    color: #000;
    padding: 10px 22px;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-share:hover {
    background: #D4AF37;
}

/* Mobile */
@media (max-width: 768px) {
    .product-title {
        font-size: 24px;
    }

    .product-actions {
        flex-direction: column;
    }
}


@media only screen and (max-width: 480px) {
    .scroll-marquee {
        margin-top: 0px;
        margin-bottom: 0px;
    } 
    .RightToLeft p {
        font-size: 3em;
    }
    .LeftToRight p {
        font-size: 2em;
        margin-top: 40px;
        margin-bottom: 0px;
    }
    #top-bar{
        display: none !important;
    }
    .m-table-mou{
        overflow-x: auto;
        display: block;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .tab-mou{
        border-collapse: collapse;
        min-width: 600px;
    }
}