 html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
            font-family: 'Plus Jakarta Sans', sans-serif !important;

}


/* Vendor Insights Section */
.vendor-insights-section {
    padding: 100px;
    background: #fff;
	margin-top:60px;
}

.vendor-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: nowrap;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.vendor-filter .filter-btn {
    flex: 0 0 auto;
}

@media (max-width: 900px) {
    .vendor-filter {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 20px 6px;
    }
}

.filter-btn {
    padding: 12px 28px;
    background: var(--cream-bg);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
	text-decoration:none;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--theme-yellow);
    color: #000;
    border-color: var(--theme-yellow);
    transform: translateY(-2px);
}

.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.vendor-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.vendor-card:hover {
    transform: translateY(-10px);
    border-color: var(--theme-yellow);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.vendor-card.hidden {
    display: none;
}

.vendor-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.vendor-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.3s ease;
}

.vendor-icon.micron { background: rgba(0, 102, 204, 0.1); color: #0066CC; }
.vendor-icon.crucial { background: rgba(0, 153, 51, 0.1); color: #009933; }
.vendor-icon.netac { background: rgba(255, 102, 0, 0.1); color: #FF6600; }
.vendor-icon.threecx { background: rgba(0, 153, 204, 0.1); color: #0099CC; }
.vendor-icon.dinstar { background: rgba(204, 0, 0, 0.1); color: #CC0000; }
.vendor-icon.onecxi { background: rgba(102, 51, 153, 0.1); color: #663399; }
.vendor-icon.snom { background: rgba(0, 102, 153, 0.1); color: #006699; }
.vendor-icon.nearity { background: rgba(255, 153, 0, 0.1); color: #FF9900; }
.vendor-icon.yealink { background: rgba(0, 153, 102, 0.1); color: #009966; }
.vendor-icon.ezon { background: rgba(153, 0, 51, 0.1); color: #990033; }
.vendor-icon.hushpod { background: rgba(51, 51, 51, 0.1); color: #333; }

.vendor-card:hover .vendor-icon {
    transform: scale(1.1) rotate(5deg);
}

.vendor-status {
    padding: 6px 14px;
    background: var(--theme-yellow);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vendor-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.vendor-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.vendor-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
    color: #888;
}

.vendor-meta i {
    margin-right: 5px;
}

.vendor-link {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px;
    background: var(--theme-yellow);
    color: #000;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.vendor-card:hover .vendor-link {
    transform: translateY(0);
}

/* Featured Blog Section */
.featured-blog-section {
    padding: 100px 0;
    background: var(--cream-bg);
	
}

.featured-article {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.featured-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--theme-yellow);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.featured-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.content-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.content-meta .category {
    background: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.content-meta .date {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-content h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #000;
}

.featured-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.author-info span {
    font-size: 13px;
    color: #666;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-read-more:hover {
    background: var(--theme-yellow);
    color: #000;
    gap: 15px;
}

/* Blogs Section */
.blogs-section {
    padding: 100px 0;
    background: #fff;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--theme-yellow);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--theme-yellow);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #888;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #000;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: var(--theme-yellow);
}

.blog-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 12px;
    color: var(--theme-yellow);
}

/* Case Studies Section */
.case-studies-section {
    padding: 100px 0;
    background: var(--cream-bg);
}

.case-studies-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.case-study-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.case-study-card.reverse {
    direction: rtl;
}

.case-study-card.reverse > * {
    direction: ltr;
}

.case-study-image {
    position: relative;
    height: 100%;
    min-height: 350px;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.case-industry {
    background: var(--theme-yellow);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
}

.case-study-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-study-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.case-description {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.case-results {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--theme-yellow);
    line-height: 1;
}

.result-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-link {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.case-link:hover {
    gap: 15px;
    color: var(--theme-yellow);
}

/* Updates Section */
.updates-section {
    padding: 100px 0;
    background: #fff;
}

.updates-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.update-item {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: var(--cream-bg);
    border-radius: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.update-item:hover {
    background: #fff;
    border-color: var(--theme-yellow);
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.update-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
    background: #000;
    border-radius: 20px;
    color: #fff;
}

.update-date .day {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.update-date .month {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.update-content {
    flex: 1;
}

.update-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.update-badge.launch { background: rgba(16, 185, 129, 0.1); color: #10B981; }
.update-badge.firmware { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
.update-badge.partnership { background: rgba(245, 213, 71, 0.2); color: #000; }
.update-badge.event { background: rgba(239, 68, 68, 0.1); color: #EF4444; }

.update-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.update-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.update-link {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.update-link:hover {
    gap: 12px;
    color: var(--theme-yellow);
}

.update-image {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.update-item:hover .update-image img {
    transform: scale(1.1);
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: var(--cream-bg);
}

.newsletter-box {
    background: linear-gradient(135deg, #000 0%, #1a1a2e 100%);
    padding: 80px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: var(--theme-yellow);
    border-radius: 50%;
    opacity: 0.1;
}

.newsletter-box h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-box p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin: 0;
}

.newsletter-form {
    position: relative;
    z-index: 1;
}

.input-group {
    display: flex;
    gap: 15px;
}

.newsletter-form .form-control {
    flex: 1;
    padding: 18px 25px;
    border-radius: 50px;
    border: none;
    font-size: 15px;
}

.btn-subscribe {
    padding: 18px 35px;
    background: var(--theme-yellow);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.btn-subscribe:hover {
    background: #fff;
    transform: translateY(-2px);
}

.form-check-label {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

/* Active Navigation */
.navbar-nav .nav-link.active {
    color: #000 !important;
}

.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* Responsive */
@media (max-width: 991px) {
    .case-study-card,
    .case-study-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .case-study-card.reverse > * {
        direction: ltr;
    }
    
    .case-study-image {
        min-height: 250px;
    }
    
    .featured-content {
        padding: 30px;
    }
    
    .newsletter-box {
        padding: 40px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .update-item {
        flex-direction: column;
    }
    
    .update-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 767px) {
    .vendor-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-element {
        display: none;
    }
    
    .hero-image-wrapper {
        transform: none;
    }
}

/* Smooth Scroll */
#vendors,
#blogs,
#case-studies,
#updates {
    scroll-margin-top: 100px;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: var(--cream-bg);
    border: 2px solid transparent;
    border-radius: 50px;
    color: #555;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination a.page-numbers:hover {
    background: var(--theme-yellow);
    color: #000;
    border-color: var(--theme-yellow);
    transform: translateY(-2px);
}

.blog-pagination .page-numbers.current {
    background: var(--theme-yellow);
    color: #000;
    border-color: var(--theme-yellow);
}

.blog-pagination .page-numbers.dots {
    background: transparent;
    min-width: auto;
    padding: 0 4px;
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
    padding: 0 20px;
    gap: 8px;
}

.blog-pagination .page-numbers.prev i,
.blog-pagination .page-numbers.next i {
    font-size: 12px;
}

@media (max-width: 600px) {
    .blog-pagination .page-numbers {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 13px;
    }
}
