.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;
}

/* PRODUCT LIGHT DEMO */

.fat-light-demo{
    text-align:center;
}

.fat-light-container{
    position:relative;
    display:inline-block;
    width:100%;
}

.fat-light-state{
    width:100%;
    display:block;
}

.fat-light-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    opacity:0;
    transition:opacity .8s ease-in-out;
}

.fat-light-overlay.active{
    opacity:1;
}

/* SWITCH BOARD */

.switches{
    height:100px;
    width:140px;
    margin-top: 5px;
    margin-bottom:10px;
    margin-left: auto;
    margin-right: auto;
    padding:10px 10px;
    background:#333;
    border-radius:4px;
    position:relative;
}

.switches:before{
    content:"";
    position:absolute;
    left:-25px;
    top:-35px;
    width:100%;
    height:100%;
    z-index:-10;
    padding:35px 25px;

    background-image:linear-gradient(
        to bottom,
        rgb(233,226,223) 1.6%,
        #D4AF37 94.9%,
        #c89f1d
    );

    border-radius:2px;
}

.switches:after{
    content:"";
    position:absolute;
    bottom:-35px;
    left:-2%;
    width:104%;
    z-index:-12;
}

/* SWITCH */

.switch{
    float:left;
    width:48%;
    height:100%;
    margin:0 1%;

    background-image:linear-gradient(
        to top,
        rgb(233,226,223) 1.6%,
        rgb(162,153,148) 94.9%
    );

    box-shadow:
        inset 0 10px rgba(255,255,255,.7),
        inset 0 11px 1px rgba(250,250,250,.2),
        inset 0 -2px 1px rgba(0,0,0,.2);

    border-radius:2px;
    position:relative;
    cursor:pointer;
}

.switch:before{
    content:"";
    position:absolute;

    width:36%;
    height:4px;

    left:32%;
    top:77%;

    background:#00d9ff;

    border-radius:12px;

    box-shadow:
        0 0 6px rgba(0,217,255,.8);

    border:1px solid rgba(0,0,0,.1);
}

.switch:after{
    content:"";
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    height:20%;

    background:linear-gradient(
        to bottom,
        rgba(65,50,0,.25) 0%,
        rgba(65,50,0,0) 100%
    );
}

/* SWITCH PRESSED */

.switch.on{

    box-shadow:
        inset 0 -10px 1px 1px rgba(0,0,0,.5);
}

.switch.on:before{

    top:70%;

    background:#fff;

    box-shadow:
        0 0 10px rgba(255,255,255,.8);
}

.switch.on:after{

    top:90%;
    height:50%;

    background:linear-gradient(
        to bottom,
        rgba(65,50,0,.3) 0%,
        rgba(65,50,0,0) 100%
    );
}

/* LABELS */

.switch-board-labels{

    width:200px;

    margin:15px auto;

    display:flex;

    justify-content:space-between;

    font-size:12px;

    font-weight:700;

    color:#0A3559;

    text-transform:uppercase;
}

.switch-board-labels span{

    width:90px;

    text-align:center;

    line-height:20px;
}


/* Info */
.product-info {
    background: #fff;
    padding: 5px;
    border-radius: 4px;
}

.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;
    text-align: center;
}

.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-info {
        padding: 20px;
        padding-top:30px;
    }
    .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;
    }
}