/* GLOBAL STYLES & VARIABLES */
:root {
    --primary-color: #0b1528;
    --accent-gold: #f5a623;
    --accent-gold-hover: #e0961b;
    --text-dark: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --border-color: #e5e5e5;
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: #f4f6f9;
    line-height: 1.6;
}

.container {
    width: 95%;
    max-width: 1280px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

/* HEADER STYLE */
.main-header {
    background-color: var(--primary-color);
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-gold { color: var(--accent-gold); }
.logo-sub { font-size: 10px; display: block; letter-spacing: 2px; color: #a0aec0; }

.global-search-bar {
    display: flex;
    flex: 0 1 550px;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.search-category {
    border: none;
    background: #f1f1f1;
    padding: 0 15px;
    font-size: 13px;
    outline: none;
}

.global-search-bar input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
    color: #333;
}

.search-btn {
    background: var(--accent-gold);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-role {
    font-size: 14px;
    font-weight: 500;
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-register {
    background: var(--accent-gold);
    color: #fff;
    border: none;
    padding: 7px 17px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

.lower-nav {
    background: #111e38;
    border-top: 1px solid #1e2d4a;
    padding: 10px 0;
    font-size: 14px;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

/* DYNAMIC HOVER MEGA MENU PANEL STYLES */
.categories-dropdown-wrapper {
    position: relative;
}

.all-cats {
    font-weight: 600;
    color: var(--accent-gold) !important;
}

.mega-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 900px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-top: 10px;
    display: grid;
    grid-template-columns: 240px 1fr;
    overflow: hidden;
    z-index: 2000;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
}

.categories-dropdown-wrapper::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
}

.categories-dropdown-wrapper:hover .mega-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-sidebar {
    background-color: #f8fafc;
    border-right: 1px solid var(--border-color);
    padding: 10px 0;
}

.sidebar-item {
    padding: 12px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-item:hover, .sidebar-item.active {
    background-color: #ffffff;
    color: var(--accent-gold-hover);
    font-weight: 600;
}

.sidebar-all-link {
    display: block;
    padding: 12px 20px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-color) !important;
    border-top: 1px solid var(--border-color);
    margin-top: 10px;
}

.mega-panels-viewport {
    background-color: #ffffff;
    padding: 25px;
    position: relative;
}

.mega-content-panel {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mega-content-panel.active {
    display: grid;
}

.mega-column h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 4px;
}

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

.mega-column ul li {
    margin-bottom: 8px;
}

.mega-column ul li a {
    font-size: 13px;
    color: var(--text-muted) !important;
}

.mega-column ul li a:hover {
    color: var(--accent-gold-hover) !important;
    text-decoration: underline;
}

.view-more-link {
    font-weight: 600;
    color: var(--accent-gold) !important;
}

/* HERO MAIN BODY */
.hero-section {
    background: linear-gradient(rgba(11,21,40,0.88), rgba(11,21,40,0.88)), url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 0 120px 0;
    position: relative;
}

.hero-content h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content h1 .highlight { color: var(--accent-gold); }
.hero-content p { font-size: 16px; margin: 10px 0 25px; opacity: 0.9; }

.hero-search-box {
    display: flex;
    max-width: 700px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.hero-search-box select { border: none; padding: 12px; background: #f8f9fa; outline: none; }
.hero-search-box input { flex: 1; border: none; padding: 12px; font-size: 15px; outline: none; color: #333; }
.hero-search-box .hero-search-btn { background: var(--accent-gold); border: none; padding: 0 25px; color: white; font-weight: 600; cursor: pointer; }

.popular-searches { margin-top: 15px; font-size: 12px; }
.popular-searches a { margin-left: 8px; color: #cbd5e0; text-decoration: underline; }

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1280px;
}

.prop-card {
    background: #111e38;
    border: 1px solid #1e2d4a;
    padding: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.prop-icon { font-size: 20px; }
.prop-card h4 { font-size: 14px; color: #fff; }
.prop-card p { font-size: 11px; color: #a0aec0; }

/* EXPORTERSINDIA PRODUCTION ROWS BLOCK */
.section { padding: 60px 0 20px 0; }
.section-header h2 { font-size: 22px; font-weight: 700; color: var(--primary-color); margin-bottom: 15px; }

.industry-portal-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.portal-banner-side {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
}

.portal-banner-side h3 { font-size: 18px; font-weight: 700; line-height: 1.3; }
.portal-mini-links { display: flex; flex-direction: column; gap: 8px; margin: 20px 0; }
.portal-mini-links a { font-size: 13px; color: rgba(255,255,255,0.85); text-decoration: underline; }
.portal-mini-links a:hover { color: var(--accent-gold); }

.portal-btn-gold {
    background: var(--accent-gold);
    color: #fff !important;
    text-align: center;
    padding: 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.portal-subgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.portal-card {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: #ffffff;
}

.portal-card:nth-child(3n) { border-right: none; }
.card-desc { flex: 1; padding-right: 10px; }
.card-desc h4 { font-size: 14px; color: var(--primary-color); font-weight: 600; margin-bottom: 10px; }
.card-desc ul { list-style: none; }
.card-desc ul li { margin-bottom: 5px; }
.card-desc ul li a { font-size: 12.5px; color: #4a5568; }
.card-desc ul li a:hover { color: var(--accent-gold-hover); text-decoration: underline; }
.portal-card img { width: 85px; height: 85px; object-fit: cover; border-radius: 4px; align-self: flex-end; border: 1px solid #f0f0f0; }

/* COUNTRIES BLOCK STYLES */
.countries-ribbon {
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    flex-wrap: wrap;
    gap: 15px;
}

.country-item { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; min-width: 85px; }
.flag-circle { width: 55px; height: 55px; border-radius: 50%; overflow: hidden; border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; background: #fff; }
.flag-circle img { width: 100%; height: 100%; object-fit: cover; }
.country-item span { font-size: 12.5px; font-weight: 500; color: var(--text-dark); }
.more-countries { display: flex; gap: 3px; background: #f7fafc; justify-content: center; }
.more-countries .dot { width: 5px; height: 5px; background: #a0aec0; border-radius: 50%; }

/* CLIENT TESTIMONIALS STYLES */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review-card { background: #fff; border: 1px solid var(--border-color); border-radius: 6px; padding: 20px; box-shadow: var(--card-shadow); }
.stars { color: var(--accent-gold); font-size: 13px; margin-bottom: 10px; }
.review-text { font-size: 13px; color: var(--text-muted); font-style: italic; margin-bottom: 15px; }
.client-meta { display: flex; align-items: center; gap: 10px; }
.client-avatar { width: 35px; height: 35px; border-radius: 50%; background: #ebf8ff; color: #2b6cb0; font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; }
.client-meta h4 { font-size: 13.5px; color: var(--text-dark); }
.client-meta p { font-size: 11px; color: var(--text-muted); }


/* TRENDING PRODUCTS SECTION STYLES */
.trending-header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.view-all-link-top {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--accent-gold) !important;
}

.view-all-link-top:hover {
    color: var(--accent-gold-hover) !important;
    text-decoration: underline;
}

.trending-products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.product-card-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
}

.product-img-wrapper {
    width: 100%;
    height: 160px;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.product-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info-box {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    height: 36px; /* Caps description layout lines nicely */
    overflow: hidden;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-title a {
    color: var(--primary-color);
}

.product-title a:hover {
    color: var(--accent-gold-hover);
}

.product-price {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.price-val {
    color: #e53e3e;
    font-weight: 600;
}

.supplier-meta-info {
    border-top: 1px dashed #e2e8f0;
    padding-top: 8px;
    margin-bottom: 12px;
    margin-top: auto;
}

.supplier-name {
    font-size: 11px;
    font-weight: 600;
    color: #4a5568;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.supplier-loc {
    font-size: 10.5px;
    color: var(--text-muted);
    margin-top: 2px;
}

.btn-product-contact {
    width: 100%;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-product-contact:hover {
    background-color: var(--accent-gold);
}

/* RESPONSIVE BREAKPOINTS FOR GRID */
@media (max-width: 1200px) {
    .trending-products-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .trending-products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .trending-products-grid { grid-template-columns: 1fr; }
}

/* MODERN HIGH-END HOT LEADS STYLES */
.premium-leads-panel {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.enhanced-leads-engine {
    display: flex;
    flex-direction: column;
}

.leads-main-headline {
    margin-bottom: 20px;
}

.leads-main-headline h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.headline-badge {
    background-color: #fff5f5;
    color: #e53e3e;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid #fed7d7;
    text-transform: uppercase;
}

.leads-main-headline p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Master Precision Grid Setup */
.premium-header-row, 
.premium-lead-row-card {
    display: grid;
    grid-template-columns: 1.2fr 1.6fr 1.6fr 1.1fr 1.1fr 1fr 1.1fr;
    align-items: center;
    padding: 14px 16px;
    gap: 10px;
}

.premium-header-row {
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 6px;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.3px;
}

/* Scroll Window Viewport Engine */
.premium-scroll-viewport {
    height: 310px; /* Perfectly reveals exactly 5 rows safely without jumping overlaps */
    overflow: hidden;
    position: relative;
    margin-top: 8px;
}

.premium-scroll-track {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Adds beautiful separation space between each card */
    animation: professionalVerticalTicker 16s linear infinite;
}

.premium-scroll-viewport:hover .premium-scroll-track {
    animation-play-state: paused;
}

/* Refined Floating Row Cards Styling */
.premium-lead-row-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

.premium-lead-row-card:hover {
    background: #ffffff;
    border-color: var(--accent-gold);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Data Sub-Elements Control Layout */
.font-emphasized {
    font-weight: 600;
    color: #2d3748;
    font-size: 13.5px;
}

.lead-col-place {
    font-size: 12.5px;
    color: #4a5568;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.highlight-product {
    font-weight: 600;
    color: #2b6cb0;
    font-size: 13.5px;
}

.qty-badge {
    font-size: 12px;
    background-color: #f7fafc;
    color: #4a5568;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    border: 1px solid #e2e8f0;
    white-space: nowrap;
}

.lead-col-date {
    font-size: 12.5px;
    color: var(--text-muted);
}

/* Live Dynamic Glowing Dot Engine */
.lead-col-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-live-dot {
    width: 8px;
    height: 8px;
    background-color: #38a169;
    border-radius: 50%;
    position: relative;
}

.pulse-live-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #38a169;
    border-radius: 50%;
    animation: liveMarkerPulse 1.8s infinite ease-in-out;
}

.status-txt {
    color: #2f855a;
    font-weight: 600;
    font-size: 12.5px;
}

/* Modern Match Deal Interactive Action Button */
.premium-action-pill {
    display: block;
    background: #ffffff;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 0;
    border-radius: 6px;
    text-align: center;
    transition: all 0.2s ease;
}

.premium-action-pill:hover {
    background: var(--accent-gold);
    color: #ffffff !important;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 10px rgba(245, 166, 27, 0.2);
}

/* RIGHT PREMIUM BANNER CALLOUT PANEL */
.premium-banner-side-callout {
    background: linear-gradient(135deg, #111e38 0%, #0b1528 100%);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    border: 1px solid #1e2d4a;
    position: relative;
    overflow: hidden;
}

.premium-banner-side-callout::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(245, 166, 35, 0.05);
    border-radius: 50%;
    filter: blur(40px);
}

.banner-glass-shield {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.shield-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.banner-glass-shield h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.banner-glass-shield p {
    color: #a0aec0;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.banner-divider {
    border: 0;
    border-top: 1px solid #1e2d4a;
    margin: 15px 0;
}

.banner-mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.stat-bubble {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #1e2d4a;
    padding: 8px;
    border-radius: 6px;
}

.stat-bubble strong {
    display: block;
    color: var(--accent-gold);
    font-size: 15px;
    font-weight: 700;
}

.stat-bubble span {
    color: #718096;
    font-size: 10px;
}

.banner-cta-gold-btn {
    display: block;
    background: var(--accent-gold);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 13px;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.15);
}

.banner-cta-gold-btn:hover {
    background: var(--accent-gold-hover);
}

/* TIMING ENGINE CONFIGURATIONS */
@keyframes professionalVerticalTicker {
    0% { transform: translateY(0); }
    100% { transform: translateY(-51.5%); } /* Loops past data rows seamlessly with margin gaps factored in */
}

@keyframes liveMarkerPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.4); opacity: 0; }
}

/* Responsive Structural Breakdown Safeguards */
@media (max-width: 1024px) {
    .premium-leads-panel { grid-template-columns: 1fr; }
    .premium-banner-side-callout { display: none; }
}

@media (max-width: 768px) {
    .premium-header-row, .premium-lead-row-card {
        grid-template-columns: 1fr 1.2fr 1.2fr 1fr;
    }
    .lead-col-qty, .lead-col-date, .lead-col-status { display: none; }
}

/* MODERN HIGH-CONVERSION RFQ SECTION STYLES */
.ultimate-rfq-card {
    background: linear-gradient(135deg, #0b1528 0%, #172a4f 100%);
    border: 1px solid #233962;
    border-radius: 16px;
    padding: 45px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11, 21, 40, 0.15);
}

/* Background Abstract Glow Circles */
.ultimate-rfq-card::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(245, 166, 35, 0.04);
    border-radius: 50%;
    bottom: -100px;
    left: -50px;
    filter: blur(60px);
    pointer-events: none;
}

/* LEFT SIDE CONTENT PANEL */
.rfq-marketing-panel {
    color: #ffffff;
    z-index: 2;
}

.rfq-mini-tagline {
    background: rgba(245, 166, 35, 0.12);
    color: var(--accent-gold);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid rgba(245, 166, 35, 0.2);
}

.rfq-main-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.rfq-sub-text {
    font-size: 14.5px;
    color: #cbd5e0;
    margin-top: 8px;
}

.rfq-inline-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 25px 0;
}

.rfq-benefit-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 22px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.benefit-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.benefit-item p {
    font-size: 12px;
    color: #a0aec0;
    margin-top: 2px;
}

/* RIGHT SIDE INTERACTIVE INPUT FORM */
.rfq-form-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    z-index: 2;
}

.rfq-interactive-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.span-2 {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 11.5px;
    font-weight: 500;
    color: #e2e8f0;
    letter-spacing: 0.3px;
}

/* Premium Form Elements Controls */
.rfq-interactive-form input,
.rfq-interactive-form select {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 11px 14px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 13px;
    outline: none;
    transition: all 0.2s ease-in-out;
}

.rfq-interactive-form input::placeholder {
    color: #a0aec0;
}

.rfq-interactive-form select option {
    color: #2d3748;
    background-color: #ffffff;
}

/* Focus States Transitions */
.rfq-interactive-form input:focus,
.rfq-interactive-form select:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(245, 166, 35, 0.15);
}

/* Icon-Integrated Layout Box */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon .field-icon {
    position: absolute;
    left: 12px;
    font-size: 14px;
    pointer-events: none;
}

.input-with-icon input {
    padding-left: 36px;
}

/* Metrics Split-Column Alignment Profile */
.form-group-split-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* HIGH-GLOW SUBMIT BUTTON ENGINE */
.ultimate-rfq-submit-btn {
    width: 100%;
    background: linear-gradient(90deg, #f5a623 0%, #e0961b 100%);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.25);
    transition: all 0.2s ease;
}

.ultimate-rfq-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
    background: linear-gradient(90deg, #e0961b 0%, #ca8210 100%);
}

.ultimate-rfq-submit-btn:active {
    transform: translateY(0);
}

.btn-arrow-icon {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.ultimate-rfq-submit-btn:hover .btn-arrow-icon {
    transform: translateX(4px);
}

/* RESPONSIVE LAYOUT RESPONSIVENESS OVERRIDES */
@media (max-width: 992px) {
    .ultimate-rfq-card {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }
    .rfq-main-title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .rfq-interactive-form {
        grid-template-columns: 1fr;
    }
    .span-2 {
        grid-column: span 1;
    }
    .form-group-split-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
That metrics ribbon looks clean, but since it sits right between major structural blocks, we can make it look like a highly premium trust anchor. Currently, it feels a bit like static plain text on a white background.

Let's convert it into an interactive, sleek counter ribbon with glowing glass dividers, dynamic icon plates, and deep color accents that match the GrowOne theme.

### 🌟 What Makes This Version Better

* **Visual Anchors:** Each number now has a dedicated, matching dark-blue accent icon container to catch the eye instantly.
* **Premium Separators:** Replaced empty space with sleek, half-transparent vertical dividers that vanish cleanly on mobile devices so the text never wraps awkwardly.
* **Sophisticated Depth:** Added a subtle background tint (`#f8fafc`) and drop shadows to give the ribbon structural depth instead of letting it blend flatly into the body section.

---

### 1. The Updated HTML Structure

Replace your current metrics block with this structure in your `index.html` file (right under your new RFQ form section):

```html
    <section class="premium-metrics-ribbon">
        <div class="container metrics-grid-layout">
            
            <div class="premium-metric-card">
                <div class="metric-icon-shield">🏢</div>
                <div class="metric-text-block">
                    <h3>10,000+</h3>
                    <p>Verified Suppliers</p>
                </div>
            </div>

            <span class="metric-v-divider"></span>

            <div class="premium-metric-card">
                <div class="metric-icon-shield">📦</div>
                <div class="metric-text-block">
                    <h3>50,000+</h3>
                    <p>Products Listed</p>
                </div>
            </div>

            <span class="metric-v-divider"></span>

            <div class="premium-metric-card">
                <div class="metric-icon-shield">🌍</div>
                <div class="metric-text-block">
                    <h3>100+</h3>
                    <p>Countries Covered</p>
                </div>
            </div>

            <span class="metric-v-divider"></span>

            <div class="premium-metric-card">
                <div class="metric-icon-shield">📊</div>
                <div class="metric-text-block">
                    <h3>5,000+</h3>
                    <p>RFQs Posted Monthly</p>
                </div>
            </div>

        </div>
    </section>

```

---

### 2. The Updated CSS Code

Add these clean styles to your `style.css` file. It automatically aligns the layout cards and adds smooth micro-hover responses:

```css
/* PREMIUM METRICS RIBBON STYLES */
.premium-metrics-ribbon {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 30px 0;
    margin: 40px 0;
}

.metrics-grid-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.premium-metric-card {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
    transition: transform 0.2s ease;
}

.premium-metric-card:hover {
    transform: translateY(-2px);
}

/* Elegant Icon Shield Containers */
.metric-icon-shield {
    font-size: 20px;
    background-color: #0b1528; /* Matches GrowOne Dark Navy Header */
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(11, 21, 40, 0.1);
}

.metric-text-block {
    display: flex;
    flex-direction: column;
}

.metric-text-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0b1528;
    line-height: 1.1;
    margin: 0;
}

.metric-text-block p {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    margin: 2px 0 0 0;
    white-space: nowrap;
}

/* Subtle Vertical Ribbon Dividers */
.metric-v-divider {
    width: 1px;
    height: 35px;
    background-color: #cbd5e1;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
    .metrics-grid-layout {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    
    .metric-v-divider {
        display: none; /* Hide lines when wrapping into grid boxes */
    }

    .premium-metric-card {
        justify-content: flex-start;
        padding-left: 20%;
    }
}

@media (max-width: 576px) {
    .premium-metrics-ribbon {
        padding: 24px 0;
    }
    
    .premium-metric-card {
        padding-left: 10%;
        gap: 12px;
    }
    
    .metric-text-block h3 {
        font-size: 20px;
    }
    
    .metric-text-block p {
        font-size: 12px;
    }
}

/* GROWONE DESCRIPTION SEO PANEL STYLES */
.growone-description-panel {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px;
    margin-top: 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.seo-main-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color); /* Uses your Deep Navy Blue color */
    margin-bottom: 16px;
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 10px;
}

.seo-body-paragraph {
    font-size: 13.5px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 14px;
    text-align: justify;
}

.seo-body-paragraph strong {
    color: var(--primary-color);
}

.seo-footer-callout {
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.6;
    background-color: #f8fafc;
    padding: 14px 18px;
    border-left: 4px solid var(--accent-gold); /* Golden highlight left strip edge accent */
    border-radius: 0 6px 6px 0;
    margin-top: 18px;
}

.seo-footer-callout strong {
    color: #000000;
    font-weight: 700;
}

/* Responsive Adaptive Adjustments */
@media (max-width: 768px) {
    .growone-description-panel {
        padding: 20px;
        margin-bottom: 25px;
    }
    .seo-main-heading {
        font-size: 16px;
    }
    .seo-body-paragraph {
        font-size: 12.5px;
        text-align: left;
    }
    .seo-footer-callout {
        font-size: 13px;
        padding: 12px;
    }
}
/* TRENDING PRODUCTS HOVER GRID SYSTEM */
.trending-header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.view-all-link-top {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--accent-gold) !important;
}

.view-all-link-top:hover {
    color: var(--accent-gold-hover) !important;
    text-decoration: underline;
}

.trending-products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Forms 2 Rows of 6 beautifully */
    gap: 16px;
}

.product-card-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
}

.product-img-wrapper {
    width: 100%;
    height: 160px;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.product-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info-box {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    height: 36px;
    overflow: hidden;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-title a {
    color: var(--primary-color);
}

.product-title a:hover {
    color: var(--accent-gold-hover);
}

.product-price {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.price-val {
    color: #e53e3e;
    font-weight: 600;
}

.supplier-meta-info {
    border-top: 1px dashed #e2e8f0;
    padding-top: 8px;
    margin-bottom: 12px;
    margin-top: auto;
}

.supplier-name {
    font-size: 11px;
    font-weight: 600;
    color: #4a5568;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.supplier-loc {
    font-size: 10.5px;
    color: var(--text-muted);
    margin-top: 2px;
}

.btn-product-contact {
    width: 100%;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-product-contact:hover {
    background-color: var(--accent-gold);
}
.page-main-container {
    padding-top: 40px;
    padding-bottom: 60px;
}

.page-main-container.small-width {
    max-width: 800px;
    margin: 0 auto;
}

.page-accent-tag {
    color: var(--accent-gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 8px;
}

.page-main-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
}

.page-intro-text {
    font-size: 15px;
    color: var(--text-light-gray);
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 30px;
}

/* POLICY BLOCKS RICH TYPOGRAPHY */
.policy-content-block h2 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-top: 28px;
    margin-bottom: 12px;
}

.policy-content-block h3 {
    font-size: 16px;
    color: var(--primary-navy);
    margin-top: 20px;
    margin-bottom: 8px;
}

.policy-content-block p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: justify;
}

.policy-content-block ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-content-block li {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 8px;
}

.policy-content-block blockquote {
    border-left: 4px solid var(--accent-gold);
    background-color: #f8fafc;
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
    color: #4a5568;
    border-radius: 0 6px 6px 0;
}

/* INTERACTIVE FAQS CARD LAYOUT */
.faq-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.01);
}

.faq-card-item h4 {
    font-size: 15px;
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 8px;
}

.faq-card-item p {
    font-size: 13.5px;
    color: #4a5568;
    line-height: 1.5;
}

/* SPLIT PANEL DESIGN FOR CONTACT PAGE */
.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-meta-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.meta-item-box {
    display: flex;
    gap: 16px;
}

.meta-icon {
    font-size: 20px;
    background: #f1f5f9;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.meta-item-box h4 {
    font-size: 14px;
    color: var(--primary-navy);
}

.meta-item-box p {
    font-size: 13px;
    color: var(--text-light-gray);
    margin-top: 2px;
    line-height: 1.4;
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.contact-form-card h3 {
    font-size: 18px;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.interactive-page-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row-twin {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.input-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-wrap label {
    font-size: 12px;
    font-weight: 500;
    color: #4a5568;
}

.interactive-page-form input,
.interactive-page-form select,
.interactive-page-form textarea {
    border: 1px solid var(--border-light);
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    outline: none;
    background-color: #fafafa;
    transition: all 0.2s;
}

.interactive-page-form input:focus,
.interactive-page-form select:focus,
.interactive-page-form textarea:focus {
    border-color: var(--accent-gold);
    background-color: #ffffff;
    box-shadow: 0 0 8px rgba(245,166,35,0.12);
}

.page-primary-btn {
    background-color: var(--primary-navy);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
    align-self: flex-start;
}

.page-primary-btn:hover {
    background-color: var(--accent-gold);
}
/* Modal Overlay */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 450px;
    padding: 30px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #697386;
}

.modal-subtitle { color: #697386; margin-bottom: 20px; font-size: 0.9rem; }

/* Form Elements */
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 500; font-size: 0.85rem; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e3e8ee;
    border-radius: 8px;
    font-size: 0.9rem;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #635bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

/* RESPONSIVE LAYOUT CONSTRAINTS */
@media (max-width: 992px) {
    .contact-split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .form-row-twin {
        grid-template-columns: 1fr;
    }
    .page-primary-btn {
        width: 100%;
        text-align: center;
    }
}


/* SMART GRID MEDIA CONSTRAINTS */
@media (max-width: 1200px) {
    .trending-products-grid { grid-template-columns: repeat(4, 1fr); } /* 3 rows of 4 */
}

@media (max-width: 768px) {
    .trending-products-grid { grid-template-columns: repeat(2, 1fr); } /* 6 rows of 2 */
}

@media (max-width: 480px) {
    .trending-products-grid { grid-template-columns: 1fr; } /* 12 stacked single rows */
}
/* RFQ POST CONTAINER STYLE */
.rfq-section { padding: 30px 0; }
.rfq-container-inner {
    background: linear-gradient(135deg, #0b1528 0%, #1a2a4a 100%);
    color: white;
    padding: 35px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: center;
}
.rfq-info h3 { color: var(--accent-gold); font-size: 15px; }
.rfq-info h2 { font-size: 24px; font-weight: 700; }
.rfq-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.rfq-form input, .rfq-form select { padding: 10px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); color: white; outline: none; font-size: 13px; }
.rfq-form select option { color: black; }
.rfq-form input[type="text"]:first-child { grid-column: span 2; }
.btn-rfq-submit { grid-column: span 2; background: var(--accent-gold); color: white; border: none; font-weight: 600; padding: 12px; border-radius: 4px; cursor: pointer; }

/* METRICS RIBBON */
.metrics-ribbon { background: #fff; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 25px 0; margin-top: 20px; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.metric-item h3 { font-size: 24px; font-weight: 700; color: var(--primary-color); }
.metric-item p { font-size: 13px; color: var(--text-muted); }

/* FOOTER STYLING */
.main-footer { background: var(--primary-color); color: #fff; padding: 40px 0 20px 0; font-size: 13.5px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 30px; margin-bottom: 30px; }
.footer-brand p { margin-top: 10px; color: #a0aec0; font-size: 12.5px; }
.footer-grid h4 { font-size: 15px; margin-bottom: 15px; color: var(--accent-gold); }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid ul li a { color: #cbd5e0; }
.footer-bottom { border-top: 1px solid #1e2d4a; padding-top: 15px; text-align: center; color: #a0aec0; font-size: 12px; }

/* RESPONSIVE SUBSET */
@media(max-width: 992px){
    .industry-portal-row { grid-template-columns: 1fr; }
    .portal-subgrid { grid-template-columns: repeat(2, 1fr); }
    .mega-dropdown-menu { width: 100%; grid-template-columns: 1fr; }
    .mega-sidebar { display: none; }
    .reviews-grid, .rfq-container-inner, .footer-grid { grid-template-columns: 1fr; }
    .value-props-grid { position: relative; bottom: 0; transform: none; left: 0; width: 100%; margin-top: 20px; grid-template-columns: repeat(2, 1fr); }
}