/* =====================================================
   TOP BAR
===================================================== */
.bizgroww-topbar {
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
    font-size: 12px;
    color: #6b7280;
}
.bizgroww-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

/* =====================================================
   NAVBAR
===================================================== */
.bizgroww-navbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
}

.bizgroww-navbar .navbar-brand img {
    height: 48px;
}

.bizgroww-navbar .navbar-nav {
    gap: 24px;
}

.bizgroww-navbar .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #4b5563 !important;
    transition: color 0.3s;
}

.bizgroww-navbar .nav-link:hover,
.bizgroww-navbar .nav-link.active {
    color: #ff7a3d !important;
}

.bizgroww-navbar .navbar-toggler {
    border: none;
}
.bizgroww-navbar .navbar-toggler:focus {
    box-shadow: none;
}

/* Login Button */
.bizgroww-navbar .btn-login {
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    padding: 8px 12px;
}
.bizgroww-navbar .btn-login:hover {
    background: #f3f4f6;
    border-radius: 6px;
}

/* Post Requirement Button */
.bizgroww-navbar .btn-primary {
    background: #ff7a3d !important;
    border-color: #ff7a3d !important;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
}
.bizgroww-navbar .btn-primary:hover {
    background: #e66a2d !important;
}

.nav-login{
    padding: 8px 30px;
    font-weight: 900 !important;
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero-section {
    height: 500px;
    background: url('../img/Banner1.jpg') center top/cover no-repeat;
    position: relative;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}
.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
}
.hero-highlight {
    color: #ff7a3d;
}

/* =====================================================
   READY TO GROW SECTION
===================================================== */
.ready-grow {
    background: #ff7a3d;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}
.ready-grow h2 {
    font-size: 40px;
    font-weight: 700;
}
.ready-grow p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 50px;
}

/* Cards */
.role-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.role-card {
    background: #fff;
    padding: 32px;
    border-radius: 14px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all .35s ease;
}
.role-card:hover {
    transform: translateY(-8px);
}
.role-icon {
    width: 64px;
    height: 64px;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}
.role-card.manufacturer .role-icon { background: #ff7a3d; }
.role-card.distributor .role-icon { background: #10b981; }
.role-card.retailer .role-icon { background: #3b82f6; }

.role-card button {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
}
.role-card.manufacturer button {
    border: 2px solid #ff7a3d;
    color: #ff7a3d;
}
.role-card.distributor button {
    border: 2px solid #10b981;
    color: #10b981;
	margin-top: 24px;
}
.role-card.retailer button {
    border: 2px solid #3b82f6;
    color: #3b82f6;
}
.role-card button:hover {
    color: #fff;
}
.role-card.manufacturer button:hover { background: #ff7a3d; }
.role-card.distributor button:hover { background: #10b981; }
.role-card.retailer button:hover { background: #3b82f6; }
/* ===== Ready to Grow Section ===== */
.ready-grow {
    background: #ff7a3d;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.ready-grow h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ready-grow p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 650px;
    margin: 0 auto 50px;
}

/* Cards Grid */
.role-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card */
.role-card {
    background: #fff;
    color: #1f2937;
    padding: 32px;
    border-radius: 14px;
    text-align: left;
    transition: all 0.35s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.role-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.25);
}

/* Manufacturer */
.role-card.manufacturer {
    border-color: #fed7aa;
    background: linear-gradient(135deg, #fffbf0, #ffffff);
}

/* Distributor */
.role-card.distributor {
    border-color: #bbf7d0;
    background: linear-gradient(135deg, #f0fdf4, #ffffff);
}

/* Retailer */
.role-card.retailer {
    border-color: #bfdbfe;
    background: linear-gradient(135deg, #f0f9ff, #ffffff);
}

/* Icon */
.role-icon {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 22px;
    color: #fff;
}

.role-card.manufacturer .role-icon { background: #ff7a3d; }
.role-card.distributor .role-icon { background: #10b981; }
.role-card.retailer .role-icon { background: #3b82f6; }

/* Text */
.role-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.role-card .subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 14px;
}

.role-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Button */
.role-card button {
    width: 100%;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

/* Button Colors */
.role-card.manufacturer button {
    border: 2px solid #ff7a3d;
    color: #ff7a3d;
}
.role-card.manufacturer button:hover {
    background: #ff7a3d;
    color: #fff;
}

.role-card.distributor button {
    border: 2px solid #10b981;
    color: #10b981;
}
.role-card.distributor button:hover {
    background: #10b981;
    color: #fff;
}

.role-card.retailer button {
    border: 2px solid #3b82f6;
    color: #3b82f6;
}
.role-card.retailer button:hover {
    background: #3b82f6;
    color: #fff;
}

/* =====================================
   FOOTER – BIZGROWW
===================================== */
footer {
    background: #111827;
    color: #ffffff;
    padding: 48px 20px 24px;
    border-top: 1px solid #374151;
}

/* Container */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 32px;
}

/* Sections */
.footer-section h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    font-size: 14px;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff7a3d;
}

/* Logo */
.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

/* Description */
.footer-description {
    font-size: 14px;
    color: #d1d5db;
    margin-bottom: 16px;
    max-width: 300px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff7a3d;
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ff7a3d;
}

/* Responsive */
@media (max-width: 576px) {
    .footer-description {
        max-width: 100%;
    }
}

.hero-search-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.hero-search-form {
    max-width: 720px;
    margin: 0 auto;
}

.hero-search-form .form-control {
    height: 52px;
    font-size: 16px;
}

.hero-search-form .btn {
    padding: 0 24px;
}


/* ===============================
   FEATURED COMPANIES SECTION
================================ */

.features-section {
    background: white;
    padding: 56px 20px;
}

.section-header {
    max-width: 1200px;
    margin: 0 auto 48px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.section-header p {
    font-size: 16px;
    color: #6b7280;
}

/* Grid */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card */
.company-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.company-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Image */
.company-image {
    height: 160px;
    background: #f3f4f6;
    position: relative;
    overflow: hidden;
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.company-card:hover .company-image img {
    transform: scale(1.1);
}

/* Badge */
.company-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    color: white;
}

.badge-manufacturer {
    background: #ff7a3d;
}

.badge-distributor {
    background: #10b981;
}

.badge-wholesaler {
    background: #3b82f6;
}

/* Info */
.company-info {
    padding: 20px;
}

.company-name {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.company-year {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
}

.company-location {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

/* Tags */
.company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    background: #f3f4f6;
}

/* Rating */
.company-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.rating-box {
    background: #fef08a;
    color: #92400e;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.rating-text {
    font-size: 12px;
    color: #6b7280;
}

/* Button */
.company-card button {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid #ff7a3d;
    color: #ff7a3d;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.company-card button:hover {
    background: #ff7a3d;
    color: white;
}

/* Prevent lazyload from staying invisible */
img.lazyload,
img.lazyloading {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Fix image containment */
.product-image {
    height: auto !important;
    object-fit: contain !important;
}

/* Allow image visibility */
.product-image-container {
    overflow: visible !important;
}

/* Search Box CSS - Exact as provided */
.search-box {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
	width : 50%;
	margin-left: 21rem;
}

.search-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.search-input {
    width: 100%;
    height: 56px;
    border: none;
    background: #f9fafb;
    padding: 12px 12px 12px 48px;
    font-size: 16px;
    outline: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s;
}

.search-input:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 122, 61, 0.1);
}

.search-btn {
    background: linear-gradient(135deg, #ff7a3d 0%, #e66a2d 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 48px;
    font-weight: 700;
    cursor: pointer;
    height: 56px;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(255, 122, 61, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 122, 61, 0.4);
}

/* Pagination CSS */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination .page-item .page-link {
    color: #ff7a3d;
    border: 1px solid #ff7a3d;
    margin: 0 2px;
    border-radius: 6px;
    padding: 8px 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination .page-item .page-link:hover {
    background: #ff7a3d;
    color: white;
}

.pagination .page-item.active .page-link {
    background: #ff7a3d;
    border-color: #ff7a3d;
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: #6b7280;
    border-color: #e5e7eb;
    cursor: not-allowed;
}

.pagination-section {
    margin-top: 3rem;
}

/* Per-Page Dropdown CSS */
.per-page-selector {
    text-align: center;
	margin-top: 4rem;
    margin-bottom: 1.5rem;
}

.per-page-selector label {
    font-weight: 600;
    color: #6b7280;
    margin-right: 0.5rem;
}

.per-page-dropdown {
    padding: 0.375rem 0.75rem;
    border: 1px solid #ff7a3d;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    background: white;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s;
}

.per-page-dropdown:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 122, 61, 0.1);
    border-color: #ff7a3d;
}

/* Product Categories Section */
.categories-section {
    background: #f9fafb;
    padding: 64px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.category-image {
    height: 140px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.category-card:hover .category-image img {
    opacity: 0.7;
}


.category-info {
    padding: 16px;
}

.category-name {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.category-count {
    font-size: 12px;
    color: #6b7280;
}

@media (max-width: 425px) {
	.search-box{
		width: 100%;
		margin-left:0;
		padding: 10px;
	}
	
	.search-btn {
    
        padding: 0px 10px;
        font-weight: 700;
        height: 50px;
        font-size: 15px;
        text-wrap: auto;
	}
}