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

 /* body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
            background: #f0f0f0;

        } */
 /* EXACT container matching image dimensions */

 .electrical-banner {
     position: relative;
     width: 100%;
     height: 280px;
     background: #021630;
     overflow: hidden;
     margin: 0 auto;
     margin-top: 98px;
 }

 /* Left content area */

 .banner-left {
     position: absolute;
     left: 0;
     top: 0;
     width: 653px;
     height: 100%;
     padding: 38px 0 0 35px;
     z-index: 2;
 }

 /* Breadcrumb */

 .breadcrumb {
     display: flex;
     align-items: center;
     gap: 6px;
     margin-bottom: 14px;
     font-size: 11px;
 }

 .breadcrumb a {
     color: #7a8fa8;
     text-decoration: none;
 }

 .breadcrumb a:hover {
     color: #04163b;
 }

 .breadcrumb-separator {
     color: #5a6f88;
     font-size: 10px;
 }

 .breadcrumb-current {
     color: #ffffff;
 }

 /* Title with lightning icon */

 .banner-title {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 10px;
 }

 .lightning-box {
     width: 36px;
     height: 36px;
     border: 1.5px solid rgba(255, 255, 255, 0.3);
     border-radius: 6px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .lightning-box svg {
     width: 20px;
     height: 20px;
     fill: #ffffff;
 }

 .banner-title h1 {
     font-size: 32px;
     font-weight: 700;
     color: #ffffff !important;
     letter-spacing: 0;
 }

 /* Description */

 .banner-description {
     font-size: 14px;
     line-height: 1.6;
     color: #ffffff !important;
     margin-bottom: 18px;
     max-width: 420px;
 }

 /* Features row */

 .features {
     display: flex;
     gap: 32px;
     align-items: center;
 }

 .feature-item {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .feature-icon {
     width: 32px;
     height: 32px;
     border: 1.5px solid rgba(255, 255, 255, 0.25);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .feature-icon svg {
     width: 16px;
     height: 16px;
     stroke: #ffffff;
     fill: none;
     stroke-width: 1.5;
 }

 .feature-text {
     display: flex;
     flex-direction: column;
 }

 .feature-number {
     font-size: 13px;
     font-weight: 500;
     color: #ffffff;
     line-height: 1.2;
 }

 .feature-label {
     font-size: 11px;
     color: #6a8aaa;
     line-height: 1.3;
 }

 /* Right image area */

 .banner-image {
     position: absolute;
     right: 0;
     top: 0;
     width: 650px;
     height: 100%;
     z-index: 1;
 }

 .banner-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: left center;
 }

 /* Gradient overlay to blend image with dark background */

 .banner-image::after {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     width: 300px;
     height: 100%;
     background: linear-gradient(to right, #021630 0%, rgba(2, 22, 48, 0.95) 30%, rgba(2, 22, 48, 0.7) 60%, transparent 100%);
 }

 /* Subtle glow effect on left side */

 .banner-left::before {
     content: "";
     position: absolute;
     left: -50px;
     top: -50px;
     width: 200px;
     height: 200px;
     background: radial-gradient(circle, rgba(30, 60, 100, 0.15) 0%, transparent 70%);
     pointer-events: none;
 }

 /* =========================
   MOBILE RESPONSIVE
 ========================= */

 @media (max-width: 768px) {
     .electrical-banner {
         height: auto;
         padding: 30px 15px;
         display: flex;
         flex-direction: column;
         align-items: center;
         text-align: center;
     }

     /* Left section center */
     .banner-left {
         position: relative;
         width: 100%;
         padding: 20px 10px;
         text-align: center;
     }

     .banner-title {
         justify-content: center;
     }

     .banner-description {
         margin: 0 auto 18px;
     }

     .features {
         flex-wrap: wrap;
         justify-content: center;
         gap: 20px;
     }

     /* Hide right image OR move below */
     .banner-image {
         position: relative;
         width: 100%;
         height: 220px;
         margin-top: 20px;
     }

     .banner-image::after {
         width: 100%;
     }
 }

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

 .container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 20px;
 }

 .page-header {
     margin-bottom: 25px;
 }

 .page-header h1 {
     font-size: 28px;
     font-weight: 700;
     color: #0B3472;
     margin-bottom: 5px;
 }

 .breadcrumb {
     font-size: 13px;
     color: #888;
 }

 .breadcrumb a {
     color: #0B3472;
     text-decoration: none;
 }

 .breadcrumb a:hover {
     text-decoration: underline;
 }

 .main-layout {
     display: flex;
     gap: 25px;
     align-items: flex-start;
 }

 .sidebar {
     width: 260px;
     background: #fff;
     border-radius: 12px;
     box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
     padding: 20px 0;
     flex-shrink: 0;
     position: sticky;
     top: 20px;
 }

 .sidebar-title {
     font-size: 13px;
     font-weight: 700;
     color: #0B3472;
     text-transform: uppercase;
     letter-spacing: 1px;
     padding: 0 20px 15px;
     border-bottom: 1px solid #eee;
 }

 .sidebar-nav {
     list-style: none;
     padding: 10px 0;
 }

 .sidebar-nav li {
     position: relative;
 }

 .sidebar-nav li a {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 12px 20px;
     color: #555;
     text-decoration: none;
     font-size: 14px;
     transition: all 0.2s ease;
     border-left: 3px solid transparent;
 }

 .sidebar-nav li a:hover {
     background: #f0f4ff;
     color: #0B3472;
     border-left-color: #0B3472;
 }

 .sidebar-nav li.active a {
     background: #f0f4ff;
     color: #0B3472;
     border-left-color: #0B3472;
     font-weight: 600;
 }

 .sidebar-nav li a i {
     width: 20px;
     text-align: center;
     font-size: 15px;
 }

 .sidebar-help {
     margin-top: 20px;
     padding: 20px;
     border-top: 1px solid #eee;
 }

 .sidebar-help h4 {
     font-size: 14px;
     color: #333;
     margin-bottom: 5px;
 }

 .sidebar-help p {
     font-size: 12px;
     color: #888;
     margin-bottom: 15px;
     line-height: 1.5;
 }

 .btn-support {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 10px 18px;
     background: #fff;
     border: 1px solid #0B3472;
     color: #0B3472;
     border-radius: 8px;
     font-size: 13px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.2s ease;
     text-decoration: none;
 }

 .btn-support:hover {
     background: #0B3472;
     color: #fff;
 }

 .content-area {
     flex: 1;
 }

 .section-title {
     font-size: 22px;
     font-weight: 700;
     color: #0B3472;
     margin-bottom: 20px;
 }

 .category-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-bottom: 40px;
 }

 .category-card {
     background: #fff;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
     transition: all 0.3s ease;
     cursor: pointer;
     border: 1px solid transparent;
 }

 .category-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
     border-color: #0B3472;
 }

 .category-img {
     height: 168px;
     width: 100%;
     background: #f8f9fb;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     position: relative;
 }

 .category-img img {
     max-width: 80%;
     max-height: 80%;
     object-fit: contain;
     transition: transform 0.3s ease;
 }

 .category-card:hover .category-img img {
     transform: scale(1.05);
 }

 .category-info {
     padding: 15px;
 }

 .category-info h3 {
     font-size: 15px;
     font-weight: 700;
     color: #0B3472;
     margin-bottom: 6px;
 }

 .category-info p {
     font-size: 12px;
     color: #888;
     line-height: 1.5;
 }

 .view-all-card {
     background: #fff;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
     transition: all 0.3s ease;
     cursor: pointer;
     border: 1px solid transparent;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     min-height: 100%;
 }

 .view-all-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
     border-color: #0B3472;
 }

 .view-all-icon {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background: #f0f4ff;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 15px;
     transition: all 0.3s ease;
 }

 .view-all-card:hover .view-all-icon {
     background: #0B3472;
 }

 .view-all-icon i {
     font-size: 24px;
     color: #0B3472;
     transition: all 0.3s ease;
 }

 .view-all-card:hover .view-all-icon i {
     color: #fff;
 }

 .view-all-card h3 {
     font-size: 15px;
     font-weight: 700;
     color: #0B3472;
     margin-bottom: 6px;
 }

 .view-all-card p {
     font-size: 12px;
     color: #888;
     text-align: center;
     padding: 0 15px;
     line-height: 1.5;
 }

 /* ===== BRANDS SECTION ===== */

 .brands-section {
     background: #fff;
     border-radius: 12px;
     padding: 25px 0px;
     box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
     
 }

 .brands-section h2 {
     font-size: 18px;
     font-weight: 700;
     color: #0B3472;
     margin-bottom: 20px;
     text-align:center;
 }

 .brands-grid {
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 5px;
     padding: 42px 0px;
 }

 .brand-item {
     display: flex;
     align-items: center;
     justify-content: center;
     height: 50px;
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .brand-item img {
     max-height: 100px;
     max-width: 120px;
     object-fit: contain;
 }

 /* ===== MOBILE RESPONSIVE ===== */

 @media (max-width: 1200px) {
     .category-grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 @media (max-width: 992px) {
     .main-layout {
         flex-direction: column;
     }

     .sidebar {
         width: 100%;
         position: static;
     }

     .sidebar-nav {
         display: flex;
         flex-wrap: wrap;
         gap: 5px;
         padding: 10px;
     }

     .sidebar-nav li {
         flex: 1 1 auto;
         min-width: 200px;
     }

     .sidebar-nav li a {
         border-left: none;
         border-radius: 8px;
     }

     .sidebar-nav li.active a {
         border-left: none;
     }

     .sidebar-help {
         display: none;
     }
 }

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

     .brands-grid {
         justify-content: center;
     }

     .brand-item {
         flex: 0 0 calc(33.33% - 20px);
     }
 }

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

     .brand-item {
         flex: 0 0 calc(50% - 20px);
     }

     .page-header h1 {
         font-size: 22px;
     }
 }

 /* ===== ANIMATIONS ===== */

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .category-card,
 .view-all-card {
     animation: fadeInUp 0.5s ease forwards;
 }

 .category-card:nth-child(1) {
     animation-delay: 0.05s;
 }

 .category-card:nth-child(2) {
     animation-delay: 0.1s;
 }

 .category-card:nth-child(3) {
     animation-delay: 0.15s;
 }

 .category-card:nth-child(4) {
     animation-delay: 0.2s;
 }

 .category-card:nth-child(5) {
     animation-delay: 0.25s;
 }

 .category-card:nth-child(6) {
     animation-delay: 0.3s;
 }

 .category-card:nth-child(7) {
     animation-delay: 0.35s;
 }

 .view-all-card {
     animation-delay: 0.4s;
 }

 /* Only Mobile View */

 @media (max-width: 767px) {
     .category-img {
         height: 230px;
     }

     .category-info {
         padding: 15px !important;
         align-items: center;
         display: flex !important;
         flex-direction: column !important;
     }

     .prod-detail {
         padding: 100px 0;
         background: #fff
     }

     .prod-detail .section-tag {
         font-size: 12px;
         font-weight: 700;
         color: #d48a10;
         text-transform: uppercase;
         letter-spacing: 3px;
         display: block;
         margin-bottom: 14px
     }

     .prod-detail h2 {
         font-size: 48px;
         font-weight: 800;
         color: #0B3472;
         margin-bottom: 20px
     }

     .prod-detail .lead-text {
         font-size: 17px;
         color: #555;
         line-height: 1.85;
         margin-bottom: 20px
     }

     .prod-detail .highlight-bar {
         background: linear-gradient(135deg, #fff8ee, #fff3db);
         border-left: 5px solid #D89A1D;
         padding: 22px 28px;
         border-radius: 0 12px 12px 0;
         margin-top: 30px
     }

     .prod-detail .highlight-bar p {
         font-size: 17px;
         color: #b37a00;
         font-weight: 600;
         font-style: italic;
         margin: 0;
         line-height: 1.6
     }

     .prod-detail .prod-img {
         border-radius: 20px;
         overflow: hidden;
         box-shadow: 0 25px 70px rgba(0, 0, 0, .12)
     }

     .prod-detail .prod-img img {
         width: 100%;
         height: 500px;
         object-fit: cover;
         display: block;
         transition: .5s
     }

     .prod-detail .prod-img:hover img {
         transform: scale(1.04)
     }

     .spec-section {
         padding: 80px 0;
         background: #f4f6f9
     }

     .spec-card {
         background: #fff;
         border: 1px solid #eaeef3;
         border-radius: 16px;
         padding: 35px;
         text-align: center;
         height: 100%;
         transition: .3s
     }

     .spec-card:hover {
         transform: translateY(-6px);
         box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
         border-color: #D89A1D
     }

     .spec-card .sp-icon {
         font-size: 36px;
         margin-bottom: 16px;
         display: block
     }

     .spec-card h4 {
         font-size: 18px;
         font-weight: 700;
         color: #0B3472;
         margin-bottom: 10px
     }

     .spec-card p {
         font-size: 14px;
         color: #777;
         line-height: 1.7;
         margin: 0
     }

     .use-section {
         padding: 100px 0;
         background: #fff
     }

     .use-chip {
         display: inline-flex;
         align-items: center;
         gap: 10px;
         background: #f8f9fb;
         border: 1.5px solid #dde3ea;
         color: #333;
         font-size: 14px;
         font-weight: 600;
         padding: 13px 22px;
         border-radius: 50px;
         transition: .3s;
         margin: 6px
     }

     .use-chip:hover {
         border-color: #D89A1D;
         background: #fff8ee;
         color: #b37a00
     }

     .use-chip .dot {
         width: 8px;
         height: 8px;
         background: #D89A1D;
         border-radius: 50%
     }

     .prod-cta {
         padding: 100px 0;
         background: #f4f6f9;
         text-align: center
     }

     .prod-cta h2 {
         font-size: 44px;
         font-weight: 800;
         color: #0B3472;
         margin-bottom: 16px
     }

     .prod-cta p {
         font-size: 17px;
         color: #666;
         margin-bottom: 35px
     }

     .prod-cta .cta-btn {
         display: inline-block;
         padding: 16px 44px;
         background: #D89A1D;
         color: #111;
         font-weight: 700;
         font-size: 16px;
         border-radius: 10px;
         text-decoration: none;
         transition: .3s
     }

     .prod-cta .cta-btn:hover {
         background: #e09010;
         transform: translateY(-3px);
         box-shadow: 0 15px 40px rgba(245, 166, 35, .3)
     }

     @media(max-width:768px) {
         .prod-detail h2 {
             font-size: 34px
         }

         .prod-cta h2 {
             font-size: 32px
         }
     }
 }

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

 .magna-about-wrapper {
     font-family: var(--magna-font-family, 'Poppins', sans-serif);
 }

 /* ========================================
           CTA BANNER SECTION
        ======================================== */

 .cta-banner {
     position: relative;
     min-height: 280px;
     background: linear-gradient(176deg, rgba(10, 16, 40, 0.92) 0%, rgb(10 16 40 / 95%) 50%, rgb(10 16 40 / 73%) 100%), url(https://images.unsplash.com/photo-1513828583688-c52646db42da?auto=format&fit=crop&w=1600&q=80);
     background-size: cover;
     background-position: center;
     display: flex;
     align-items: center;
     overflow: hidden;
 }

 .cta-container {
     max-width: 1300px;
     margin: 0 auto;
     padding: 50px 40px;
     width: 100%;
     display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 60px;
     align-items: center;
     position: relative;
     z-index: 2;
 }

 /* Left Side - Text & Buttons */

 .cta-left h2 {
     font-size: 32px;
     font-weight: 700;
     color: #ffffff;
     margin-bottom: 12px;
     line-height: 1.2;
 }

 .cta-left p {
     font-size: 15px;
     color: #94a3b8;
     line-height: 1.6;
     margin-bottom: 28px;
     max-width: 400px;
 }

 .cta-buttons {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
 }

 .btn-blue {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     background: #0B3472;
     color: #ffffff;
     font-size: 14px;
     font-weight: 600;
     padding: 14px 28px;
     border-radius: 6px;
     text-decoration: none;
     border: none;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .btn-blue:hover {
     background: #1d4ed8;
     transform: translateY(-2px);
     box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
 }

 .btn-blue svg {
     width: 16px;
     height: 16px;
     stroke: #ffffff;
     fill: none;
     stroke-width: 2;
     stroke-linecap: round;
     stroke-linejoin: round;
 }

 .btn-outline {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     background: transparent;
     color: #ffffff;
     font-size: 14px;
     font-weight: 600;
     padding: 14px 28px;
     border-radius: 6px;
     text-decoration: none;
     border: 1px solid rgba(255, 255, 255, 0.25);
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .btn-outline:hover {
     background: rgba(255, 255, 255, 0.1);
     border-color: rgba(255, 255, 255, 0.5);
 }

 .btn-outline svg {
     width: 16px;
     height: 16px;
     stroke: #ffffff;
     fill: none;
     stroke-width: 2;
     stroke-linecap: round;
     stroke-linejoin: round;
 }

 /* Right Side - Stats */

 .cta-stats {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
 }

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

 .stat-icon {
     width: 48px;
     height: 48px;
     margin: 0 auto 12px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .stat-icon svg {
     width: 40px;
     height: 40px;
     stroke: #3b82f6;
     fill: none;
     stroke-width: 1.5;
     stroke-linecap: round;
     stroke-linejoin: round;
 }

 .stat-number {
     font-size: 26px;
     font-weight: 800;
     color: #ffffff;
     margin-bottom: 4px;
     line-height: 1;
 }

 .stat-label {
     font-size: 12px;
     font-weight: 500;
     color: #94a3b8;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     line-height: 1.4;
 }

 /* ========================================
           RESPONSIVE
        ======================================== */

 @media (max-width: 1024px) {
     .cta-container {
         grid-template-columns: 1fr;
         gap: 40px;
         text-align: center;
     }

     .cta-left p {
         max-width: 100%;
     }

     .cta-buttons {
         justify-content: center;
     }

     .cta-stats {
         grid-template-columns: repeat(2, 1fr);
         gap: 30px;
     }
 }

 @media (max-width: 768px) {
     .cta-banner {
         min-height: auto;
     }

     .cta-container {
         padding: 40px 24px;
     }

     .cta-left h2 {
         font-size: 24px;
     }

     .cta-left p {
         font-size: 14px;
     }

     .cta-buttons {
         flex-direction: column;
     }

     .btn-blue,
     .btn-outline {
         width: 100%;
         justify-content: center;
     }

     .stat-number {
         font-size: 22px;
     }
 }

 @media (max-width: 480px) {
     .cta-stats {
         grid-template-columns: repeat(2, 1fr);
         gap: 24px;
     }
 }

 /* ==========================================================================
   TECHNICAL SPECIFICATION SECTION STYLES
   ========================================================================== */

 .tech-spec-section {
     position: relative;
     background: #ffffff;
     overflow: hidden;
     padding: 100px 0;
     font-family: var(--magna-font-family, 'Poppins', sans-serif);
 }

 .tech-spec-section .container {
     max-width: 1280px;
     margin: auto;
     padding: 0 20px;
     position: relative;
     z-index: 2;
 }

 /* BACKGROUND SHAPES */

 .floating-shapes {
     position: absolute;
     inset: 0;
     overflow: hidden;
     pointer-events: none;
     z-index: 1;
 }

 .shape {
     position: absolute;
     border-radius: 50%;
     filter: blur(90px);
     opacity: .08;
     animation: float 16s ease-in-out infinite;
 }

 .shape-1 {
     width: 350px;
     height: 350px;
     background: #0B3472;
     top: -120px;
     left: -100px;
 }

 .shape-2 {
     width: 280px;
     height: 280px;
     background: #8b5cf6;
     bottom: -100px;
     right: -60px;
     animation-delay: -4s;
 }

 .shape-3 {
     width: 220px;
     height: 220px;
     background: #10b981;
     top: 40%;
     left: 50%;
     animation-delay: -8s;
 }

 @keyframes float {

     0%,
     100% {
         transform: translate(0, 0);
     }

     50% {
         transform: translate(30px, -25px);
     }
 }

 /* HEADER */

 .tech-header {
     text-align: center;
     margin-bottom: 70px;
 }

 .tech-tag {
     display: inline-block;
     padding: 10px 22px;
     border-radius: 50px;
     background: rgba(37, 99, 235, 0.08);
     border: 1px solid rgba(37, 99, 235, 0.15);
     color: #0B3472;
     font-size: 13px;
     font-weight: 700;
     letter-spacing: 1px;
     margin-bottom: 22px;
     text-transform: uppercase;
 }

 .tech-header h1 {
     font-size: 28px;
     line-height: 1.15;
     font-weight: 800;
     color: #0f172a;
     margin-bottom: 20px;
 }

 .tech-header p {
     max-width: 820px;
     margin: auto;
     font-size: 17px;
     line-height: 1.8;
     color: #475569;
 }

 /* GRID */

 .specs-grid {
     display: grid;
     grid-template-columns: repeat(6, 1fr);
     gap: 18px;
     margin-bottom: 60px;
 }

 /* CARD */

 .spec-card {
     position: relative;
     background: #ffffff;
     border: 1px solid #e2e8f0;
     border-radius: 20px;
     padding: 24px 18px;
     overflow: hidden;
     transition: .4s ease;
     box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
 }

 .spec-card::before {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, rgba(59, 130, 246, .04), rgba(139, 92, 246, .03), rgba(16, 185, 129, .03));
     opacity: 0;
     transition: .4s;
 }

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

 .spec-card:hover {
     transform: translateY(-10px);
     border-color: rgba(37, 99, 235, .2);
     box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
 }

 /* ICONS */

 .spec-icon {
     width: 58px;
     height: 58px;
     border-radius: 18px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 18px;
     position: relative;
     z-index: 2;
     font-size: 22px;
 }

 .spec-card:nth-child(1) .spec-icon {
     background: rgba(37, 99, 235, .1);
     color: #0B3472;
 }

 .spec-card:nth-child(2) .spec-icon {
     background: rgba(139, 92, 246, .1);
     color: #8b5cf6;
 }

 .spec-card:nth-child(3) .spec-icon {
     background: rgba(236, 72, 153, .1);
     color: #ec4899;
 }

 .spec-card:nth-child(4) .spec-icon {
     background: rgba(16, 185, 129, .1);
     color: #10b981;
 }

 .spec-card:nth-child(5) .spec-icon {
     background: rgba(245, 158, 11, .1);
     color: #f59e0b;
 }

 .spec-card:nth-child(6) .spec-icon {
     background: rgba(239, 68, 68, .1);
     color: #ef4444;
 }

 /* CARD CONTENT */

 .spec-title {
     font-size: 18px;
     color: #0f172a;
     font-weight: 700;
     margin-bottom: 14px;
     position: relative;
     z-index: 2;
 }

 .spec-desc {
     color: #64748b;
     line-height: 1.7;
     margin-bottom: 22px;
     font-size: 15px;
     position: relative;
     z-index: 2;
 }

 .spec-list {
     list-style: none;
     position: relative;
     z-index: 2;
 }

 .spec-list li {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     padding: 8px 0;
     border-bottom: 1px solid #f1f5f9;
     color: #334155;
     line-height: 1.6;
     font-size: 13px;
 }

 .spec-list li:last-child {
     border-bottom: none;
 }

 .spec-list li i {
     color: #0B3472;
     margin-top: 5px;
     font-size: 12px;
 }

 /* FEATURE BAR */

 .feature-bar {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 24px;
     margin-bottom: 80px;
 }

 .feature-box {
     background: #ffffff;
     border: 1px solid #e2e8f0;
     border-radius: 20px;
     padding: 28px 22px;
     text-align: center;
     transition: .4s;
     box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
 }

 .feature-box:hover {
     transform: translateY(-8px);
     box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
 }

 .feature-box i {
     font-size: 34px;
     color: #0B3472;
     margin-bottom: 18px;
 }

 .feature-box h4 {
     color: #0f172a;
     font-size: 18px;
     margin-bottom: 10px;
 }

 .feature-box p {
     color: #64748b;
     line-height: 1.7;
     font-size: 14px;
 }

 /* CTA SECTION */

 .cta-section {
     background: linear-gradient(135deg, #0B3472, #3b82f6);
     border-radius: 30px;
     padding: 60px;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .cta-section::before {
     content: "";
     position: absolute;
     width: 300px;
     height: 300px;
     background: rgba(255, 255, 255, .08);
     border-radius: 50%;
     top: -120px;
     right: -120px;
 }

 .cta-section h2 {
     color: #fff;
     font-size: 42px;
     font-weight: 800;
     margin-bottom: 18px;
     position: relative;
     z-index: 2;
 }

 .cta-section p {
     max-width: 760px;
     margin: auto;
     color: rgba(255, 255, 255, .85);
     line-height: 1.8;
     margin-bottom: 35px;
     position: relative;
     z-index: 2;
 }

 .cta-buttons {
     display: flex;
     justify-content: center;
     gap: 18px;
     flex-wrap: wrap;
     position: relative;
     z-index: 2;
 }

 .cta-btn {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     padding: 16px 34px;
     border-radius: 14px;
     font-size: 15px;
     font-weight: 700;
     text-decoration: none;
     transition: .35s;
 }

 .btn-primary {
     background: #ffffff;
     color: #0B3472;
 }

 .btn-primary:hover {
     transform: translateY(-4px);
 }

 .btn-secondary {
     background: rgba(255, 255, 255, .12);
     border: 1px solid rgba(255, 255, 255, .2);
     color: #fff;
 }

 .btn-secondary:hover {
     background: rgba(255, 255, 255, .18);
     transform: translateY(-4px);
 }

 .btn-success {
     background: #10b981;
     color: #fff;
 }

 .btn-success:hover {
     transform: translateY(-4px);
 }

 /* RESPONSIVE */

 @media(max-width:1200px) {
     .specs-grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 @media(max-width:992px) {
     .specs-grid {
         grid-template-columns: repeat(3, 1fr);
     }

     .feature-bar {
         grid-template-columns: repeat(2, 1fr);
     }

     .tech-header h1 {
         font-size: 40px;
     }
 }

 @media(max-width:768px) {
     .tech-spec-section {
         padding: 70px 0;
     }

     .specs-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .feature-bar {
         grid-template-columns: 1fr;
     }

     .tech-header h1 {
         font-size: 32px;
     }

     .tech-header p {
         font-size: 15px;
     }

     .cta-section {
         padding: 40px 25px;
     }

     .cta-section h2 {
         font-size: 28px;
     }

     .cta-buttons {
         flex-direction: column;
     }

     .cta-btn {
         width: 100%;
         justify-content: center;
     }
 }

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

/* Forced white color for banner title and description */
.magna-hero-banner .banner-title h1,
.magna-hero-banner .banner-title h1 span,
.magna-hero-banner .banner-description,
.electrical-banner .banner-title h1,
.electrical-banner .banner-title h1 span,
.electrical-banner .banner-description {
    color: #ffffff !important;
}
