/* ==========================================================================
   SUNVOLTA INDUSTRIES PRIVATE LIMITED - PREMIUM CUSTOM STYLESHEET
   Theme: Derived from Sunvolta Blue (#0a4e98) & Energy Red/Orange (#e42319)
   Rule Reference: Global Antigravity Rules - Proper Separation of Concerns
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Brand Colors derived from Logo_Sunvolta.jpg */
    --sunvolta-blue: #0a4e98;
    --sunvolta-blue-dark: #062f5e;
    --sunvolta-blue-light: #186ed2;
    --sunvolta-blue-bg: #eef5fc;
    
    --sunvolta-red: #e42319;
    --sunvolta-red-dark: #b8170f;
    --sunvolta-yellow: #ffaa00;
    --sunvolta-yellow-light: #fff8e7;
    
    --text-main: #122030;
    --text-muted: #58697e;
    --bg-white: #ffffff;
    --bg-light: #f7fafe;
    --bg-dark-slate: #0b1a2a;

    --border-color: #d8e5f3;
    --shadow-soft: 0 10px 30px rgba(10, 78, 152, 0.08);
    --shadow-hover: 0 20px 45px rgba(10, 78, 152, 0.18);
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
    /* Strict Reset: Ensures no white gap or padding ever appears underneath the footer */
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* ==========================================================================
   1. TOP BAR (Header Top - Contact & Social Links)
   ========================================================================== */
.header-top {
    background: linear-gradient(90deg, var(--sunvolta-blue-dark) 0%, var(--sunvolta-blue) 100%);
    color: var(--bg-white);
    padding: 10px 0;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    border-bottom: 2px solid var(--sunvolta-red);
}

.header-top a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.header-top a:hover {
    color: var(--sunvolta-yellow);
}

.header-top-info span,
.header-top-info a {
    margin-right: 22px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.header-top-info i {
    color: var(--sunvolta-yellow);
    font-size: 1.05rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    margin-left: 8px;
    color: #ffffff;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--sunvolta-red);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   2. MAIN NAVIGATION (Glassmorphic & Interactive Pill System)
   ========================================================================== */
.main-navbar {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px -4px rgba(10, 78, 152, 0.14);
    border-bottom: 1px solid rgba(10, 78, 152, 0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: var(--transition-smooth);
}

.navbar-brand-logo img {
    height: 54px;
    width: auto;
    transition: var(--transition-smooth);
    /* Fix: Directly dissolves white rectangular JPG/PNG backgrounds into the navbar smoothly without unwanted borders */
    mix-blend-mode: multiply;
}

.navbar-brand-logo:hover img {
    transform: scale(1.04);
}

/* Modern Sleek Underline Navigation Items */
.navbar-nav .nav-item {
    margin: 0 2px;
}

.navbar-nav .nav-item .nav-link {
    font-weight: 600;
    font-size: 0.91rem;
    color: var(--text-main) !important;
    padding: 8px 10px !important;
    border-radius: 0 !important;
    border-bottom: 3px solid transparent !important;
    transition: all 0.25s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    /* Strict fix: Enforce single horizontal line without wrapping */
    white-space: nowrap !important;
}

.navbar-nav .nav-item .nav-link i {
    color: var(--sunvolta-red);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.navbar-nav .nav-item .nav-link:hover {
    background: transparent !important;
    color: var(--sunvolta-blue) !important;
    transform: translateY(-2px);
    box-shadow: none !important;
    border-bottom: 3px solid rgba(10, 78, 152, 0.35) !important;
}

.navbar-nav .nav-item .nav-link:hover i {
    color: var(--sunvolta-blue);
    transform: scale(1.15);
}

/* Active Page State Sleek Underline Border */
.navbar-nav .nav-item .nav-link.active {
    background: transparent !important;
    color: var(--sunvolta-blue) !important;
    font-weight: 700 !important;
    box-shadow: none !important;
    border-bottom: 3px solid var(--sunvolta-blue) !important;
}

.navbar-nav .nav-item .nav-link.active i {
    color: var(--sunvolta-red) !important;
}

/* Dropdown menu elevation & Reference UI Match */
.dropdown-menu {
    border: none !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
    border-radius: 0 0 10px 10px !important;
    padding: 0 !important;
    border-top: 3px solid var(--sunvolta-red) !important;
    min-width: 210px !important;
    background: #ffffff !important;
    overflow: hidden;
    margin-top: 8px !important;
}

.dropdown-item {
    font-weight: 600 !important;
    padding: 12px 20px !important;
    color: #333333 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    transition: all 0.2s ease-in-out !important;
    font-size: 0.92rem !important;
    display: block !important;
}

.dropdown-item:last-child {
    border-bottom: none !important;
}

.dropdown-item:hover {
    background-color: #f8f9fa !important;
    color: var(--sunvolta-red) !important;
    padding-left: 24px !important;
}

/* Glowing Energy CTA Button with Pulse Animation */
@keyframes solarPulse {
    0% { box-shadow: 0 0 0 0 rgba(228, 35, 25, 0.6), 0 6px 20px rgba(228, 35, 25, 0.35); }
    70% { box-shadow: 0 0 0 14px rgba(228, 35, 25, 0), 0 6px 20px rgba(228, 35, 25, 0.35); }
    100% { box-shadow: 0 0 0 0 rgba(228, 35, 25, 0), 0 6px 20px rgba(228, 35, 25, 0.35); }
}

.btn-sunvolta {
    background: linear-gradient(135deg, var(--sunvolta-red) 0%, #ff5a00 100%);
    color: #ffffff !important;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 20px rgba(228, 35, 25, 0.35);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 0.84rem;
    letter-spacing: 0.5px;
    white-space: nowrap !important; /* Prevents CTA text from breaking into two lines */
    animation: solarPulse 2.5s infinite;
}

.btn-sunvolta:hover {
    background: linear-gradient(135deg, var(--sunvolta-blue) 0%, var(--sunvolta-blue-dark) 100%);
    box-shadow: 0 8px 28px rgba(10, 78, 152, 0.45);
    transform: translateY(-2px);
    animation: none; /* Stops pulse on hover for clean interaction */
}

.btn-sunvolta-blue {
    background: linear-gradient(135deg, var(--sunvolta-blue) 0%, var(--sunvolta-blue-dark) 100%);
    color: #ffffff !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 6px 20px rgba(10, 78, 152, 0.3);
    transition: var(--transition-smooth);
}

.btn-sunvolta-blue:hover {
    background: linear-gradient(135deg, var(--sunvolta-red) 0%, #ff5a00 100%);
    box-shadow: 0 8px 25px rgba(228, 35, 25, 0.4);
    transform: translateY(-2px);
}

/* ==========================================================================
   3. HERO BANNER & CAROUSEL (High Impact Aesthetics)
   ========================================================================== */
.hero-section {
    position: relative;
    background-color: #041528;
    color: #ffffff;
    padding: 0 !important; /* Fix: Allow carousel slides with custom photographic backgrounds to stretch full height and width */
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 170, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sunvolta-yellow);
    margin-bottom: 22px;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--sunvolta-yellow);
    background: linear-gradient(90deg, #ffffff, var(--sunvolta-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #d1e5ff;
    max-width: 650px;
    margin-bottom: 35px;
}

/* Hero Feature Cards */
.hero-stats-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.hero-stats-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--sunvolta-yellow);
    transform: translateY(-5px);
}

/* Custom Sunvolta Hero Carousel Slider Styles (Per Global Rules) */
.sunvolta-slider-indicators {
    margin-bottom: 22px;
    z-index: 15;
}

.sunvolta-slider-indicators [data-bs-target] {
    width: 36px;
    height: 7px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    transition: all 0.4s ease;
    margin: 0 6px;
}

.sunvolta-slider-indicators .active {
    width: 58px;
    background-color: var(--sunvolta-yellow);
    box-shadow: 0 0 14px rgba(255, 193, 7, 0.8);
}

.sunvolta-slider-btn:hover .carousel-control-prev-icon,
.sunvolta-slider-btn:hover .carousel-control-next-icon {
    background-color: var(--sunvolta-red) !important;
    border-color: #ffffff !important;
    transform: scale(1.1);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   4. SECTION HEADERS & GENERAL STYLING
   ========================================================================== */
.section-padding {
    padding: 85px 0;
}

.section-tag {
    color: var(--sunvolta-red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    position: relative;
}

.section-title span {
    color: var(--sunvolta-blue);
}

.divider-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--sunvolta-blue), var(--sunvolta-red));
    border-radius: 4px;
    margin-bottom: 35px;
}

/* ==========================================================================
   5. BRAND STORY & QUALITY CERTIFICATIONS
   ========================================================================== */
.brand-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.brand-card::top-border {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--sunvolta-blue), var(--sunvolta-red));
}

.cert-badge {
    background: var(--sunvolta-blue-bg);
    border: 2px solid #c7ddf5;
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    font-weight: 700;
    color: var(--sunvolta-blue);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.cert-badge i {
    font-size: 2rem;
    color: var(--sunvolta-red);
}

.cert-badge:hover {
    background: var(--sunvolta-blue);
    color: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(10, 78, 152, 0.25);
}

.cert-badge:hover i {
    color: var(--sunvolta-yellow);
}

/* ==========================================================================
   6. EMPANELMENT & GOVERNMENT ASSOCIATIONS
   ========================================================================== */
.empanelment-box {
    background: #ffffff;
    border: 2px dashed #b9d3ef;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
}

.empanelment-box h4 {
    font-weight: 800;
    color: var(--sunvolta-blue-dark);
    margin-top: 15px;
    font-size: 1.4rem;
}

.empanelment-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.empanelment-box:hover {
    background: linear-gradient(135deg, var(--sunvolta-blue) 0%, var(--sunvolta-blue-dark) 100%);
    border-style: solid;
    border-color: var(--sunvolta-yellow);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.empanelment-box:hover h4,
.empanelment-box:hover p {
    color: #ffffff;
}

/* ==========================================================================
   7. INNOVATIONS & DIVISIONS (SUMA, Solar Cab, Solar Mart)
   ========================================================================== */
.innovation-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #ffffff;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-color);
}

.innovation-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.innovation-header {
    background: linear-gradient(135deg, var(--sunvolta-blue-dark) 0%, var(--sunvolta-blue) 100%);
    color: #ffffff;
    padding: 30px;
    position: relative;
}

.innovation-header.red-header {
    background: linear-gradient(135deg, var(--sunvolta-red-dark) 0%, var(--sunvolta-red) 100%);
}

.innovation-header h3 {
    font-weight: 800;
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.innovation-badge {
    background: var(--sunvolta-yellow);
    color: var(--text-main);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.innovation-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ==========================================================================
   8. 30+ PRODUCT CATEGORIES (Interactive Showcase Grid)
   ========================================================================== */
.product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0a4e98 0%, #f58220 100%);
    opacity: 0;
    transition: all 0.35s ease;
    z-index: -1;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(10, 78, 152, 0.07) 0%, rgba(10, 78, 152, 0.02) 100%);
    border: 1px solid rgba(10, 78, 152, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #0a4e98;
    font-size: 2.2rem;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card h5 {
    font-weight: 800;
    font-size: 1.18rem;
    color: #0f172a;
    margin-bottom: 14px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.product-card .badge {
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 30px;
    background-color: rgba(245, 130, 32, 0.1) !important;
    color: #c25900 !important;
    border: 1px solid rgba(245, 130, 32, 0.2);
    transition: all 0.35s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(10, 78, 152, 0.12);
    border-color: rgba(10, 78, 152, 0.2);
    background: #ffffff;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover .product-icon {
    background: linear-gradient(135deg, #f58220 0%, #d86504 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 12px 25px rgba(245, 130, 32, 0.35);
}

.product-card:hover h5 {
    color: #0a4e98;
}

.product-card:hover .badge {
    background: linear-gradient(135deg, #f58220 0%, #d86504 100%) !important;
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.3);
}

/* ==========================================================================
   9. SUNVOLTA ASSOCIATES & BUSINESS PROPOSALS
   ========================================================================== */
.associate-card {
    border-radius: 24px;
    padding: 40px 30px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.associate-card.highlight {
    border-color: rgba(245, 130, 32, 0.3);
    background: linear-gradient(180deg, #fffcf9 0%, #ffffff 100%);
    box-shadow: 0 15px 35px rgba(245, 130, 32, 0.08);
}

.associate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(10, 78, 152, 0.12);
    border-color: rgba(10, 78, 152, 0.2);
}

.associate-card.highlight:hover {
    box-shadow: 0 25px 50px rgba(245, 130, 32, 0.2);
    border-color: #f58220;
}

/* ==========================================================================
   10. PAN-INDIA PROJECTS & AWARDS SECTION
   ========================================================================== */
.project-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.98rem;
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
    margin: 6px;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-tag.isro-tag {
    background: linear-gradient(135deg, #0a4e98 0%, #082952 100%);
    color: #ffffff;
    border-color: rgba(245, 130, 32, 0.4);
    box-shadow: 0 6px 20px rgba(10, 78, 152, 0.25);
}

.project-tag:hover {
    background: linear-gradient(135deg, #0a4e98 0%, #082952 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(10, 78, 152, 0.2);
}

.project-tag:hover i {
    color: #f58220 !important;
}

/* ==========================================================================
   11. FOOTER (Deep Slate & Red Aesthetic)
   ========================================================================== */
.site-footer {
    background: var(--bg-dark-slate);
    color: #b7c7db;
    padding: 70px 0 25px;
    font-size: 0.95rem;
    border-top: 5px solid var(--sunvolta-red);
}

.footer-widget h5 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--sunvolta-yellow);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b7c7db;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--sunvolta-yellow);
    padding-left: 6px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    line-height: 1.6;
}

.footer-contact-info i {
    color: var(--sunvolta-red);
    font-size: 1.2rem;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 50px;
    padding-top: 25px;
    text-align: center;
    font-size: 0.88rem;
    color: #7990ac;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .header-top-info { text-align: center; margin-bottom: 8px; }
    .social-icons { justify-content: center; display: flex; }
}

/* ==========================================================================
   21. EXECUTIVE HERO SLIDER ZERO-CROP & HIGH CLARITY GUARANTEE (Rule 5 & 11)
   ========================================================================== */
#sunvoltaHeroSlider, #sunvoltaHeroSlider .carousel-inner, #sunvoltaHeroSlider .carousel-item {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    background-color: #ffffff !important;
}

#sunvoltaHeroSlider .carousel-item img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
    image-rendering: high-quality !important;
    filter: none !important;
    opacity: 1 !important;
}

/* ==========================================================================
   22. INTERACTIVE FEATURE CARDS LEVITATION (Micro-Animations & Depth)
   ========================================================================== */
.sunvolta-hover-card {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease !important;
}

.sunvolta-hover-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 16px 32px rgba(10, 78, 152, 0.18) !important;
    border-color: var(--sunvolta-blue) !important;
}

/* ==========================================================================
   23. ULTRA-CLEAN MINIMALIST EXECUTVE CARD HOVER LEVITATION
   ========================================================================== */
.sunvolta-clean-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
}

.sunvolta-clean-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 16px 35px rgba(10, 78, 152, 0.1) !important;
    border-color: #0a4e98 !important;
}

.sunvolta-clean-card:hover .icon-box {
    background-color: #f58220 !important;
    color: #ffffff !important;
}

/* ==========================================================================
/* ==========================================================================
   24. ENTERPRISE EXECUTIVE EMPANELMENT PASTEL CARDS
   ========================================================================== */
.sunvolta-empanel-card {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease !important;
}

.sunvolta-empanel-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 15px 32px rgba(15, 23, 42, 0.08) !important;
}

/* ==========================================================================
   25. PREMIUM DYNAMIC PRODUCT CATALOG GRID (Rule 1: Rich Aesthetics & WOW factor)
   ========================================================================== */
.prod-catalog-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
}

.prod-filter-btn {
    background: #ffffff !important;
    color: #0b1a2a !important;
    border: 1px solid #d8e5f3 !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.92rem !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(10, 78, 152, 0.05) !important;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    outline: none !important;
}

.prod-filter-btn:hover {
    background: #eef5fc !important;
    color: var(--sunvolta-blue) !important;
    border-color: var(--sunvolta-blue) !important;
    transform: translateY(-2px) !important;
}

.prod-filter-btn.active {
    background: linear-gradient(135deg, var(--sunvolta-red) 0%, #ff5a00 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 6px 20px rgba(228, 35, 25, 0.35) !important;
}

.prod-grid-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    border: 1px solid #e2eaf4 !important;
    box-shadow: 0 8px 24px rgba(10, 78, 152, 0.06) !important;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.prod-grid-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(10, 78, 152, 0.16) !important;
    border-color: var(--sunvolta-blue) !important;
}

.prod-img-box {
    position: relative !important;
    width: 100% !important;
    height: 210px !important;
    background: #f8fafc !important;
    overflow: hidden !important;
}

.prod-img-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.4s ease !important;
}

.prod-grid-card:hover .prod-img-box img {
    transform: scale(1.08) !important;
}

.prod-mini-badge {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 0.95rem !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.prod-card-body {
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    flex-grow: 1 !important;
}

.prod-title {
    font-size: 1.12rem !important;
    font-weight: 700 !important;
    color: #0b1a2a !important;
    margin-bottom: 6px !important;
}

.prod-badge {
    display: inline-block !important;
    font-size: 0.76rem !important;
    font-weight: 600 !important;
    color: var(--sunvolta-blue) !important;
    background: var(--sunvolta-blue-bg) !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    margin-bottom: 16px !important;
}

.prod-enquire-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 10px !important;
    background: #f7fafe !important;
    color: var(--sunvolta-blue) !important;
    border: 1px solid #d8e5f3 !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.prod-enquire-btn:hover {
    background: var(--sunvolta-red) !important;
    color: #ffffff !important;
    border-color: var(--sunvolta-red) !important;
}

.sunvolta-empanel-card img {
    transition: transform 0.35s ease;
}

.sunvolta-empanel-card:hover img {
    transform: scale(1.04);
}
