/********** Template CSS **********/
@media (min-width: 767px) {
    .mob-show{
        display: none !important;
    }
    .des-show{
        display: block !important;
    }
}
@media (max-width: 767px) {
    .mob-show{
        display: block !important;
    }
    .des-show{
        display: none !important;
    }
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.title-card-full {
    padding: 20px;
    background: red;
    margin: 0px;
}

.allpage.info {
    text-align: center;
    padding: 0px;
    font-size: 16px;
}

.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff;
}

/* Top Black Strip */
.top-strip {
    background: #000 !important;
    color: #fff;
    padding: 6px;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.top-strip span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
    /* 🔹 Slower speed */
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.banner {
    background: url("/img/banner.jpeg") no-repeat center center;
    background-size: cover;
    /* makes image fit fully */
    /* adjust as per your need */
    width: 100%;
}

/* Feature Row */
.features-area {
    background: #ce9233;
    color: #fff;
    padding: 10px 0;
}

.feature {
    text-align: center;
    flex: 1;
    min-width: 200px;
    margin: 10px 0;
}

.feature i {
    font-size: 26px;
    display: block;
    margin-bottom: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .features-row {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 100%;
        max-width: 350px;
        /* keeps it centered & neat */
    }
}


/* Info Section */
.info {
    text-align: center;
    padding: 20px;
    font-size: 16px;
}

.info h2 {
    color: #000;
}

.info p {
    margin: 15px;
}

/* Price List Table */

.old {
    text-decoration: line-through;
    color: #d32f2f;
    margin-right: 5px;
}

.new {
    color: #000;
    font-weight: bold;
}
hr{
    margin: 0 !important;
    background-color: rgb(26 26 26);
}
.odd-color{
    background: #ffdc79 !important;
}
.even-color{
    background: #fdecbb !important;
}
.price-list input {
    border: 1px solid #ccc;
    border-radius: 5px;
}

.alert:focus {
    outline: 3px solid yellow;
    outline-offset: 3px;
    box-shadow: 0 0 8px rgba(255,255,0,0.8);
}

.total {
    background: #e9ecef;
    text-align: center;
    border-radius: 5px;
}
.mob-total{
    background: red !important;
    border-radius: 15px 0px 15px 0px !important;
    color: white !important;
}




/* ================= Footer Styling ================= */
.footer {
    background: #000;
    /* Black background */
    color: #ddd;
    font-size: 15px;
    position: relative;
    border-top: 3px solid #f5c518;
    /* Gold line on top */
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer p,
.footer a {
    color: #ccc;
}

.footer a:hover {
    color: #f5c518;
    /* Gold hover */
    text-decoration: none;
}

/* Social Buttons */
.footer .btn-square {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer .btn-square i {
    font-size: 16px;
}

.footer .btn-square:hover {
    background: #f5c518;
    color: #000;
}

/* Bottom Strip */
.footer .bg-secondary {
    background: #111 !important;
    font-size: 14px;
}

.footer .bg-secondary a {
    color: #f5c518;
    font-weight: 500;
}

.footer .bg-secondary a:hover {
    text-decoration: underline;
}

/* Responsive Spacing */
@media (max-width: 768px) {
    .footer .col-md-6 {
        text-align: center !important;
        margin-bottom: 10px;
    }
}

/* Floating Cart (Left) */
.floating-cart {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #e50914;
    /* Red */
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    cursor: pointer;
    transition: 0.3s;
}

.floating-cart:hover {
    transform: scale(1.1);
}

/* Floating WhatsApp (Right) */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    /* WhatsApp green */
    color: #fff;
    font-size: 30px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}



.footer-topbar {
    font-size: 15px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.footer-topbar i {
    margin-right: 6px;
    font-size: 18px;
}

.footer-topbar span {
    margin: 0 12px;
    white-space: nowrap;
    /* prevents text from breaking mid-number/email */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-topbar .contact-info {
        text-align: left;
        /* left align for readability */
    }

    .footer-topbar span {
        display: block;
        margin: 8px 0;
    }
}

/** form**/
.form-container {
    width: 100%;
    padding: 20px 30px;
    box-sizing: border-box;
    background: #f1cd94;
}

.form-header {
    background: #991f26;
    /* Dark Red */
    color: #fff;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 500;
    margin: -20px -30px 20px -30px;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    gap: 15px;
}

.form-group label {
    flex: 0 0 220px;
    font-size: 16px;
    color: #000;
    text-align: right;
}

.form-group input,
.form-group textarea {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    background: #d62828;
    /* Red */
    color: #fff;
    border: none;
    padding: 14px;
    width: 81%;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-left: 232px;
}

.submit-btn:hover {
    background: #b71c1c;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-group label {
        flex: unset;
        width: 100%;
        text-align: left;
        margin-bottom: 6px;
    }

    .submit-btn {
        background: #d62828;
        /* Red */
        color: #fff;
        border: none;
        padding: 14px;
        width: 100%;
        border-radius: 6px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
        margin-left: 0;
    }
}


/* additional custom css */
.carousel-item img {
    width: 100% !important;
    /* height: 480px !important; */
    object-fit: contain;
}

.product-list-img {
  height: 40px;
  width: 40px;
  padding-right: 5px;
}

.btn:hover {
  color: white;
}
