@keyframes fadeInUp {
from { opacity: 0; transform: translateY(24px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes lineGrow {
from { width: 0; }
to { width: 32px; }
}
@keyframes statIn {
from { opacity: 0; transform: translateY(16px); }
to { opacity: 1; transform: translateY(0); }
}
.prod-hero {
background: #0a1628;
padding: 80px 60px 60px;
position: relative;
overflow: hidden;
border-bottom: 1px solid rgba(255,255,255,0.08);
}
.prod-hero::before {
content: ”;
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(240,133,10,0.04) 1px, transparent 1px),
linear-gradient(90deg, rgba(240,133,10,0.04) 1px, transparent 1px);
background-size: 60px 60px;
pointer-events: none;
z-index: 0;
}
.prod-hero-inner {
position: relative;
z-index: 1;
display: flex;
justify-content: space-between;
align-items: flex-end;
flex-wrap: wrap;
gap: 40px;
}
.prod-hero-left { flex: 1; min-width: 280px; }
.prod-tag {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 16px;
opacity: 0;
animation: fadeInUp 0.6s ease 0.1s forwards;
}
.prod-tag-line {
width: 0; height: 2px;
background: #f0850a;
flex-shrink: 0;
animation: lineGrow 0.5s ease 0.5s forwards;
}
.prod-tag-text {
font-family: ‘Barlow Condensed’, sans-serif;
font-size: 11px;
font-weight: 600;
letter-spacing: 3px;
text-transform: uppercase;
color: #f0850a;
}
.prod-hero-title {
font-family: ‘Barlow Condensed’, sans-serif;
font-size: 64px;
font-weight: 800;
text-transform: uppercase;
color: #ffffff;
margin: 0 0 16px;
line-height: 1;
opacity: 0;
animation: fadeInUp 0.7s ease 0.2s forwards;
}
.prod-hero-title span { color: #f0850a; }
.prod-hero-desc {
font-family: ‘Barlow’, sans-serif;
font-size: 15px;
color: #8fa0b4;
line-height: 1.7;
margin: 0;
max-width: 520px;
opacity: 0;
animation: fadeInUp 0.7s ease 0.35s forwards;
}
/* Stats */
.prod-hero-stats {
display: flex;
gap: 0;
flex-shrink: 0;
}
.prod-hero-stat {
padding: 0 32px;
border-right: 1px solid rgba(255,255,255,0.1);
opacity: 0;
}
.prod-hero-stat:first-child { padding-left: 0; }
.prod-hero-stat:last-child { border-right: none; }
.prod-hero-stat:nth-child(1) { animation: statIn 0.6s ease 0.4s forwards; }
.prod-hero-stat:nth-child(2) { animation: statIn 0.6s ease 0.55s forwards; }
.prod-hero-stat:nth-child(3) { animation: statIn 0.6s ease 0.7s forwards; }
.prod-hero-stat-num {
font-family: ‘Barlow Condensed’, sans-serif;
font-size: 44px;
font-weight: 800;
color: #f0850a;
line-height: 1;
display: block;
}
.prod-hero-stat-label {
font-family: ‘Barlow’, sans-serif;
font-size: 12px;
color: #8fa0b4;
margin-top: 4px;
display: block;
}
/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
.prod-hero { padding: 60px 40px 48px; }
.prod-hero-title { font-size: 52px; }
.prod-hero-stat-num { font-size: 36px; }
.prod-hero-stat { padding: 0 20px; }
}
@media (max-width: 768px) {
.prod-hero { padding: 60px 24px 48px; }
.prod-hero-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
.prod-hero-title { font-size: 44px; }
.prod-hero-stats { gap: 0; }
.prod-hero-stat { padding: 0 16px; }
.prod-hero-stat:first-child { padding-left: 0; }
.prod-hero-stat-num { font-size: 30px; }
}
@media (max-width: 480px) {
.prod-hero { padding: 48px 16px 40px; }
.prod-hero-title { font-size: 36px; }
.prod-hero-stat { padding: 0 12px; }
.prod-hero-stat-num { font-size: 26px; }
.prod-hero-stat-label { font-size: 11px; }
}
ICDB Store
Our Products
Premium industrial equipment from globally trusted brands — Oil & Gas, Safety, Measurement, Electrical and more. Sourced and shipped from Muscat, Oman.
500+
Products
15+
Brands
7
Categories
.prod-filters {
background: #112240;
padding: 16px 60px;
border-bottom: 1px solid rgba(255,255,255,0.08);
position: sticky;
top: 70px;
z-index: 50;
}
.prod-filters-inner {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.prod-filter-label {
font-family: ‘Barlow Condensed’, sans-serif;
font-size: 10px;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
color: #8fa0b4;
margin-right: 8px;
flex-shrink: 0;
}
.prod-filter-btn {
font-family: ‘Barlow Condensed’, sans-serif;
font-size: 12px;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
color: #8fa0b4;
background: transparent;
border: 1px solid rgba(255,255,255,0.08);
border-radius: 3px;
padding: 7px 16px;
text-decoration: none;
transition: all 0.2s ease;
white-space: nowrap;
}
.prod-filter-btn:hover {
background: #1d3461;
color: #ffffff;
border-color: rgba(240,133,10,0.3);
}
.prod-filter-btn.active {
background: #f0850a;
color: #ffffff;
border-color: #f0850a;
}
/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
.prod-filters { padding: 16px 40px; }
}
@media (max-width: 768px) {
.prod-filters { padding: 14px 24px; top: 62px; }
.prod-filter-label { width: 100%; margin-bottom: 4px; margin-right: 0; }
.prod-filters-inner { gap: 6px; }
.prod-filter-btn { font-size: 11px; padding: 6px 12px; }
}
@media (max-width: 480px) {
.prod-filters { padding: 12px 16px; }
.prod-filter-btn { font-size: 10px; padding: 5px 10px; }
}
Filter:
All Products
Oil & Gas
Breakers
Safety Equipment
Airfields
Tools
Test & Measurement
Lighting & Fans
Building Materials
-

Metso VG8568B1S1A Intelligent Valve Positioner with Cage | Industrial Control
Rated 0 out of 5 View More -

Metso VG8568B1S1A Intelligent Valve Positioner | Industrial Control
Rated 0 out of 5 View More -

Eaton MEDC SM87 BG LD Explosion Proof Switch Call Point | New
Rated 0 out of 5 View More -

Barksdale Raystat-EX-02 Control Thermostat | Tyco Digitrace
Rated 0 out of 5 View More -

Waaree Tube 16000 Pressure Gauge AISI 316 SS | Industrial Gauge
Rated 0 out of 5 View More -

ASCO NFM1211 NF8327B102 24V DC Solenoid Valve | 1/4″ | New
Rated 0 out of 5 View More -

Westhomes WGLZ-630/3P 630A Used Manual Switching Device
Rated 0 out of 5 View More -

Schneider Merlin Gerin NS160N 160A MCCB | Molded Case Circuit Breaker
Rated 0 out of 5 View More -

Eaton LMLE8003X 800A MCCB | Molded Case Circuit Breaker
Rated 0 out of 5 View More -

Schneider EasyPact EZC100 MCCB 20A–100A | Molded Case Circuit Breaker used
Rated 0 out of 5 Select options
This product has multiple variants. The options may be chosen on the product page -

LS ABE 103B MCCB 60A Used | Molded Case Circuit Breaker
Rated 0 out of 5 View More -

LS ABE 103B MCCB 100A | Molded Case Circuit Breaker
Rated 0 out of 5 View More -

LS GMC-100/4 Power Contactor | 4P Industrial Contactor
Rated 0 out of 5 View More -

LS Metasol ABS 103C 125A Used MCCB 3P | Molded Case Circuit Breaker
Rated 0 out of 5 View More -

NEI 125AF 125A MCCB Used | Molded Case Circuit Breaker
Rated 0 out of 5 View More -

Mitsubishi NF125-CW 125A MCCB | Used Molded Case Circuit Breaker
Rated 0 out of 5 View More -

LG MEC ABE 203B MCCB | Used Molded Case Circuit Breaker
Rated 0 out of 5 View More -

Mitsubishi NF250-CWC 200A Used Circuit Breaker
Rated 0 out of 5 View More -

Schneider EasyPact EZC250N 125A Used Circuit Breaker
Rated 0 out of 5 View More -

Schneider EZC250H 200A 3P Molded Case Circuit Breaker
Rated 0 out of 5 View More -

Schneider EZC250H 250A 3P Molded Case Circuit Breaker
Rated 0 out of 5 View More -

Schneider NSX630N Micrologic 2.3 3P Circuit Breaker | 630A
Rated 0 out of 5 View More -

Schneider NSX400N Micrologic 2.3 3P Circuit Breaker | 400A
Rated 0 out of 5 View More -

OTIS MCS120M Microcomputer Controller | New OTIS Control Cabinet
Rated 0 out of 5 View More -

Thorn Taxi Edge Plate with Light – OEM Taxiway Edge Lighting Assembly
Rated 0 out of 5 View More -

PRISM W
Rated 0 out of 5 View More -

PRISM B
Rated 0 out of 5 Add to cart -

PRISM A – Optical Prism for Airfield & Taxiway Lighting Systems
Rated 0 out of 5 View More -

Thorn Taxi Edge Top Cover with Circular Prism – OEM Spare Part
Rated 0 out of 5 View More -

ADB SAFEGATE Thorn Taxi Edge Light Components – OEM Spare Parts
Rated 0 out of 5 View More -

Osram components
Rated 0 out of 5 View More -

Converters with 2 Connectors for Airfield Lighting Systems
Rated 0 out of 5 Add to cart
.prod-cta {
background: #112240;
padding: 64px 60px;
border-top: 1px solid rgba(255,255,255,0.08);
}
.prod-cta-inner {
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
flex-wrap: wrap;
}
.prod-cta-title {
font-family: ‘Barlow Condensed’, sans-serif;
font-size: 40px;
font-weight: 800;
text-transform: uppercase;
color: #ffffff;
margin: 0 0 8px;
line-height: 1.1;
}
.prod-cta-title span { color: #f0850a; }
.prod-cta-sub {
font-family: ‘Barlow’, sans-serif;
font-size: 14px;
color: #8fa0b4;
margin: 0;
line-height: 1.6;
max-width: 480px;
}
.prod-cta-buttons {
display: flex;
gap: 12px;
flex-shrink: 0;
flex-wrap: wrap;
}
.prod-cta-btn-primary {
display: inline-block;
background: #f0850a;
color: #ffffff;
font-family: ‘Barlow Condensed’, sans-serif;
font-size: 14px;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
padding: 14px 32px;
border-radius: 3px;
text-decoration: none;
white-space: nowrap;
transition: background 0.3s ease, transform 0.2s ease;
}
.prod-cta-btn-primary:hover {
background: #c96e08;
transform: translateY(-2px);
}
.prod-cta-btn-secondary {
display: inline-block;
background: transparent;
color: #ffffff;
font-family: ‘Barlow Condensed’, sans-serif;
font-size: 14px;
font-weight: 600;
letter-spacing: 1.5px;
text-transform: uppercase;
padding: 14px 32px;
border-radius: 3px;
border: 1px solid rgba(255,255,255,0.2);
text-decoration: none;
white-space: nowrap;
transition: all 0.3s ease;
}
.prod-cta-btn-secondary:hover {
border-color: #f0850a;
color: #f0850a;
transform: translateY(-2px);
}
/* Contact strip */
.prod-contact-strip {
background: #0a1628;
padding: 20px 60px;
border-top: 1px solid rgba(255,255,255,0.08);
display: flex;
justify-content: center;
gap: 48px;
flex-wrap: wrap;
}
.prod-contact-item {
display: flex;
align-items: center;
gap: 10px;
font-family: ‘Barlow’, sans-serif;
font-size: 13px;
color: #8fa0b4;
text-decoration: none;
transition: color 0.2s ease;
}
.prod-contact-item:hover { color: #ffffff; }
/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
.prod-cta { padding: 56px 40px; }
.prod-contact-strip { padding: 20px 40px; gap: 32px; }
}
@media (max-width: 768px) {
.prod-cta { padding: 48px 24px; }
.prod-cta-inner { flex-direction: column; align-items: flex-start; }
.prod-cta-title { font-size: 32px; }
.prod-cta-buttons { width: 100%; flex-direction: column; }
.prod-cta-btn-primary,
.prod-cta-btn-secondary { text-align: center; }
.prod-contact-strip { padding: 20px 24px; gap: 20px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
.prod-cta { padding: 40px 16px; }
.prod-cta-title { font-size: 26px; }
.prod-contact-strip { padding: 20px 16px; }
}
Can’t Find What
You’re Looking For?
Our team specializes in sourcing hard-to-find industrial equipment. Send us your requirements and we’ll get back to you within 24 hours.
Request a Quote →
Contact Our Team
📞+968 7990 9926
💬WhatsApp Us
📧info@icdb.store
📍Muscat, Oman
Showing 1–12 of 50 results
-
Drager Polytron 2 Ir Style 334
Drager Polytron 2 Ir Style 334 Infrared Gas Detector 6810100
Select options This product has multiple variants. The options may be chosen on the product page











