@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary-color: rgb(0 74 171);
    --hover-color: rgb(2 189 95);
    --secondary-color: #f1faee;
    --accent-color: #a8dadc;
    --text-color: #1d3557;
    --bg-color: #f8f9fa;
    --white-color: #ffffff;
    --black-color: #121212;
    --border-color: #e0e0e0;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

.bg-green {
    background: green !important;
}

.bg-gray {
    background: #e9e9e9 !important;
}

.container-fluid {
    width: 90%;
}

.section-padding {
    padding: 50px 0;
}


.top-bar {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.9rem;
    padding: 5px 15px;
}

.bg-pattern {
    background: url(../images/pattern.jpg);
}
.bg-light2 {
    background-color: #f3f6f9;
}
.boxShadow {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
}
/* Navabr */
/* ================================================ */
.navbar {
    position: relative;
    box-shadow: 3px 3px 30px rgba(2, 2, 2, 0.055);
    z-index: 999;
}

.navbar .navbar-brand>img {
    height: 60px;
}

@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0;
    }

    .navbar .dropdown-menu-end a i {
        background-color: var(--bs-gray-500);
        color: var(--black-color);
        font-size: 0.6rem;
        min-width: 1.1rem;
        height: 1.1rem;
        line-height: 1.1rem;
        border-radius: var(--bs-border-radius-xl);
        text-align: center;
        margin-right: 0.5rem;
    }

    .navbar .dropdown-menu-end a:hover i {
        background-color: var(--bs-link-hover-color);
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        /* transform: translateY(20px); */
        transition: all .3s ease-in;
        visibility: hidden;
        /* min-height: 50vh; */
        box-shadow: 0 5px 20px rgba(197, 208, 216, 0.15);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 15px;
        border: 0;
        min-width: 14rem;
        border-radius: 0;
        padding: 0;
        /* box-shadow: 0 10px 20px rgba(15,39,125,0.4); */
    }

    .navbar .nav-link {
        font-size: 18px;
         font-weight: 600; 
        text-transform: uppercase;
        transition: all 0.2s ease-in-out;
        position: relative;
        overflow: hidden;
        padding: 15px 0 !important;
        margin: 0 1em;
        color: var(--black-color);
    }

    .navbar .nav-item:hover .nav-link {
        color: var(--hover-color);
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -52px;
        box-shadow: 0 10px 10px rgba(15, 39, 125, 0.14);
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible;
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        color: var(--black-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        text-decoration: none;
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--white-color);
        background-color: var(--hover-color);
    }
}


/* navbar on scroll animation */
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: var(--white-color);
    /* backdrop-filter: blur(30px); */
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown 0.45s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

/* .scroll-on .nav-link {
    color: #121212;
} */

.navbar .navbar-toggler i {
    color: var(--white-color);
}

.scroll-on .navbar-toggler i {
    color: #121212;
}

.rightmenu {
    display: flex;
    align-items: center;
}

.rightmenu li {
    display: flex;
}

.rightmenu li a {
    padding: 0.5rem;
    font-size: 1.15rem;
    color: var(--black-color);
    position: relative;
}

.rightmenu li a b {
    position: absolute;
    font-size: 0.9rem;
    line-height: 0.7rem;
    background: var(--hover-color);
    color: var(--white-color);
    padding: 0.25rem;
    display: inline-block;
    border-radius: 1rem;
    right: -5px;
    width: 20px;
    height: 20px;
    line-height: 12px;
    text-align: center;
}

.profile-contain {
    padding: 8px 5px;
    background: #dbd3d7;
}
.profile-links {
    font-size: 14px !important;
    display: block !important;
    padding: 5px 10px !important;
    margin: 2px 5px;
    border-radius: 5px;
    transition: all 0.25s ease-in-out;
    background-color: var(--white-color);
}
.profile-links:hover {
    background-color: var(--primary-color);
    color: var(--white-color) !important;
}

.profile-links:last-child {
    color: var(--red-color);
}
.profile-links:last-child:hover {
    background-color: rgb(158, 20, 20);
}

.search {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 300px;
}

.search input {
    height: 44px;
    border: 1px solid #ddd;
    width: 100%;
    position: relative;
    padding: 0 55px 0 25px;
    color: var(--black-color);
    outline: 0;
    font-size: 15px;
    border-radius: 0;
}

.search button {
    background-color: transparent;
    border: 0;
    color: var(--black-color);
    padding: 10px;
    outline: 0;
    font-size: 14px;
    border-radius: 0;
    position: absolute;
    right: 5px;
    top: 5px;
    line-height: 0;
}

.search button:hover {
    background: var(--hover-color);
    color: var(--white-color);
}

/* =====================
Banner Panel
============================= */
.banner-slider .slick-prev {
    left: 45px;
}

.banner-slider .slick-next {
    right: 45px;
}


/* ========================
Sub Category
======================================== */
.subcategoryMain{
    position: relative;
}
.subcat{
    position: relative;
    margin: 0.75rem;
    overflow: hidden;
}
.subcat span{
    width: 90%;
    border: 2px solid var(--white-color);
    background: var(--primary-color);
    color: var(--white-color);
    font-weight: 500;
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 5%;
    font-size: 13px;
    border-radius: 0.5rem;
    padding: 5px;
}
/*.subcat img{*/
/*    border-radius: 10px;*/
/*    position: absolute;*/
/*    z-index: 0;*/
/*    object-fit: cover;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%,-50%);*/
/*}*/



/* ========================
Product List Panel
============================= */
.product-list {
    text-align: center;
    /* cursor: pointer; */
    padding: 1rem;
    background: #e6eef7;
    box-shadow: 0 2px 15px rgba(0,0,0,0.07);
}

/*.product-list:hover .add-to-cart {*/
/*    bottom: 0;*/
/*}*/

.product-list .add-to-cart {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.35s ease-in-out;
    width: 100%;
    /*letter-spacing: 5px;*/
    background-color: var(--hover-color);
    color: var(--white-color);
    line-height: 2.4;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.product-list .image-contain {
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
}

.product-list .image-contain .imgPT{
    aspect-ratio: 2 / 2.5;
    overflow: hidden;
    position: relative;
}

.product-list .image-contain .imgPT img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-list .image-contain video {
    aspect-ratio: 2/3;
    overflow: hidden;
    object-fit: cover;
}

.product-list .product-short-dets {
    margin-top: 14px;
}

/*.product-list .product-short-dets h6{*/
/*    background: var(--theme-color);*/
/*    padding: 0.5rem;*/
/*    font-size: 14px;*/
/*    border-radius: 5px;*/
/*}*/

.product-list .product-short-dets h3 {
    font-size: 18px;
    line-height: 26px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #191919;
    font-weight: 400;
    margin-bottom: 12px;
}

.product-list .product-short-dets .price {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

.product-list .product-short-dets del {
    color: var(--hover-color);
    margin: 0 0.5rem;
}

.brand {
    aspect-ratio: 5 / 2;
    overflow: hidden;
    margin: 0 0.5rem;
    padding: 0.5rem;
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ========================
Secure Panel
============================= */
.securePanel {
    padding: 2rem;
    position: relative;
    display: flex;
    border: 1px solid var(--primary-color);
    justify-content: center;
}

.securePanel .itemBox {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 4rem;
}

.securePanel .itemBox::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background: var(--primary-color);
    right: -2rem;
    top: 0;
}

.securePanel .itemBox:last-child::before {
    display: none;
}

.securePanel .itemBox:last-child {
    margin-right: 0;
}

.securePanel .itemBox img {
    width: 60px;
}

.securePanel .itemBox h4 {
    font-size: 1.5rem;
    color: #101010;
    margin-bottom: 0;
    font-weight: 600;
    margin-left: 1.5rem;
}

.securePanel .itemBox h4 small {
    display: block;
    margin-top: 5px;
    color: #565656;
    font-size: 1rem;
    font-weight: 400;
}

/* ========================
Shop By Budget
============================= */
.budgetBox {
    position: relative;
}

.budgetBox .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white-color);
    text-align: center;
}

.budgetBox .content h4 {
    font-size: 2rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.budgetBox .content h4 small {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 0.5rem;
}

/* ===================================
Review
====================================== */
.reviewContent {
    position: relative;
}

.reviewContent h4 {
    color: var(--primary-color);
}

.reviewContent p {
    font-size: 0.9rem;
    line-height: normal;
}

.reviewContent ul {
    list-style: none;
    padding: 0;
}

/* ===================================
Footer
====================================== */
footer {
    position: relative;
    background: #233f65;
    color: #fff;
}

footer h2 {
    letter-spacing: 2px;
    font-weight: 300;
    font-size: 2rem;
}

footer ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    list-style: none;
    margin: 0;
}

footer ul li a {
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease-out;
}

footer ul li a:hover {
    padding-left: 0.5rem;
    color: var(--hover-color);
}

/*footer img {*/
/*    width: 50px;*/
/*}*/

.breadcrumb {
    display: flex;
    list-style: none;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.breadcrumb li:after {
    content: '/';
    margin: 0 10px;
    color: #666;
}

.breadcrumb li:last-child::after {
    content: '';
}

.breadcrumb li:last-child a {
    color: var(--black-color);
    pointer-events: none;
}

.breadcrumb li a {
    text-decoration: none;
    color: var(--primary-color);
    padding: 5px 0;
    transition: 0.3s;
    font-size: 0.8rem;
}

.breadcrumb li:hover {
    color: #0056b3;
    text-decoration: underline;
}


.blogBox {
    position: relative;
    background: var(--white-color);
    border-radius: 5px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.blogBox:hover{
    transform: scale(1.02);
}
.blog-cont {
    margin-top: 24px;
    padding: 0 16px;   
}
.blog-cont h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.latest {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background-color: #eef4f9;
    border-radius: 8px;
    transition: all 0.25s ease-in-out;
}
.latest .lat-post {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: var(--white-color);
    border-radius: 0.5rem;
}

.latest .lat-post img {
    width: 100px;
    border-radius: 5px;

}

.latest .lat-post h6 {
    font-size: 14px;
    font-weight: 600;
    text-overflow: ellipsis;
    color: #000;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 0.25s ease-in-out;
    margin-bottom: 10px;
}

.latest .lat-post:hover h6 {
    color: var(--hover-color);
}

.latest .lat-post p {
    color: var(--black-color);
    font-size: 13px;
    margin-bottom: 0;
}

.innerBanner {
    background: var(--primary-color);
    position: relative;
    min-height: 250px;
}

.innerBanner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /* background: linear-gradient(180deg, rgba(9, 9, 31, 1) 0%, rgba(9, 9, 31, 0) 100%); */
    background: rgba(9, 9, 31, 0.4);
}

.innerBanner h1 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.innerBanner h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Contact Us */
.contactForm label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contactForm input,
.contactForm select,
.contactForm textarea {
    min-height: 50px;
    border-radius: 0.5rem;
    /* padding-left: 1.5rem; */
}

.contactDetails {
    background: var(--primary-color);
    padding: 0.5rem;
    position: relative;
    margin-left: -4rem;
}

.contactDetails iframe {
    display: block;
}



@media(max-width:800px){
    .section-padding{padding: 20px 0;}
    .securePanel{flex-wrap: wrap; flex-direction: column; padding: 0.5rem 1rem;}
    .securePanel .itemBox{margin: 0.75rem 0;}
    .securePanel .itemBox h4{font-size: 1rem};
    .securePanel .itemBox img{width: 40px;}
    .securePanel .itemBox:before{display: none;}
}