

/* ========== GLOBAL STYLES ========== */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f7fa;
}

:root {
    --sidebar-width: 272px;
    --b2b-teal: #004d61;
    --b2b-gold: #b38e44;
}

.b2b-menu-container {
    position: relative;
    width: var(--sidebar-width);
    border: 1px solid #e0e0e0;
    background: #fff;
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.has-mega {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
}

.has-mega:hover {
    background-color: #f0f7ff;
    color: var(--b2b-teal);
}

.arrow-right {
    margin-left: auto;
    border: solid #999;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
}

/* Mega Menu Hidden State */
.mega-menu {
    display: none;
    position: absolute;
    top: -1px;
    /* Align with container border */
    left: var(--sidebar-width);
    width: 580px;
    border-radius: 5px;
    background: #fff;
    /* Specific way */
    border-width: 1px 1px 0px 0px;
    border-style: solid;
    border-color: #ddd;


    box-shadow: 10px 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
    min-height: 70%;
    padding-left: 20px;
    margin-left: -20px;
}

/* Each item occupies exactly half of the container */
.mega-item-col {
    flex: 0 0 50%;
    padding: 5px 10px;
}

.mega-item-col a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    display: block;
    border-bottom: 1px solid #f9f9f9;
    padding: 4px 0;
    transition: 0.2s;
}

.mega-item-col a:hover {
    color: #004d61;
    /* Tradoforces Teal */
    padding-left: 5px;
    background: #f8f9fa;
}

/* Adjusted Mega Menu Width for 2 Columns */
/* .mega-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 272px; 
    width: 550px; 
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 10px 5px 20px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1000;
} */

.mega-title {
    font-weight: bold;
    color: #004d61;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #b38e44;
    /* Tradoforces Gold underline */
}

/* Hover effect to show the menu */
.has-mega:hover>.mega-menu {
    display: block;
}

.mega-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.mega-column {
    flex: 0 0 50%;
    /* Creates exactly 3 columns */
    padding: 0 15px 20px;
}

.mega-column h4 {
    font-size: 13px;
    color: var(--b2b-teal);
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.mega-column ul {
    list-style: none;
    padding: 0;
}

.mega-column ul li a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    display: block;
    padding: 0px 0;
}

.mega-column ul li a:hover {
    color: var(--b2b-gold);
    padding-left: 3px;
    transition: 0.2s;
}

.icon {
    padding-right: 5px;
}

/* Top Blue Bar */

.top-bar {
    background-color: #0c5a86;
    color: white;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar .btn-join {
    background-color: #f2ad05;
    color: white;
    border-radius: 20px;
    padding: 5px 18px;
    font-size: 14px;
}

.top-bar .btn-join :active {
    background-color: #f2ad05;
    color: white;
    border-radius: 20px;
    padding: 5px 18px;
    font-size: 14px;
}

/* Header */
.main-header {
    background: #ffffff;
    padding: 15px 0;
}

.logo {
    font-weight: bold;
    font-size: 30px;
    color: #0c5a86;
}

.search-box {
    border-radius: 30px;
    padding: 10px 20px;
    border: 2px solid #0c5a86;
}

.btn-orange {
    background-color: #0c5a86;
    color: #fff;
    border-radius: 25px;

    font-weight: 500;
}

.btn-orange:hover {
    background-color: #f2ad05;
    color: white;
}

/* Navigation */
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-collapse
 {
    flex-basis: 100%;
    flex-grow: 1;
    padding: 6px;
    font-size: 14px;
    font-weight: 600;
    align-items: center;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    box-shadow: none;
}
.navbar-toggler
{
    border:0px!important;
    box-shadow: 0px;
}
/* Sidebar */



/* Slim Scrollbar for Webkit Browsers (Chrome, Edge, Safari) */
/* Container must have a fixed height and overflow */
.category-scroll {
    max-height: 532px;
    /* Adjust height as needed */
    /* Enables vertical scroll when needed */
    padding-right: 2px;
    /* Adjust to your sidebar height */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
    /* Firefox: hide by default */
    transition: scrollbar-color 0.3s ease;
}

/* Chrome, Safari, Edge */
.category-scroll::-webkit-scrollbar {
    width: 6px;
}

.category-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.category-scroll::-webkit-scrollbar-thumb {
    background: transparent;
    /* Hide by default */
    border-radius: 10px;
    transition: background 0.3s ease;
}

/* Active State: Shown when scrolling */
.category-scroll.scrolling {
    scrollbar-color: #888 #f1f1f1;
    /* Firefox */
}

.category-scroll.scrolling::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.category-scroll.scrolling::-webkit-scrollbar-thumb {
    background: #888;
}

.category-scroll.scrolling::-webkit-scrollbar-thumb:hover {
    background: #555;
}


.sidebar {
    background: #ffffff;
    border-radius: 8px;
    padding: 9px;
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.sidebar h6 {
    font-weight: 600;
    margin-bottom: 15px;
}

.sidebar ul {
    list-style: none;
    padding-left: 0;
}

.sidebar ul li {
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #f1f1f1;
    cursor: pointer;
    color: #333;
}

.sidebar ul li:hover {
    color: #0c5a86;
}

/* Hero Banner */
.hero {
    background: linear-gradient(135deg, #e8f3fa, #f4e1e1);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.hero h3 {
    font-weight: 700;
    color: #0c5a86;
}

.hero p {
    font-size: 16px;
    color: #555;
}

.hero .highlight {
    color: #ff9800;
    font-weight: 600;
}

/* Right Ad Box */
.ad-box {
    background: linear-gradient(135deg, #f4c542, #f2ad05);
    border-radius: 12px;
    padding: 30px;
    color: white;
    text-align: center;
}

.ad-box h2 {
    font-weight: bold;
    font-size: 38px;
}

.ad-box button {
    background: white;
    color: #fd9101;
    border-radius: 20px;
    border: none;
    padding: 8px 18px;
    font-weight: 600;
}

/* Section */
.section-title {
    margin: 40px 0 20px;
    font-weight: 700;
    color: #0c5a86;
}


/* ================= TRUST BANNER ================= */
.trust-banner {
    background: #f4c542;
    padding: 25px;
    border-radius: 10px;
}

.trust-box {
    background: #f8d86c;
    padding: 12px 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 130px;
    font-weight: 500;
}

/* ================= BUY LEADS ================= */
.lead-item {
    background: #f8f9fa;
    padding: 9px;
    border-radius: 6px;
    margin-bottom: 5px;
    gap: 15px;
}

.lead-item .flag {
    font-size: 22px;
}

/* ================= PRODUCT CARD ================= */
.product-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    transition: 0.3s;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-card p {
    margin-top: 10px;
    font-size: 14px;
}



/* Featured Cards */
.featured-card {
    background: #f8f9fb;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e4e6eb;
    height: 100%;
    transition: 0.3s;
}

.featured-card img {
    border-radius: 6px;
    margin-bottom: 10px;
}

.featured-card h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.featured-card p {
    font-size: 12px;
    color: #666;
    height: 40px;
    overflow: hidden;
}

.featured-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Ready To Order Banner */
.ready-banner {
    background: linear-gradient(135deg, #f4c542, #ffda63);
    padding: 40px 20px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ready-banner h4 {
    font-weight: 700;
}


.carousel-item img {
    border-radius: 10px;
}


swiper-container {
    width: 100%;
    height: 260px;
    border-radius: 10px !important;
}

swiper-container .mySwiper {
    border-radius: 10px !important;
}

swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;

    justify-content: center;
    align-items: center;
    /* height: 200px; */
    width: auto;
    object-fit: cover;
}

swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
}

autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

.premiumservicesdata {
    font-weight: 400;
    background: linear-gradient(135deg, #f4c542, #f2ad05);
    color: rgba(255, 255, 255, 0.89) !important;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(236, 205, 103);
    border-image: initial;
    border-radius: 6px;
    padding: 4px;
    font-size: 15px;
}



/* HERO SECTION */
.hero-section {
    background: linear-gradient(rgba(0, 60, 90, 0.85), rgba(0, 60, 90, 0.85)),
        url('https://images.unsplash.com/photo-1509099836639-18ba1795216d');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    border-radius: 8px;
}

.hero-form {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-form h6 {
    font-weight: 600;
}

.section-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 25px;
}

.section-header {
    background: linear-gradient(to right, #000, #444);
    color: #fff;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
    height: 55px;
    object-fit: cover;
    width: 100%;
    border-radius: 4px;
}

.product-card-1 img {
    height: 55px;
    object-fit: cover;
    width: 55px;
    border-radius: 5px;
}

.product-title {
    font-size: 14px;
    font-weight: 500;
    padding: 0px;
    background: #f8f9fa;
}

.product-card-featured img {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: #f1f3f5;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }

    .trust-banner .d-flex {
        display: grid !important;
    }

    .trust-box {
        min-width: 260px;
    }

    swiper-container {
        width: 100%;
        height: 150px;
    }
}

body {
    background: #f5f6f8;
}

.sidebar {
    background: #fff;
    border-radius: 5px;
    padding: 9px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

}

.sidebar a {
    text-decoration: none;
    display: block;
    padding: 0px 0;
    color: #333;
    font-weight: 500;
}

.sidebar a:hover {
    color: #0d6efd;
}

.feature-card {
    color: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 150px;
    position: relative;
    overflow: hidden;
}

.product-card-featured {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.3s;
    border-radius: 14px;
    padding: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-card-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-card-featured a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: none;
}

.feature-card i {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 50px;
    opacity: 0.2;
}

.gradient1 {
    background: linear-gradient(45deg, #3a8dff, #00c6ff);
}

.gradient2 {
    background: linear-gradient(45deg, #2ecc71, #1abc9c);
}

.gradient3 {
    background: linear-gradient(45deg, #f39c12, #f1c40f);
}

.gradient4 {
    background: linear-gradient(45deg, #ff6b81, #ff4757);
}

.card-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #000;
}

.card-header-custom {
    font-weight: 600;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.card-header-story {
    font-size: 24px;
    font-weight: 600;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.buy-offer-item,
.product-item {
    padding: 10px 15px;
    border-bottom: 2px solid #eee;
}

.buy-offer-item:last-child,
.product-item:last-child {
    border-bottom: none;
}

.product-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.view-details {
    font-size: 14px;
    color: #0d6efd;
    text-decoration: none;
    float: right;
}

.view-details:hover {
    text-decoration: underline;
}

.success-box {
    padding: 20px;
}

@media(max-width:991px) {
    .feature-card {
        margin-bottom: 15px;
    }

    .hero {
        height: 405px;
    }
}


.lead-box-content {
    overflow: visible;
    position: relative;
}

.lead-scroll-list {
    animation: scrollUp 100s linear infinite;
}

body {
    background: #f4f6f9;
}

/* CATEGORY HEADER */
.category-badge {
    background: #e9ecef;
    padding: 12px 20px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.category-badge i {
    color: #2daae1;
    margin-right: 10px;
}

/* LEFT BANNER CARD */
.banner-card {
    background: linear-gradient(135deg, #000 0%, #a60084 60%, #ff8c00 100%);
    color: #fff;
    border-radius: 18px;
    padding: 25px;
    min-height: 520px;
    position: relative;
    overflow: hidden;
}

.banner-card h4 {
    font-weight: 700;
}

.banner-card .btn {
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: 500;
}

.best-label {
    position: absolute;
    bottom: 20px;
    left: 25px;
    background: #ff2f92;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
}

/* SECTION TITLE */
.section-title {
    font-weight: 600;
    margin-bottom: 15px;
}

/* SUPPLIER CARD */
.supplier-card {
    background: #fff;
    border-radius: 14px;
    padding: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 15px;
}

.supplier-logo {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border-radius: 14px;
    padding: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 15px;
    align-items: center;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}



.product-card h6 {
    font-weight: 600;
    margin: 0;
}

.product-card small {
    color: #6c757d;
}

/* Responsive Fix */
@media(max-width:991px) {
    .banner-card {
        min-height: auto;
    }
}

body {
    background: #f3f3f3;
}

.section-title {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 25px;
}

.supplier-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.supplier-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.supplier-card:hover img {
    transform: scale(1.05);
}

.supplier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

body {
    background: #f4f6f9;
}

/* CATEGORY BADGE */
.category-badge {
    background: #e9ecef;
    padding: 12px 20px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* LEFT BANNER */
.banner-card {
    background: linear-gradient(rgba(0, 80, 0, .7), rgba(0, 80, 0, .7)),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef');
    background-size: cover;
    background-position: center;
    color: #fff;
    border-radius: 18px;
    padding: 25px;
    min-height: 520px;
    position: relative;
}

.banner-card h4 {
    font-weight: 700;
    line-height: 1.4;
}

.banner-card .btn {
    border-radius: 30px;
    padding: 8px 25px;
}

/* SECTION TITLE */
.section-title {
    font-weight: 600;
    margin-bottom: 15px;
}

/* SUPPLIER CARD */
.supplier-card {
    background: #fff;
    border-radius: 14px;
    padding: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 15px;
}

.supplier-logo {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* PRODUCT CARD */
.product-card-1 {
    background: #fff;
    border-radius: 14px;
    padding: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 15px;
    align-items: center;
    transition: .3s;
}

.product-card-1:hover {
    transform: translateY(-5px);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

.product-card small {
    color: #6c757d;
}

@media(max-width:991px) {
    .banner-card {
        min-height: auto;
    }

    .hero {
        min-height: 405px;
    }
}

@media (min-width: 992px) {
    .hero {
        min-height: 405px;
    }
}

body {
    background: #f4f6f9;
}

/* BLOG CARD */
.blog-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: .3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.blog-card .card-body {
    padding: 20px;
}

.blog-card h5 {
    font-weight: 600;
}

.blog-card p {
    color: #6c757d;
    font-size: 14px;
}

.explore-link {
    font-weight: 600;
    text-decoration: none;
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    font-weight: 700;
    margin: 10px 0 16px;
}

/* COUNTRY SECTION */
.country-box {
    text-align: center;
}

.country-box img {
    width: 45px;
    height: 30px;
    object-fit: cover;
    margin-bottom: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

.country-box p {
    margin: 0;
    font-size: 14px;
}

.divider {
    height: 3px;
    background: linear-gradient(to right, #ccc, #000);
    width: 90%;
    margin: 40px auto;
}

.footer {
    background: linear-gradient(135deg, #243447, #2f4157);
    color: #fff;
    padding-top: 50px;
}

.footer-logo {
    width: 140px;
    margin-bottom: 15px;
}

.footer p {
    color: #d6d6d6;
    font-size: 14px;
    line-height: 1.7;
}

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

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #e4e4e4;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffc107;
}

.footer-links i {
    margin-right: 8px;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding: 15px 0;
    font-size: 14px;
}

.brand-highlight {
    color: #ffc107;
    font-weight: 600;
}

.payment-icons img {
    height: 26px;
    margin-left: 10px;
}

@media(max-width:768px) {
    .footer {
        text-align: center;
    }

    .hero {
        height: auto;
        min-height: 300px;
    }

    .shadow-sm {
        display: none;
    }

    .mega-menu {
        margin-left: 10px;
        min-height: auto;
    }

    .sidebar {
        width: auto;
    }

    .category-scroll {
        max-height: 148px;
    }

    .hero,
    .ad-box {
        margin-left: 12px;
    }

    .card-box {
        width: auto;
        margin-left: 6px;
    }
}



select option {
    font-size: 12px;
    font-weight: 500;
}

.form-select {
    font-size: 0.79rem !important;
}

.form-control {
    font-size: 0.79rem !important;
}

body {
    background-color: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
}

.content-section {
    background: #fff;
    padding: 40px;
    border-radius: 6px;
}

.content-section h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.content-section p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.highlight {
    font-weight: 600;
    color: #000;
}

@media (max-width: 768px) {
    .content-section {
        padding: 25px;
    }

    .product-card{
        padding: 0px;
        gap:0px;
    }
}
@media (max-width: 375px) {
    .login-btn{
        margin-top:12px!important;
    }
}



/* hero banner */

   .hero-search {
    position: relative;
    background: url('assets/images/hero.jpg') center/cover no-repeat;
    padding: 60px 0;
}

.hero-overlay {
    background: rgba(0,0,0,.55);
    padding: 40px;
}



.hero-banner {
    position: relative;
    color:#fff;
    overflow:hidden;
}

.hero-banner::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:1;
}

.hero-banner-content{
    position:relative;
    z-index:2;
    min-height:120px;
}










/*==========================
  SCROLL CONTAINERS
==========================*/

.scroll-box{
    height:360px;
    overflow:hidden;
    position:relative;
    background:#fff;
}

.scroll-track{
    display:flex;
    flex-direction:column;
    width:100%;
}

.scroll-content{
    display:flex;
    flex-direction:column;
}


/*==========================
 BUY LEADS
==========================*/

.buy-offer-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 15px;
    border-bottom:1px solid #e9ecef;
    background:#fff;
    transition:.3s;
    cursor:pointer;
}

.buy-offer-item:hover{
    background:#f8f9fa;
    padding-left:22px;
}

.buy-offer-item img{
    width:36px;
    height:24px;
    object-fit:cover;
    margin-right:8px;
}

.buy-offer-item span{
    display:flex;
    align-items:center;
    font-size:15px;
}

.buy-offer-item small{
    color:#777;
}


/*==========================
 PRODUCTS
==========================*/

.product-item{
    display:flex;
    gap:15px;
    align-items:center;
    padding:14px;
    border-bottom:1px solid #ececec;
    transition:.3s;
    background:#fff;
}

.product-item:hover{
    background:#f8f9fa;
    transform:translateX(8px);
}

.product-item img{
    width:58px;
    height:58px;
    object-fit:cover;
    border-radius:4px;
    border:1px solid #ddd;
}

.product-item strong{
    display:block;
    margin-bottom:5px;
    font-size:16px;
}

.view-details{
    float:right;
    text-decoration:none;
    font-size:14px;
}


/*==========================
 ANIMATION
==========================*/

.scroll-up{
    animation:scrollUp 30s linear infinite;
    will-change:transform;
}

.scroll-down{
    animation:scrollDown 30s linear infinite;
    will-change:transform;
}

/* Pause animation */

.scroll-box:hover .scroll-up,
.scroll-box:hover .scroll-down{
    animation-play-state:paused;
}


/*==========================
 KEYFRAMES
==========================*/

@keyframes scrollUp{

    from{
        transform:translateY(0);
    }

    to{
        transform:translateY(-50%);
    }

}

@keyframes scrollDown{

    from{
        transform:translateY(-50%);
    }

    to{
        transform:translateY(0);
    }

}


/*==========================
 CARD
==========================*/

.card-box{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
}

.card-header-custom{
    padding:14px 16px;
    font-weight:600;
}

.card-header-custom small{
    cursor:pointer;
}


/*==========================
 RESPONSIVE
==========================*/

@media(max-width:768px){

.scroll-box{
    height:300px;
}

.buy-offer-item{
    padding:10px;
}

.product-item{
    padding:10px;
}

.product-item img{
    width:50px;
    height:50px;
}

}