/* Custom Solar Benefits Styling */
.benefit-card {
    transition: all 0.4s ease;
    border-radius: 15px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.icon-boxx {
  font-size: 20px;
  display: inline-block;
  color: #ffffff;
  height: 65px;
  width: 65px;
  line-height: 65px;
  text-align: center;
}

.icon-boxx i{
  color: #D01F26;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

/* Add a subtle colored accent on hover */
.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: #D01F26; /* Matching your theme color */
    transition: all 0.3s ease;
}

.benefit-card:hover::before {
    height: 100%;
}

.benefit-card h4 {
    color: #1e2a39;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Specific highlight for the Eco-Friendly card */
.benefit-card.highlight {
    background: linear-gradient(145deg, #ffffff, #f9fff9);
}


/* Utility to ensure icons look clean */
.w-50px {
    width: 50px;
    height: auto;
}

.opacity8 {
    opacity: 0.8;
}

/* --- Subsidy Section Styling --- */
.subsidy-section {
    background-color: #ffffff;
    position: relative;
}

.subsidy-table-card {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease;
}

.subsidy-table-card:hover {
    transform: scale(1.02);
}

/* Matching your theme primary color (#d72323) */
.subsidy-section .bg-primary {
    background-color: #d72323 !important;
}

.subsidy-section .text-primary {
    color: #d72323 !important;
}

/* Custom Table Design */
.subsidy-section .table thead th {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #1e2a39;
}

.subsidy-section .table tbody td {
    vertical-align: middle;
    font-size: 1rem;
    color: #444;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Highlighted Row for 3KW (The most popular choice) */
.highlight-row {
    background-color: rgba(215, 35, 35, 0.03);
}

.highlight-row td {
    border-left: 4px solid #d72323;
}

/* Check Icons */
.fa-check-circle {
    font-size: 1.1rem;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .subsidy-section .display-5 {
        font-size: 2.2rem;
    }
}

/* --- Product Card Styling --- */
.product-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.product-card:hover {
    border-color: #d72323;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

/* --- Icon Logic --- */
.product-icon {
    width: 60px;
    height: 60px;
    background: rgba(215, 35, 35, 0.1);
    color: #d72323;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 24px;
    transition: 0.3s;
}

.product-card:hover .product-icon {
    background: #d72323;
    color: #fff;
}

/* --- List Logic --- */
.product-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    text-align: left;
}

.product-list li {
    padding: 8px 0;
    font-size: 15px;
    color: #555;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
}

.product-list li:last-child {
    border-bottom: none;
}

.product-list li i {
    color: #d72323;
    margin-right: 8px;
    font-size: 12px;
}

/* Custom Badge */
.bg-primary-light {
    background-color: rgba(215, 35, 35, 0.1);
    font-size: 11px;
    padding: 4px 8px;
}

/* --- Contact Section Styles --- */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(215, 35, 35, 0.1);
    color: #d72323;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* --- Form Design --- */
.contact-form-card {
    border-radius: 15px;
}

.custom-input {
    border: 1px solid rgba(0,0,0,0.1);
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #d72323;
    box-shadow: 0 0 0 0.25rem rgba(215, 35, 35, 0.1);
    outline: none;
}

.border-radius-10 {
    border-radius: 15px !important;
}

/* Make form look slightly better on mobile */
@media (max-width: 767px) {
    .contact-form-card {
        padding: 30px 20px !important;
    }
}

/* --- Floating Buttons --- */
.floating-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn { background-color: #25D366; }
.call-btn { background-color: #d72323; } /* Matching your theme red */

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    color: #fff;
}

/* --- Lead Popup --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.popup-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: translateY(-20px);
    transition: all 0.4s ease;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
}

.close-popup:hover { color: #d72323; }

.about-solar-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #d72323;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-badge span {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.title-line {
    width: 60px;
    height: 4px;
    background: #d72323;
    margin: 15px auto;
}



.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #d72323;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(243, 156, 18, 0.1);
    color: #d72323;
    font-size: 30px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 25px;
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* Ensure FontAwesome is loaded for icons */


.solar-packages-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.package-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s ease;
    height: 100%;
    position: relative;
}

.package-card:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    transform: translateY(-10px);
}

.package-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #222;
}

.package-header p {
    color: #d72323;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.package-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    text-align: left;
}

.package-body ul li {
    margin-bottom: 15px;
    color: #555;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.package-body ul li i {
    color: #d72323;
    margin-right: 12px;
    width: 20px;
}

.btn-package {
    display: block;
    width: 100%;
    padding: 14px;
    background: #f8f8f8;
    color: #333;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-package:hover {
    background: #222;
    color: #fff;
}

/* Featured Card Styling */
.package-card.featured {
    border: 2px solid #d72323;
    background: #fff;
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #d72323;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.featured-btn {
    background: #d72323 !important;
    color: #fff !important;
}

/* Custom Solution Card */
.package-card.custom {
    background: #222;
    color: #fff;
}

.package-card.custom h3, .package-card.custom p, .package-card.custom ul li {
    color: #fff;
}

.custom-icon {
    font-size: 3rem;
    color: #d72323;
    margin-bottom: 15px;
}

.custom-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.btn-package.outline {
    background: transparent;
    border: 2px solid #d72323;
    color: #d72323;
}

.btn-package.outline:hover {
    background: #d72323;
    color: #fff;
}

.installation-process-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* The vertical line */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e1e1e1;
    z-index: 1;
}

.process-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    z-index: 2;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 100px;
    height: 100px;
    background: #fff;
    border: 2px solid #d72323;
    color: #d72323;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    z-index: 3;
}

.step-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-left: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    flex-grow: 1;
    position: relative;
}

/* Arrow for the content box */
.step-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #fff;
}

.step-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.step-content p {
    margin-bottom: 0;
    color: #666;
    line-height: 1.6;
}

.step-icon {
    margin-left: 30px;
    font-size: 2.5rem;
    color: #dee2e6;
    width: 80px;
    text-align: center;
}

/* Hover Effect */
.process-step:hover .step-number {
    background: #d72323;
    color: #fff;
}

.process-step:hover .step-icon {
    color: #d72323;
    transform: scale(1.1);
    transition: 0.3s;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .process-timeline::before { left: 30px; }
    .step-number { width: 60px; height: 60px; font-size: 1.1rem; }
    .step-content { padding: 20px; margin-left: 15px; }
    .step-icon { display: none; } /* Hide icons on small screens to save space */
}


.solar-inquiry-section {
    padding: 100px 0;
    background: #222; /* Dark background to contrast the white form card */
    position: relative;
    overflow: hidden;
}

/* Background decorative element */
.solar-inquiry-section::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: rgba(243, 156, 18, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.inquiry-content, .inquiry-card {
    position: relative;
    z-index: 2;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: #d72323;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.1rem;
}

.inquiry-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.inquiry-card h3 {
    color: #222;
    font-size: 1.75rem;
}

.form-label {
    font-weight: 600;
    color: #444;
    font-size: 0.9rem;
}

.form-control, .form-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.form-control:focus, .form-select:focus {
    border-color: #d72323;
    box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.15);
    background-color: #fff;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #d72323;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    cursor: pointer;
}

.btn-submit:hover {
    background: #d72323;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

.form-note {
    font-size: 0.8rem;
    color: #999;
}

@media (max-width: 991px) {
    .inquiry-card { padding: 30px; }
    .display-5 { font-size: 2.5rem; }
}



.asp-section {
    padding: 80px 0;
    background-color: #fff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Description Side */
.asp-main-label {
    color: #d72323;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.asp-accent-line {
    width: 50px;
    height: 3px;
    background: #d72323;
    display: block;
    margin-bottom: 20px;
}

/* Image Styling */
.asp-img-frame {
    position: relative;
    padding: 10px;
}

.asp-img-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 40%;
    border-top: 5px solid #d72323;
    border-left: 5px solid #d72323;
}

/* Feature Cards */
.asp-card {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.asp-card:hover {
    border-color: #d72323;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.asp-icon-wrap {
    width: 60px;
    height: 60px;
    background: #fff;
    color: #d72323;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: 0.3s;
}

.asp-card:hover .asp-icon-wrap {
    background: #d72323;
    color: #fff;
}


:root {
    /* USE YOUR COLOR CODE HERE */
    --spt-primary-color: #d72323; 
    --spt-bg-soft: #f8fbf9;
}

.spt-section {
    padding: 100px 0;
    background-color: var(--spt-bg-soft);
}

.spt-header-wrap {
    margin-bottom: 60px;
}

.spt-title-under {
    width: 80px;
    height: 4px;
    background: var(--spt-primary-color);
    margin: 15px auto;
}

/* Card Styling */
.spt-card {
    background: #fff;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.spt-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.spt-img-box {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.spt-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.spt-card:hover .spt-img-box img {
    transform: scale(1.1);
}

.spt-content {
    padding: 30px;
}

.spt-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(39, 174, 96, 0.1);
    color: var(--spt-primary-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.spt-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.spt-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.spt-list li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.spt-list li i {
    color: var(--spt-primary-color);
    margin-right: 10px;
    font-size: 0.8rem;
}

:root {
    /* REPLACE WITH YOUR COLOR CODE */
    --sbs-primary: #d72323; 
    --sbs-bg-light: #fdfdfd;
}

.sbs-section {
    padding: 80px 0;
    background-color: #fff;
}

/* Common Column Styling */
.sbs-column-card {
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

/* Specifications Column (Left) */
.sbs-spec-card {
    background-color: var(--sbs-bg-light);
}

.sbs-spec-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
}

.sbs-spec-item:last-child {
    border-bottom: none;
}

.sbs-spec-label {
    font-weight: 600;
    color: #555;
}

.sbs-spec-value {
    color: var(--sbs-primary);
    font-weight: 700;
}

/* Benefits Column (Right) */
.sbs-benefit-card {
    background-color: #fff;
}

.sbs-benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.sbs-benefit-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(39, 174, 96, 0.1);
    color: var(--sbs-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
}

.sbs-benefit-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.sbs-benefit-text p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0;
}

.sbs-section-title {
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.sbs-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--sbs-primary);
}


:root {
    /* REPLACE WITH YOUR COLOR CODE */
    --sis-primary: #d72323; 
    --sis-dark: #2c3e50;
}

.sis-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(240,248,243,1) 100%);
}

.sis-form-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.sis-header h2 {
    color: var(--sis-dark);
    font-weight: 800;
}

.sis-header p {
    color: #7f8c8d;
    margin-bottom: 30px;
}

/* Customizing Form Inputs */
.sis-form-group {
    margin-bottom: 20px;
}

.sis-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--sis-dark);
    display: block;
}

.sis-input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #eef2f1;
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
}

.sis-input:focus {
    border-color: var(--sis-primary);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.1);
}

/* Submit Button */
.sis-btn-submit {
    background-color: var(--sis-primary);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sis-btn-submit:hover {
    background-color: #d72323; /* Slightly darker version of primary */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px #d72323;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .sis-form-card {
        padding: 30px 20px;
    }
}


:root {
    /* REPLACE WITH YOUR COLOR CODE */
    --scp-primary: #d72323; 
}

.scp-single-section {
    padding: 100px 0;
    background-color: #fcfdfc;
}

.scp-cert-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

/* Document Preview Area */
.scp-preview-box {
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    position: relative;
}

.scp-pdf-embed {
    width: 100%;
    height: 600px;
    border: none;
}

/* Content Area */
.scp-content-box {
    padding: 60px;
}

.scp-status-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(39, 174, 96, 0.1);
    color: var(--scp-primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.scp-cert-title {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.scp-divider {
    width: 60px;
    height: 4px;
    background: var(--scp-primary);
    margin-bottom: 30px;
}

.scp-feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.scp-feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #555;
}

.scp-feature-list i {
    color: var(--scp-primary);
    margin-right: 12px;
}

.scp-btn-main {
    background: var(--scp-primary);
    color: #fff;
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
    border: none;
}

.scp-btn-main:hover {
    background: #219150;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.2);
}

@media (max-width: 991px) {
    .scp-content-box { padding: 30px; }
    .scp-pdf-embed { height: 400px; }
}

:root {
    --primary-red: #d72323;
    --dark-grey: #2d2d2d;
}

.industrial-slider-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.header-area {
    text-align: center;
    margin-bottom: 50px;
}

.badge-top {
    color: var(--primary-red);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.header-area h2 {
    font-weight: 900;
    font-size: 2.8rem;
    color: var(--dark-grey);
}

.highlight { color: var(--primary-red); }

.accent-bar {
    width: 80px;
    height: 5px;
    background: var(--primary-red);
    margin: 15px auto;
}

/* Power Card Design */
.power-card {
    background: #fff;
    padding: 50px 20px;
    margin: 15px 5px;
    text-align: center;
    border: 1px solid #eee;
    border-bottom: 4px solid #eee;
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
    overflow: hidden;
}

/* Hover Creative State */
.power-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-red);
    transition: all 0.4s ease;
    z-index: -1;
}

.power-card:hover::before {
    top: 0;
}

.power-card:hover {
    transform: translateY(-10px);
    border-bottom-color: #000;
}

.power-card h5 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--dark-grey);
    transition: 0.3s;
}

.kw-meter {
    font-family: 'Arial Black', sans-serif;
    color: var(--primary-red);
    transition: 0.3s;
}

.kw-meter .value {
    font-size: 2.2rem;
    line-height: 1;
}

.kw-meter .unit {
    font-size: 1rem;
    margin-left: 5px;
}

/* Color changes on hover */
.power-card:hover h5, 
.power-card:hover .kw-meter {
    color: #fff;
}

/* Owl Dots Settings */
.owl-theme .owl-dots .owl-dot span {
    background: #ccc;
    width: 10px;
    height: 10px;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary-red);
    width: 30px;
}