Power Solutions | Himel • Rittal • Clean Power UPS
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: #f9fafb;
color: #0f172a;
line-height: 1.5;
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 32px;
}
/* breadcrumb */
.breadcrumb {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.85rem;
color: #94a3b8;
margin-bottom: 32px;
flex-wrap: wrap;
}
.breadcrumb i { font-size: 0.7rem; }
.breadcrumb span:last-child { color: #1e293b; font-weight: 500; }
/* section titles */
.section-subtitle {
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 1.5px;
color: #2563eb;
text-transform: uppercase;
margin-bottom: 12px;
}
.section-title {
font-size: 2.2rem;
font-weight: 700;
color: #0f172a;
margin-bottom: 16px;
line-height: 1.2;
}
.section-description {
color: #475569;
font-size: 1rem;
max-width: 700px;
}
/* hero */
.power-hero {
background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
padding: 60px 0 80px;
border-bottom: 1px solid #e2e8f0;
}
.hero-content {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 40px;
}
.hero-text { flex: 1.2; }
.hero-title {
font-size: 3.2rem;
font-weight: 800;
background: linear-gradient(135deg, #0f2b3d, #1e4a6e);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
margin-bottom: 20px;
}
.hero-description {
font-size: 1.1rem;
color: #334155;
margin-bottom: 24px;
}
.hero-innovation {
background: #eef2ff;
padding: 14px 20px;
border-radius: 16px;
display: inline-flex;
align-items: center;
gap: 12px;
font-weight: 500;
margin-bottom: 32px;
}
.cta-button {
display: inline-flex;
align-items: center;
gap: 8px;
background: #1e293b;
color: white;
padding: 12px 28px;
border-radius: 40px;
font-weight: 600;
text-decoration: none;
transition: 0.2s;
border: none;
cursor: pointer;
}
.cta-button.outline {
background: transparent;
border: 1.5px solid #1e293b;
color: #1e293b;
}
.hero-visual {
flex: 0.9;
background: #ffffffcc;
border-radius: 32px;
padding: 20px;
box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
}
.energy-flow {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 16px;
align-items: center;
}
.power-source, .data-center, .industrial, .backup {
background: #f8fafc;
padding: 12px 16px;
border-radius: 60px;
display: flex;
align-items: center;
gap: 10px;
font-weight: 500;
}
.transmission-line { width: 30px; height: 2px; background: #3b82f6; position: relative; }
.energy-pulse { width: 8px; height: 8px; background: #3b82f6; border-radius: 50%; animation: pulse 1.2s infinite; }
@keyframes pulse { 0% { opacity: 0.4; transform: scale(0.8);} 100% { opacity: 1; transform: scale(1.2);} }
/* 4 Pillars Grid */
.solutions-section { padding: 80px 0; background: white; }
.section-header { text-align: center; margin-bottom: 48px; }
.solutions-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 32px;
}
.solution-card {
background: #ffffff;
border-radius: 28px;
padding: 28px 24px;
box-shadow: 0 12px 30px rgba(0,0,0,0.05);
transition: transform 0.2s ease;
border: 1px solid #eef2ff;
}
.solution-card:hover { transform: translateY(-6px); box-shadow: 0 25px 35px -12px rgba(0,0,0,0.12); }
.solution-badge {
background: #e0e7ff;
padding: 4px 12px;
border-radius: 40px;
font-size: 0.7rem;
font-weight: 600;
color: #1e40af;
display: inline-block;
margin-bottom: 20px;
}
.solution-icon { font-size: 2.5rem; color: #2563eb; margin-bottom: 20px; }
.solution-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.solution-card p { color: #475569; margin-bottom: 20px; }
.solution-features { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.solution-features span { background: #f1f5f9; padding: 4px 12px; border-radius: 30px; font-size: 0.75rem; font-weight: 500; }
.solution-specs { display: flex; justify-content: space-between; border-top: 1px solid #e2e8f0; padding-top: 16px; margin-top: 8px; }
.spec { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.partner-link { margin-top: 16px; display: inline-block; font-size: 0.8rem; font-weight: 600; color: #2563eb; text-decoration: none; }
/* RCCB products */
.product-showcase { background: #f1f5f9; padding: 70px 0; }
.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 28px;
margin-top: 40px;
}
.product-card {
background: white;
border-radius: 24px;
padding: 20px;
text-align: center;
box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.product-card img {
width: 100%;
max-height: 150px;
object-fit: contain;
background: #f9fafb;
border-radius: 16px;
}
.product-code { color: #2563eb; font-weight: 600; font-size: 0.85rem; margin: 8px 0; }
/* Rittal Gallery (IT Infrastructure) */
.rittal-gallery {
padding: 80px 0;
background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 32px;
margin-top: 48px;
}
.gallery-card {
background: white;
border-radius: 28px;
overflow: hidden;
box-shadow: 0 15px 35px -12px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}
.gallery-card:hover { transform: translateY(-8px); }
.gallery-image {
width: 100%;
height: 240px;
object-fit: cover;
background: #0f172a;
display: block;
}
.gallery-content { padding: 24px; }
.gallery-content h3 { font-size: 1.4rem; margin-bottom: 12px; }
.gallery-features { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.gallery-features span { background: #eef2ff; padding: 5px 12px; border-radius: 30px; font-size: 0.75rem; font-weight: 500; }
/* innovation & efficiency */
.innovation-section { padding: 80px 0; background: white; }
.innovation-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 32px;
margin-top: 40px;
}
.efficiency-section {
background: #0f172a;
color: white;
padding: 80px 0;
}
.efficiency-grid {
display: flex;
flex-wrap: wrap;
gap: 48px;
align-items: center;
}
.efficiency-content { flex: 1; }
.efficiency-dashboard {
flex: 1;
background: #1e293b;
border-radius: 32px;
padding: 24px;
}
.applications-section { padding: 80px 0; background: #ffffff; }
.applications-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 28px;
}
.power-cta {
background: linear-gradient(115deg, #0f172a 0%, #1e293b 100%);
padding: 80px 0;
color: white;
}
.cta-content {
display: flex;
flex-wrap: wrap;
gap: 40px;
align-items: center;
}
.cta-form {
flex: 1.2;
background: rgba(255,255,255,0.1);
backdrop-filter: blur(8px);
border-radius: 32px;
padding: 32px;
}
.form-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.form-group { flex: 1; position: relative; }
.form-group input, .form-group select, .form-group textarea {
width: 100%;
padding: 12px 16px;
border-radius: 60px;
border: none;
background: #f1f5f9;
font-family: inherit;
}
.form-group textarea { border-radius: 24px; }
@media (max-width: 768px) {
.container { padding: 0 20px; }
.hero-title { font-size: 2.2rem; }
}
.metric-bar { background: #334155; border-radius: 12px; height: 8px; margin: 8px 0; }
.bar-fill { background: #3b82f6; height: 8px; border-radius: 12px; }
HomeSolutionsPower Solutions
INTEGRATED POWER ECOSYSTEM
Power Solutions
Industrial • Residential • IT Infrastructure • Clean Power. Trusted global partners: Himel (electrical distribution) and Rittal (enclosures & cooling). Single & three-phase UPS for any critical application.
Strategic alliances deliver certified RCCB, modular racks, and high-efficiency UPS systems.
Industrial
Residential
IT Infra
Clean Power
HIMEL PARTNER
Industrial & Commercial
MCCB, RCCB, contactors, power factor correction, heavy-duty UPS integration. Factory automation & smart buildings.
20kA–100kA Himel ecosystem
Partner: Himel.com
HIMEL RESIDENTIAL
Residential
Single-phase UPS, RCCB protection, surge arresters, smart home energy management. Safety and efficiency for villas & apartments.
1–15 kVA UPS 30mA RCCB
Explore Himel Home
RITTAL CERTIFIED
IT Infrastructure
Modular IT racks, intelligent PDUs, precision cooling, and high-density power distribution for data centers & edge.
Rittal enclosures N+1 redundancy
Up to 500kVA
Blue e+ cooling
Partner: Rittal.com
CLEAN POWER | UPS
Clean Power
Single-phase UPS (1–20kVA) for office/retail, three-phase UPS (20–1200kVA) for industrial & data centers. Lithium-ion ready.
Efficiency up to 97% Eco-mode
Single/Three-phase
VRLA / Li-ion
Request custom UPS

HDB3VR Series
2P/4P • 25-63A
Type A/AC, 30mA, compact design

HDY3N
High immunity
63A, 100mA, industrial grade

HDY3N Modular
40A • 30mA
Ultra-compact, nuisance trip rejection

Industrial RCCB
4P 80A
Selective type, three-phase networks
TS IT Server Racks
Modular, scalable 19" enclosures with optimized airflow, high static load capacity, and quick assembly.
42U / 48U Tool-less mounting Vented front/rear
Intelligent Power Distribution
PDU metered plus series with per-outlet energy monitoring, remote switching, and environmental sensors.
Zero-U mounting Per-outlet metering SNMP enabled
Blue e+ Cooling Units
Energy-efficient enclosure cooling with inverter technology — up to 70% energy savings, hybrid operation.
500W–4kW EC fans IoT interface
Single-Phase UPS
Line-interactive & online from 500VA to 20kVA. Perfect for residential, retail, and small offices.
Three-Phase UPS
Modular from 20kVA to 1.2MW, double conversion, parallel redundancy, efficiency 96.5%+.
Himel RCCB portfolio
Type A, AC, F, B, 2P/4P, 16A-125A, 30mA/100mA/300mA for maximum safety.
Rittal Climate Control
Precision A/C, chillers, and liquid cooling for high-density IT environments.
PERFORMANCE METRICS
Intelligent Power Management
Real-time efficiency, uptime, and savings across all four segments.
Three-Phase UPS Efficiency96.8% System Uptime (IT Infra)99.999% Energy Savings (Himel RCCB + UPS)35% average
Live Dashboard
● Active Industrial load: 78% | Residential peak: 3.2kW
Three-phase UPS capacity: 340kVA / 272kW
Rittal cooling efficiency: Eco mode 68% saved
Single-phase UPS range: 1kVA / 3kVA / 6kVA / 10kVA / 20kVA → request datasheet
Manufacturing
Himel MCCB + 3-phase UPS, power factor correction.
Healthcare
RCCB Type B + medical-grade single/three-phase UPS.
Data Centers
Rittal racks, PDUs, cooling & modular UPS systems.
Smart Homes
Single-phase UPS, SPD, RCCB residential panels.