/* custom css here */
.main-menu .main-menu__list>li+li, .stricky-header .main-menu__list>li+li {
    margin-left: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .main-menu__call {
        display: flex;
    }
}
body {
    font-family: 'Open Sans', sans-serif !important;
}

.ribbon{
    text-align: center;
    color: #fff;
    padding: 8px;
    background: #a69032;
}
.ribbon h5{
    color: #fff;
}
.main-menu__logo {
    padding: 0;
}

.logo{
    width: 100%;
    height: 85px;
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
    min-width: 320px;
}

.footer-logo{
    width: 284px;
}

.mobile-sc-logo{
    width: 48px;
}
/* ghgjgj */
.contact-page__single {
    background: linear-gradient(135deg, #36853a, #81C784);
    border-radius: 15px;
    box-shadow: 8px 8px 12px rgb(17 42 17 / 47%);
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
}

.contact-page__text a {
    color: inherit;
    /* Keeps the original color */
    text-decoration: none;
    /* Optional: removes underline if desired */
}

.contact-page__text a:hover {
    color: inherit;
    /* Prevents color change on hover */
    text-decoration: none;
    /* Optional: ensures no underline on hover */
}

/* .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.contact-page__single {
    background: linear-gradient(135deg, #4CAF50, #81C784);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
} */
.contact-page__single:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.contact-page__icon img {
    height: 60px;
    width: 60px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.contact-page__title h3 {
    color: #fff;
    font-size: 1.5em;
    margin: 10px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.contact-page__text {
    color: #fff;
    font-size: 1em;
    margin: -2px 19px;
}

.contact-page__text a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.contact-page__text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-page__single {
        max-width: 100%;
    }
}

/* end */
.footer-widget__about-text-box{
    padding: 0;
}

.footer-widget__column.footer-widget__about{
    margin-top: 0;
}
/* Product Section Styling */
.product__items {
    padding: 20px 0;
}

/* Product Showing Result */
.product__showing-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.product__showing-text {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.product__showing-sort .custom-select {
    width: 200px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24"><path fill="%23333" d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.product__showing-sort .custom-select:focus {
    outline: none;
    border-color: #4682b4;
    box-shadow: 0 0 5px rgba(70, 130, 180, 0.3);
}

/* Product Cards */
.product__all-single {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.product__all-single:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product__all-img {
    position: relative;
    overflow: hidden;
    padding: 15px;
    background-color: #f1f3f5;
    text-align: center;
    height: 250px;
}

.product__all-img img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product__all-single:hover .product__all-img img {
    transform: scale(1.05);
}

.product__all-content {

}

.product__all-title {
    font-size: 18px;
    /* margin-bottom: 15px; */
}

.product__all-title a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.product__all-title a:hover {
    color: #4682b4;
}

.product__all-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4682b4;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.product__all-btn:hover {
    background-color: #e6e6e6;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .product__showing-result {
        flex-direction: column;
        gap: 15px;
    }

    .product__showing-sort .custom-select {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .product__all-single {
        margin-bottom: 15px;
    }

    .product__all-title {
        font-size: 16px;
    }

    .product__all-btn {
        font-size: 13px;
        padding: 8px 15px;
    }
}

.iso-logo {
    width: 140px;
    height: auto;
    background-color: transparent !important;
    border-radius: 100%;
}


.product__all-single {
    min-height: 320px;           /* same card height */
    background: #fff;
    border-radius: 8px;
    /* padding: 20px; */
}

.product__all-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .product__all-img img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
} */
