.vendors-header {
    background: linear-gradient(135deg, #28292b7a 0%, #2d2e307c 100%),
        url(../images/negotiating-business-image-businesswomen-handshake-happy-with-work-business-woman-she-is-enjoying-with-her-workmate-handshake-gesturing-people-connection-deal-concept.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.vendor-section {
    padding: 80px 0;
    border-bottom: 1px solid rgb(225 235 255);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    background-color: rgb(225 235 255);
}

.vendor-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.vendor-section:last-child {
    border-bottom: none;
}

.vendor-section:nth-child(even) {
    background: white !important;
}

.vendor-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.vendor-content.reverse {
    grid-template-columns: 1fr 2fr;
}

.vendor-logo-section {
    text-align: center;
}

.vendor-logo {
    width: 280px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.vendor-logo:hover {
    transform: scale(1.05);
}

.vendor-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    font-family: "Lexend", sans-serif;

}

.vendor-info .vendor-tagline {
    font-size: 1.25rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 20px;
}

.vendor-info p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vendor-specialties {
    margin: 30px 0;
}

.vendor-specialties h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.specialty-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.specialty-item h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.specialty-item p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.vendor-products {
    margin: 30px 0;
}

.vendor-products h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.products-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.product-item {
    background: white;
    border: #1d4ed8 2px dashed;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-item h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.product-item p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.vendor-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn-vendor {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-vendor-primary {
    background: #2563eb;
    color: white;
}

.btn-vendor-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-vendor-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-vendor-secondary:hover {
    background: #2563eb;
    color: white;
}

.stats-section {
    background: linear-gradient(135deg, rgb(225 235 255) 0%, rgb(241, 245, 253) 100%);
    color: #1e293b;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.stats-section .section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
 
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
   
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1;
    background: linear-gradient(135deg, #1e293b, #425b83);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    color: #1e293b;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: #64748b;
    font-size: 0.875rem;
    font-style: italic;
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 50px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2563eb;
    border-radius: 3px;
    margin: 2px 0;
}

/* Dropdown */
.nav-item.dropdown .dropdown-toggle i {
    font-size: 0.75rem;
    margin-left: 6px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    padding: 10px 0;
    display: none;
    z-index: 200;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-link {
    display: block;
    padding: 10px 16px;
    color: #1e293b;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.3s, color 0.3s;
}

.dropdown-link:hover {
    background: #2563eb;
    color: #fff;
}

/* Show dropdown on hover (desktop only) */
@media (min-width: 769px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .vendors-header {
        min-height: 100vh;
        /* full screen height */
        padding: 40px 20px;
        /* reduce padding so image shows more */
    }

    .vendors-header .section-title {
        font-size: 1.8rem;
    }

    .vendors-header .section-subtitle {
        font-size: 1rem;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: flex;
        position: fixed;
        left: -100%;
        top: 70px;
        height: calc(100vh - 130px);
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    /* Dropdown on mobile */
    .dropdown-menu {
        position: static;
        background: #f9fafb;
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .dropdown-link {
        padding: 10px 0;
        display: block;
    }

    /* Vendor content adjustments */
    .vendor-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .vendor-content.reverse {
        display: flex;
        flex-direction: column;
    }

    .vendor-content.reverse .vendor-logo-section {
        order: -1;
    }

    .vendor-info h2 {
        font-size: 2rem;
    }

    .vendor-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .specialties-grid,
    .products-list {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}