:root {
    /* ── Vibe Solar Design System Tokens (Color Art Tech) ── */

    /* Brand Colors */
    --color-primary: #024064;
    /* Deep Blue */
    --color-secondary: #ffb900;
    /* Secondary Yellow (SECONDARY COLOR) */

    /* Text Colors (Based on "Selection colors" plate) */
    --color-taxt-1: #212121;
    /* taxt 1 — headings / bold */
    --color-taxt-2: #424242;
    /* taxt 2 — body text */
    --color-taxt-3: #616161;
    /* taxt 3 — muted / subtle */
    --color-taxt-5: #bdbdbd;
    /* taxt 5 — placeholder / disabled */

    /* Brand Accents */
    --color-accent-danger: #ea2b52;
    /* ACCENT ONLY (Pinkish Red) */
    --color-accent-success: #00d90e;
    /* Success Green */

    /* Utility Colors */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-blue-tint: rgba(2, 64, 100, 0.1);
    --color-divider: var(--color-taxt-5);

    /* Bootstrap Overrides */
    --bs-primary: var(--color-primary);
    --bs-primary-rgb: 2, 64, 100;
    --bs-secondary: #1e293b;
    --accent-color: var(--color-secondary);
    --bs-body-color: var(--color-taxt-2);
    --bs-heading-color: var(--color-taxt-1);
    --badge-bg-green: #28a745;

    /* ── Responsive Architecture (Senior Architect Additions) ── */

    /* Fluid Typography Scaling */
    --fs-xs: clamp(0.75rem, 0.2vw + 0.7rem, 0.85rem);
    --fs-sm: clamp(0.875rem, 0.3vw + 0.8rem, 1rem);
    --fs-base: clamp(1rem, 0.5vw + 0.9rem, 1.125rem);
    --fs-md: clamp(1.125rem, 0.8vw + 1rem, 1.375rem);
    --fs-lg: clamp(1.25rem, 1.2vw + 1.1rem, 1.75rem);
    --fs-xl: clamp(1.5rem, 2vw + 1.2rem, 2.5rem);
    --fs-display: clamp(2.25rem, 5vw + 1.5rem, 4.5rem);

    /* 8px Spacing System */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-6: 48px;
    --space-8: 64px;

    /* Viewport Margins */
    --container-gutter: clamp(1rem, 5vw, 2.5rem);
}

/* Global Structural Overrides */
html {
    font-size: 16px;
    /* Base reference */
}

body {
    font-size: var(--fs-base);
    line-height: 1.6;
    overflow-x: hidden;
    /* Strict no horizontal scroll */
}

h1,
.display-1 {
    font-size: var(--fs-display);
}

h2,
.display-2 {
    font-size: var(--fs-xl);
}

h3,
.display-3 {
    font-size: var(--fs-lg);
}

h4,
.display-4 {
    font-size: var(--fs-md);
}

.container,
.container-fluid {
    padding-left: var(--container-gutter);
    padding-right: var(--container-gutter);
}

/* Fix Badge Overlap and Color */
.portfolio-item .badge {
    z-index: 10 !important;
    background: var(--badge-bg-green) !important;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Hero Section Fluidity */
.hero-title {
    font-size: clamp(1.75rem, 4vw + 1rem, 3rem) !important;
    /* Slightly smaller for compactness */
    line-height: 1.1;
    margin-bottom: var(--space-2);
}

.hero-subtitle {
    font-size: var(--fs-md);
    margin-bottom: var(--space-4);
    opacity: 0.9;
}

@media (max-width: 575px) {
    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Service Card Modernization */
.solar-services {
    background: #fdfdfe;
    /* Very subtle blue tint for depth */
}

.service-card {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(2, 64, 100, 0.1);
    border-color: transparent;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h5 {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-taxt-3);
    font-size: 0.95rem;
    line-height: 1.6;
}

.border-start {
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;

}

@media (max-width: 767px) {
    .border-start {
        border-left: none !important;
    }
}

/* Sector Tabs (Bootstrap Nav Pills) Styling to match Demo */
.sector-tabs .nav-pills .nav-link {
    background: #fff;
    color: #424242;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 600;
    margin: 0 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sector-tabs .nav-pills .nav-link:hover {
    background: #fdfdfd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sector-tabs .nav-pills .nav-link.active {
    background: #ffb900 !important;
    color: #fff !important;
    border-color: #ffb900 !important;
    box-shadow: 0 6px 15px rgba(255, 185, 0, 0.4);
}

.sector-tabs .nav-pills .nav-link i {
    font-size: 1.25rem;
}

.sector-content {
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: opacity 0.4s ease;
}

/* Feature Icon Styling */
.feature-icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: #fff9e6;
    /* Very light yellow */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.feature-icon-box i {
    color: #ffb900;
    font-size: 1.15rem;
}

/* Image Premium Border/Shadow */
.sector-image-wrapper {
    position: relative;
    padding: 10px;
}

.sector-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #0D5681;
    /* Brand Blue */
    border-radius: 12px;
    z-index: 0;
}

.sector-image-wrapper img {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-height: 539px;
    object-fit: cover;
}

.btn-calculate-savings {
    background-color: #0D5681 !important;
    color: #fff !important;
    border: none;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-calculate-savings:hover {
    background-color: #0a4669 !important;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(13, 86, 129, 0.3);
}


/* --- Services Hero Restored --- */
.services-hero-restored {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    font-weight: 300;
    font-size: 1.85rem;
}

.services-hero-restored::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.services-hero-content {
    position: relative;
    z-index: 2;
}

/* --- Stats Overlap --- */
.stats-overlap-container {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stat-card-v2 {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-bottom: 4px solid var(--bs-primary);
    height: 100%;
    transition: 0.3s;
}

.stat-card-v2:hover {
    transform: translateY(-5px);
}

/* --- Referral Card --- */
.referral-card {
    background: var(--bs-secondary);
    color: white;
    border-radius: 15px;
    padding: 40px;
    overflow: hidden;
    position: relative;
}

.referral-card.light {
    background: #f8f9fa;
    color: var(--bs-secondary);
    border: 1px solid #e9ecef;
}

/* --- FAQ Restored --- */
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.faq-accordion .accordion-button {
    padding: 20px 0;
    font-weight: 600;
    background: none;
    box-shadow: none;
    color: var(--bs-secondary);
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--bs-primary);
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: "\F282";
    /* plus circle */
    font-family: "bootstrap-icons";
    color: var(--bs-primary);
    font-size: 1.5rem;
    transition: 0.3s;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: "\F286";
    /* dash circle */
    transform: rotate(180deg);
}

/* --- Institutional Solar --- */
.institutional-section-v2 {
    background-color: var(--bs-secondary);
    color: white;
    padding: 100px 0;
}

.inst-card-v2 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: 0.3s;
}

.inst-card-v2:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.case-study-banner-v2 {
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.case-study-overlay-v2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* --- Installation Journey --- */
.journey-timeline-v2 {
    position: relative;
    padding: 50px 0;
}

.journey-connector-v2 {
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.journey-step-v2 {
    position: relative;
    z-index: 2;
    text-align: center;
}

.journey-icon-v2 {
    width: 60px;
    height: 60px;
    background: var(--bs-primary);
    color: var(--bs-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    font-size: 1.25rem;
    box-shadow: 0 0 0 8px white;
}

/* --- Enhanced CTA --- */
.services-cta-v2 {
    border-radius: 24px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.cta-float-img-v2 {
    position: absolute;
    width: 150px;
    opacity: 0.1;
    z-index: 0;
}

.cta-float-img-v2.left {
    left: -20px;
    top: 20px;
}

.cta-float-img-v2.right {
    right: -20px;
    bottom: 20px;
}

.btn-navy-v2 {
    background-color: var(--bs-secondary);
    color: white;
    border: none;
}

.btn-navy-v2:hover {
    background-color: #000;
    color: white;
}

/* --- FAQ Accordion Custom Toggle --- */
.faq-toggle-btn {
    position: relative;
    color: #1a1e21;
    font-size: 1rem;
}

/* Hide Bootstrap default arrow */
.faq-toggle-btn::after {
    display: none !important;
}

/* Yellow circle + icon on right */
.faq-toggle-btn::before {
    content: "\002B";
    /* + sign */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #ffb900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    line-height: 36px;
    text-align: center;
}

.faq-toggle-btn:not(.collapsed)::before {
    content: "\00D7";
    /* × sign when open */
}

.faq-toggle-btn:focus {
    box-shadow: none;
}

/* =============================================
   FOOTER - REFERENCE DESIGN
   ============================================= */

/* Main Footer Area */
.footer {
    background: #ffffff;
    padding: 60px 0 0;
    font-size: 0.9rem;
    border-top: 1px solid #e9ecef;
}

/* Footer Logo */
.footer-logo {
    max-height: 64px;
    width: auto;
    margin-bottom: 16px;
}

/* Footer "About" description text */
.footer-about p {
    color: #6b7280;
    margin-top: 12px;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.88rem;
}

/* Social Links */
.footer-social-links {
    display: flex;
    gap: 10px;
}

.footer-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

/* Brand colors */
.footer-social-links a[href*="facebook"] {
    background-color: #EE2F5A;
}

.footer-social-links a[href*="twitter"],
.footer-social-links a[href*="x.com"] {
    background-color: #000000;
}

.footer-social-links a[href*="whatsapp"] {
    background-color: #25D366;
}

.footer-social-links a[href*="instagram"] {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.footer-social-links a[href*="linkedin"] {
    background-color: #0077B5;
}

/* Fallback for # links */
.footer-social-links a:not([href*="facebook"]):not([href*="twitter"]):not([href*="x.com"]):not([href*="whatsapp"]):not([href*="instagram"]):not([href*="linkedin"]) {
    background-color: #6b7280;
}

.footer-social-links a:hover {
    transform: translateY(-4px);
    filter: brightness(1.15);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Footer Column Headings */
.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ffb900;
}

/* Footer Quick Links / Solar Services */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    padding: 6px 0;
}

.footer-links ul li i {
    color: #ffb900;
    font-size: 0.75rem;
    margin-right: 6px;
}

.footer-links ul li a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer-links ul li a:hover {
    color: #ffb900;
}

/* Footer Contact Items */
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffb900;
    font-size: 1rem;
    background: #fff;
}

.contact-info p {
    margin: 0;
    color: #6b7280;
    font-size: 0.87rem;
    line-height: 1.6;
}

/* Footer Bottom Bar */
.footer-bottom {
    background: #0d3b5e;
    padding: 16px 0;
    margin-top: 40px;
}

.footer-bottom .copyright {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 0.85rem;
}

.footer-policy-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-policy-links li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}

.footer-policy-links li a:hover {
    color: #ffb900;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: #e83e6c;
    color: #fff;
    border-radius: 50%;
    font-size: 1.3rem;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(232, 62, 108, 0.4);
    transition: background 0.2s ease, transform 0.2s ease;

}


.scroll-top.active {
    display: flex;
}

/* Hide scroll-to-top on mobile to prevent content overlap */
@media (max-width: 767px) {
    .scroll-top {
        display: none !important;
    }
}

.scroll-top:hover {
    background: #c82257;
    color: #fff;
    transform: translateY(-2px);
}

/* ── Utility: Missing Class Definitions ── */
.min-w-240 {
    min-width: 15rem;
}

.section-py {
    padding: 5rem 0;
}

/* --- Financing Hero V3 (Dark Mode) --- */
.financing-hero-v3 {
    padding: 100px 0 60px;
    overflow: hidden;
}

.financing-hero-v3 .hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.financing-hero-v3 .hero-subtitle {
    font-size: 1.1rem;

    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.financing-hero-v3 .btn-check-emi {
    background: #0d3b5e;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    transition: 0.3s;
}

.financing-hero-v3 .btn-advisor {
    background: #ffffff;
    color: #374151;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid #D1D5DB;
    transition: 0.3s;
}

.financing-img-container-v3 {
    position: relative;
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.financing-img-container-v3 img {
    border-radius: 12px;
    width: 100%;
}

.financing-hero-v3 .roi-badge-v3 {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 5;
}

.financing-hero-v3 .roi-badge-v3 .label {
    font-size: 0.6rem;
    font-weight: 700;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.financing-hero-v3 .roi-badge-v3 .value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #EE2F5A;
}

.financing-hero-v3 .roi-badge-v3 .sub {
    font-size: 0.6rem;
    color: #9CA3AF;
}

.financing-hero-v3 .approved-badge-v3 {
    position: absolute;
    top: 40px;
    left: 40px;
    background: #0d3b5e;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- EMI Calculator CTA Section --- */
.emi-cta-section {
    background: #0d4b6e;
    /* Deep blue background */
    border-radius: 12px;
    padding: 2.5rem 3rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.emi-cta-content {
    max-width: 600px;
}

.emi-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.emi-cta-text {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.5;
}

.emi-cta-btn {
    background: #ffffff;
    color: #0d4b6e;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.emi-cta-btn:hover {
    background: #f8f9fa;
    color: #0b3d5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.financing-bottom-bar-v3 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
}

.f-stat-item-v3 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.f-stat-item-v3 i {
    color: #ffb900;
    font-size: 1.25rem;
}

/* --- Trust Bar Section --- */
.trust-bar-v3 {
    background: #FFFBF5;
    /* Cream background */
    padding: 2.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.trust-item-v3 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.trust-icon-v3 {
    font-size: 2.5rem;
    color: #ffb900;
    line-height: 1;
}

.trust-icon-rupee-v3 {
    width: 44px;
    height: 44px;
    background: #ffb900;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 1.5rem;
    font-weight: 600;
}

/* --- Enterprise Financing Section (V5) --- */
.enterprise-section-v5 {
    padding: 80px 0;
    background: #ffffff;
}

.enterprise-hero-v5 {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 80px 60px;
    background-size: cover;
    background-position: center;
    border: 2px solid #0d5681;
    color: #ffffff;
    margin-bottom: 50px;
}

.enterprise-hero-v5::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.enterprise-hero-v5 .content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.enterprise-hero-v5 h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.enterprise-hero-v5 h2 span.highlight {
    color: #ffb900;
}

.enterprise-hero-v5 p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.enterprise-hero-v5 .btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.enterprise-hero-v5 .btn-v5 {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.enterprise-hero-v5 .btn-v5.primary {
    background: #0d5681;
    color: #ffffff;
    border: 1px solid #0d5681;
}

.enterprise-hero-v5 .btn-v5.primary:hover {
    background: #0a4568;
}

.enterprise-hero-v5 .btn-v5.secondary {
    background: #f3f4f6;
    color: #4B5563;
    border: 1px solid #f3f4f6;
}

.enterprise-hero-v5 .btn-v5.secondary:hover {
    background: #e5e7eb;
}

/* Impact Cards */
.impact-cards-v5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.impact-card-v5 {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: 0.3s;
    border: 1px solid #f3f4f6;
}

.impact-card-v5:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.impact-card-v5 .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.impact-card-v5 .card-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4B5563;
    margin-bottom: 0;
}

.impact-card-v5 .icon {
    font-size: 1.5rem;
}

.impact-card-v5 .value-row {
    margin-bottom: 15px;
}

.impact-card-v5 .value {
    font-size: 2.2rem;
    font-weight: 900;
    color: #0d3b5e;
}

.impact-card-v5 .sub-value {
    font-size: 0.95rem;
    font-weight: 700;
    margin-left: 10px;
}

.impact-card-v5 .desc {
    font-size: 0.85rem;
    color: #9CA3AF;
    font-weight: 600;
    margin-bottom: 0;
}

/* Specific Card Colors */
.impact-card-v5.roi .sub-value {
    color: #EE2F5A;
}

.impact-card-v5.roi .icon {
    color: #EE2F5A;
}

.impact-card-v5.payback .sub-value {
    color: #EE2F5A;
}

.impact-card-v5.payback .icon {
    color: #EE2F5A;
}

.impact-card-v5.savings .sub-value {
    color: #ffb900;
}

.impact-card-v5.savings .icon {
    color: #ffb900;
}

@media (max-width: 991px) {
    .impact-cards-v5 {
        grid-template-columns: 1fr;
    }

    .enterprise-hero-v5 {
        padding: 60px 30px;
    }

    .enterprise-hero-v5 h2 {
        font-size: 2rem;
    }
}

.trust-content-v3 h6 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1e21;
    margin-bottom: 0.25rem;
}

.trust-content-v3 p {
    font-size: 0.95rem;
    color: #6B7280;
    margin-bottom: 0;
    font-weight: 500;
}


/* --- EMI Calculator High-Fidelity (Dark Design) --- */
/* --- EMI Calculator High-Fidelity (Light Design Refined) --- */
.emi-calc-v4 {
    background: #ffffff;
    /* Switched to Light Theme */
    padding: 100px 0;
    color: #1a1e21;
    /* Dark text for light theme */
}

.emi-calc-v4 .section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1a1e21;
}

.emi-calc-v4 .section-desc {
    font-size: 1.1rem;
    color: #4B5563;
    /* Darker muted text */
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
}

.feat-grid-v4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feat-card-v4 {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    /* Subtle border for white cards on white bg */
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feat-card-v4:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feat-card-v4 .icon-box {
    width: 44px;
    height: 44px;
    background: #FFF9E5;
    color: #ffb900;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feat-card-v4 h6 {
    color: #0d3b5e;
    font-weight: 800;
    margin-bottom: 4px;
    font-size: 1rem;
}

.feat-card-v4 p {
    color: #6B7280;
    font-size: 0.8rem;
    margin-bottom: 0;
    line-height: 1.3;
}

.calc-btn-v4 {
    background: #0d3b5e;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.calc-btn-v4:hover {
    background: #0a2d48;
    color: #ffffff;
}

.calculator-card-v4 {
    background: #ffffff;
    color: #1a1e21;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    /* Lighter shadow for light theme */
    border: 1px solid #f0f0f0;
}

.calculator-card-v4 h3 {
    font-weight: 800;
    margin-bottom: 40px;
    font-size: 1.75rem;
    color: #000;
}

.calc-input-group {
    margin-bottom: 35px;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.calc-label-row label {
    font-weight: 700;
    color: #6B7280;
    font-size: 1.1rem;
}

.calc-label-row .val {
    font-weight: 800;
    color: #ffb900;
    font-size: 1.2rem;
}

/* Range Slider Styling */
.range-slider-v4 {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #E5E7EB;
    border-radius: 5px;
    outline: none;
}

.range-slider-v4::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #ffb900;
    cursor: pointer;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.calc-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #9CA3AF;
}

.emi-result-box-v4 {
    background: #FFFBF5;
    border: 1px solid #ffb900;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.emi-result-box-v4::before {
    content: "!";
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 18px;
    height: 18px;
    background: #ffb900;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emi-result-box-v4 .label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.emi-result-box-v4 .amount {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1e21;
    margin: 8px 0;
}

.emi-result-box-v4 .disclaimer {
    font-size: 0.65rem;
    color: #ffb900;
    font-weight: 700;
    padding-left: 20px;
}

.btn-get-quote-v4 {
    width: 100%;
    background: #0d3b5e;
    color: #ffffff;
    padding: 18px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    transition: 0.3s;
}

.btn-get-quote-v4:hover {
    background: #0a2d48;
}

.calc-footer-v4 {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.calc-footer-v4 .footer-card-v4 {
    width: 70px;
    height: 90px;
    background: #6D6E71;
    /* Darker gray for boxes */
    border-radius: 2px;
}

.avatar-group-v4 {
    display: flex;
    align-items: center;
    margin-top: 3rem;
}

.avatar-v4 {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    /* White border for light theme */
    background: #ffb900;
    margin-left: -12px;
    overflow: hidden;
}

.avatar-v4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-v4:first-child {
    margin-left: 0;
}

.avatar-v4.plus {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffb900;
    background: #f0f0f0;
}

.avatar-text-v4 {
    margin-left: 15px;
    font-size: 0.95rem;
    color: #4B5563;
    /* Darker text for readability */
    font-weight: 600;
}

/* --- Financial Models Section (V6) --- */
.financial-models-v6 {
    padding: 80px 0;
    color: #ffffff;
}

.model-card-v6 {
    background: #ffffff;
    border: none;
    border-radius: 24px;
    height: 100%;
    transition: transform 0.3s ease;
}

.model-card-v6:hover {
    transform: translateY(-10px);
}

.model-icon-box-v6 {
    width: 64px;
    height: 64px;
    background: #FFF9E5;
    color: #ffb900;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
}

.model-card-v6 .model-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffb900;
    text-transform: capitalize;
    margin-bottom: 16px;
    display: block;
}

.model-card-v6 h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1e21;
    margin-bottom: 8px;
}

.model-card-v6 .description {
    font-size: 0.89rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 30px;
}

.feature-list-v6 {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.feature-list-v6 li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #374151;
    font-weight: 600;
}

.feature-list-v6 li i {
    color: #ffffff;
    background: #ffb900;
    border-radius: 50%;
    font-size: 0.85rem;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.model-btn-capex {
    border: 1px solid #0d4b6e !important;
    color: #0d4b6e !important;
    background: transparent !important;
    font-weight: 700;
    padding: 14px;
    border-radius: 12px;
    width: 100%;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.model-btn-capex:hover {
    background: #0d4b6e;
    color: #ffffff;
}

.model-btn-opex {
    background: #0d4b6e;
    color: #ffffff;
    border: none;
    font-weight: 700;
    padding: 14px;
    border-radius: 12px;
    width: 100%;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.model-btn-opex:hover {
    background: #0b3d5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 75, 110, 0.3);
}

/* --- Tax Optimization Section (V6) --- */
.tax-optimization-v6 {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.tax-card-v6 {
    background: #ffffff;
    border: 1px solid #f1f3f5;
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    /* Red mesh grid pattern from mockup */
    background-image:
        linear-gradient(rgba(255, 107, 107, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 107, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
}

.tax-optimization-v6 h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a1e21;
    margin-bottom: 24px;
    line-height: 1.2;
}

.tax-optimization-v6 .lead-text {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 40px;
    max-width: 480px;
}

.tax-stats-grid-v6 {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.tax-stat-item-v6 h4 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1e21;
    margin-bottom: 2px;
}

.tax-stat-item-v6 p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
    font-weight: 600;
}

.download-link-v6 {
    font-weight: 800;
    color: #0d4b6e;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 1.05rem;
}

.download-link-v6:hover {
    gap: 12px;
    color: #0d4b6e;
    transform: translateX(5px);
}

/* --- Savings Chart --- */
.chart-container-v6 {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #f1f3f5;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.chart-header-v6 {
    font-size: 0.85rem;
    font-weight: 800;
    color: #1a1e21;
    margin-bottom: 40px;
}

.chart-bars-v6 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 140px;
    padding-bottom: 0;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
}

.chart-bar-v6 {
    width: 50px;
    background: #e5e7eb;
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: height 1s ease-out;
}

.chart-bar-v6.highlight {
    background: linear-gradient(to top, #FFB900, #FFD500);
}

.chart-labels-v6 {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.chart-label-v6 {
    font-size: 0.75rem;
    color: #9ca3af;
    width: 50px;
    text-align: center;
    font-weight: 600;
}

/* --- Financing Comparison Section (V7) --- */
.finance-comparison-v7 {
    padding: 100px 0;
    background: #ffffff;
}

.finance-comparison-v7 h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1e21;
    margin-bottom: 20px;
}

.finance-comparison-v7 .section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

/* Comparison Grid */
.comp-grid-v7 {
    margin-bottom: 80px;
    background: #fff;
    padding: 20px;
}

.comp-header-row-v7 {
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.comp-col-title-v7 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1e21;
    margin-bottom: 5px;
}

.comp-col-subtitle-v7 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comp-point-v7 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: #4b5563;
    font-size: 1.05rem;
}

.comp-point-v7 i {
    color: #9ca3af;
    font-size: 1.25rem;
}

.comp-value-v7 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1e21;
}

.comp-row-v7 {
    padding: 20px 0;
    border-bottom: 1px dashed #e5e7eb;
}

.comp-row-v7:last-of-type {
    border-bottom: none;
    margin-bottom: 40px;
}

/* Comparison Buttons */
.comp-btn-select-v7 {
    border: 1px solid #0d4b6e;
    color: #0d4b6e !important;
    background: transparent;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.comp-btn-select-v7:hover {
    background: #f8fafc;
    border-color: #0d4b6e;
}

.comp-btn-choose-v7 {
    background: #0d4b6e;
    color: #ffffff !important;
    border: none;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.comp-btn-choose-v7:hover {
    background: #0b3d5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 75, 110, 0.2);
}

/* Trust Cards V7 */
.trust-card-v7 {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: left;
}

.trust-card-v7:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
}

.trust-icon-box-v7 {
    width: 48px;
    height: 48px;
    background: #FFB900;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.trust-card-v7 h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1a1e21;
    margin-bottom: 15px;
}

.trust-card-v7 p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* --- Financing Timeline Section (V8) --- */
.finance-timeline-v8 {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.finance-timeline-v8 h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1e21;
    margin-bottom: 20px;
}

.finance-timeline-v8 .section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 750px;
    margin: 0 auto 80px auto;
}

.timeline-container-v8 {
    position: relative;
    padding: 20px 0;
}

/* The Horizontal Line */
.timeline-line-v8 {
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: #0d4b6e;
    z-index: 1;
}

.timeline-steps-row-v8 {
    position: relative;
    z-index: 2;
}

.timeline-step-v8 {
    text-align: center;
}

.timeline-icon-box-v8 {
    width: 60px;
    height: 60px;
    background: #FFB900;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 30px auto;
    box-shadow: 0 0 0 10px #ffffff;
    transition: all 0.3s ease;
}

.timeline-step-v8:hover .timeline-icon-box-v8 {
    transform: scale(1.1);
    background: #ffa500;
}

.timeline-step-header-v8 {
    font-size: 1rem;
    font-weight: 800;
    color: #0d4b6e;
    margin-bottom: 12px;
}

.timeline-step-desc-v8 {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}


/* --- FAQ Section (V9) --- */
.faq-section-v9 {
    padding: 100px 0;
    background: #ffffff;
}

.faq-section-v9 h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1e21;
    margin-bottom: 20px;
}

.faq-section-v9 .section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.faq-container-v9 {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-v9 {
    border-bottom: 1px solid #e5e7eb;
    padding: 24px 0;
}

.faq-question-v9 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1e21;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question-v9:hover {
    color: #0d4b6e;
}

.faq-toggle-icon-v9 {
    width: 32px;
    height: 32px;
    background: #FFB900;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: transform 0.3s, background 0.3s;
    flex-shrink: 0;
}

.faq-question-v9[aria-expanded="true"] .faq-toggle-icon-v9 {
    transform: rotate(45deg);
    background: #ffa500;
}

.faq-answer-v9 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

.faq-question-v9[aria-expanded="true"]+.faq-answer-v9 {
    max-height: 500px;
    /* Adjust as needed */
    padding-top: 16px;
}

/* Contact Advisor CTA Box */
.faq-cta-box-v9 {
    background: #e1e8f0;
    /* Light blue from mockup */
    border-radius: 12px;
    padding: 30px 40px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.faq-cta-content-v9 h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1e21;
    margin-bottom: 8px;
}

.faq-cta-content-v9 p {
    font-size: 1rem;
    color: #4b5563;
    margin: 0;
}

.btn-contact-advisor-v9 {
    background: #0d4b6e;
    color: #ffffff !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    white-space: nowrap;
}

.btn-contact-advisor-v9:hover {
    background: #0b3d5a;
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .faq-cta-box-v9 {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .btn-contact-advisor-v9 {
        width: 100%;
    }
}

/* --- Contact Hero Section (V2) --- */
.contact-hero-v2 {
    padding: 120px 0;
    background: #0d4b6e;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.contact-hero-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.contact-hero-v2 h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.contact-hero-v2 h1 span {
    color: #FFB900;
}

.contact-hero-v2 .hero-desc {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 850px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.contact-hero-ctas-v2 {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 5;
}

.btn-quote-v2 {
    background: #0d4b6e;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 36px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.btn-quote-v2:hover {
    background: #0b3d5a;
    transform: translateY(-5px);
    border-color: #FFB900;
}

.btn-call-v2 {
    background: #ffffff;
    color: #1a1e21 !important;
    padding: 16px 36px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-call-v2:hover {
    background: #f1f5f9;
    transform: translateY(-5px);
}

.btn-call-v2 i {
    font-size: 1.3rem;
    color: #1a1e21;
}



/* --- Contact Info Cards (V2) --- */
.contact-card-v2 {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.contact-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #ffb900;
}

.contact-icon-box-v2 {
    width: 64px;
    height: 64px;
    background: #ffb900;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 30px;
}

.contact-card-title-v2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1e21;
    margin-bottom: 15px;
}

.contact-card-text-v2 {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.contact-link-v2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d4b6e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link-v2:hover {
    color: #ffb900;
    text-decoration: underline;
}

/* --- Contact Map Section (V2) --- */
.contact-map-v2 {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    margin-top: 30px;
    background: #ffffff;
}

.contact-map-v2 iframe {
    display: block;
    border: 0;
    width: 100%;
    height: 450px;
    filter: grayscale(0.2) contrast(1.1);
}

/* --- Contact Trust Stats Bar (V2) --- */
.contact-stats-v2 {
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 1px solid #f3f4f6;
}

.stats-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stat-icon-v2 {
    font-size: 2.5rem;
    color: #ffb900;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-number-v2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0d4b6e;
    line-height: 1.2;
}

.stat-label-v2 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .stats-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 575px) {
    .stats-grid-v2 {
        grid-template-columns: 1fr;
    }
}

/* --- Why Choose Section (V2) --- */
.why-choose-section-v2 {
    padding: 80px 0;
    background: #ffffff;
}

.why-choose-header-v2 {
    max-width: 900px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.why-choose-header-v2 h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1e21;
    margin-bottom: 20px;
}

.why-choose-header-v2 p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.6;
}

.feature-card-v2 {
    background: #FFF8F0;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 185, 0, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.feature-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(255, 185, 0, 0.3);
}

.feature-card-title-v2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1e21;
    margin-bottom: 20px;
}

.feature-card-text-v2 {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Quick Contact & Inquiry Form (V2) --- */
.contact-section-v2 {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-main-wrapper-v2 {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    min-height: 600px;
}

.contact-info-side-v2 {
    flex: 0 0 40%;
    background-color: #0d5681;
    color: #ffffff;
    padding: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Subtle circles for Sidebar */
.contact-info-side-v2::before,
.contact-info-side-v2::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.contact-info-side-v2::before {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
}

.contact-info-side-v2::after {
    width: 200px;
    height: 200px;
    bottom: 50px;
    right: 50px;
    background: rgba(255, 255, 255, 0.03);
}

.contact-info-side-v2 h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-info-side-v2 p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

.info-details-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.info-detail-item-v2 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.info-detail-item-v2 i {
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 5px;
}

.info-detail-content-v2 {
    font-size: 1rem;
    line-height: 1.6;
}

.info-detail-content-v2 span {
    display: block;
}

.social-links-v2 {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    z-index: 2;
}

.social-icon-v2 {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.15rem;
    color: #ffffff;
}

.social-icon-v2.facebook {
    background-color: #EE2F5A;
}

.social-icon-v2.twitter-x {
    background-color: #EE2F5A;
}

.social-icon-v2.linkedin {
    background-color: #EE2F5A;
}

.social-icon-v2.whatsapp {
    background-color: #EE2F5A;
}

.social-icon-v2.instagram {
    background-color: #EE2F5A !important;
}

.social-icon-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    filter: brightness(1.15);
}

.contact-form-side-v2 {
    flex: 0 0 60%;
    padding: 60px;
    background: #ffffff;
}

.inquiry-form-v2 .form-group-v2 {
    margin-bottom: 30px;
}

.inquiry-form-v2 label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1e21;
    margin-bottom: 8px;
}

.form-control-v2 {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 0;
    font-size: 1rem;
    color: #1a1e21;
    background: transparent;
    transition: border-color 0.3s ease;
    border-radius: 0;
}

.form-control-v2:focus {
    outline: none;
    border-color: #0d5681;
}

.options-grid-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.option-item-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #4b5563;
}

.option-item-v2 input[type='radio'] {
    width: 18px;
    height: 18px;
    accent-color: #0d5681;
}

.btn-submit-inquiry-v2 {
    background: #0d5681;
    color: #ffffff;
    border: none;
    padding: 16px 45px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 86, 129, 0.3);
    margin-top: 20px;
    display: inline-block;
    float: right;
}

.btn-submit-inquiry-v2:hover {
    background: #0b3d5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 86, 129, 0.4);
}


/* --- Why Choose Section Refinement --- */
.why-choose-section-v2 {
    padding: 100px 0;
    background: #ffffff;
}

.why-choose-header-v2 h2 {
    font-size: 2.8rem;
    font-weight: 850;
    letter-spacing: -0.5px;
}

.feature-card-v2 {
    background: #fff9f2;
    padding: 50px 40px;
    border: 1px solid rgba(255, 185, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.feature-card-title-v2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.feature-card-text-v2 {
    font-size: 1.05rem;
    opacity: 0.85;
}

/* --- Contact Info Grid (Mockup 3) --- */
.contact-info-grid-v2 {
    padding: 80px 0 40px;
    background: #ffffff;
}

.contact-card-v2 {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.contact-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 185, 0, 0.2);
}

.contact-icon-box-v2 {
    width: 60px;
    height: 60px;
    background: #ffb900;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 1.8rem;
}

.contact-card-title-v2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1e21;
    margin-bottom: 12px;
}

.contact-card-text-v2 {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-link-v2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0d5681;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link-v2:hover {
    color: #ffb900;
    text-decoration: underline;
}




@media (max-width: 991px) {
    .contact-main-wrapper-v2 {
        flex-direction: column;
    }

    .contact-info-side-v2,
    .contact-form-side-v2 {
        flex: 0 0 100%;
        padding: 40px;
    }
}

@media (max-width: 767.98px) {
    .contact-hero-v2 {
        padding: 80px 0;
    }

    .contact-hero-v2 h1 {
        font-size: 2rem;
    }

    .contact-hero-v2 .hero-desc {
        font-size: 1.1rem;
    }

    .contact-hero-ctas-v2 {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-quote-v2,
    .btn-call-v2 {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .emi-cta-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .emi-cta-content {
        max-width: 100%;
    }
}

/* Mobile Stacking Adjustments */
@media (max-width: 767.98px) {
    .timeline-line-v8 {
        display: none;
    }

    .timeline-step-v8 {
        margin-bottom: 50px;
    }

    .timeline-icon-box-v8 {
        box-shadow: none;
    }
}

@media (max-width: 767px) {
    .trust-item-v3 {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
}

/* --- Enterprise Solution Page Styles --- */
.page-solution {
    color: var(--color-text-main);
    background-color: var(--color-white);
}

/* Hero Section */
.hero-project {
    padding: 140px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/solution/hero-bg.png") center/cover no-repeat;
    color: var(--color-white);
}

.hero-project__header {
    max-width: 800px;
}

.hero-project__meta {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
}

.hero-project__category {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-project__location {
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-project__location i {
    color: var(--color-primary);
}

.hero-project__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-project__lead {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Re-defining BEM blocks used in the HTML */
.sol-hero {
    position: relative;
    padding: clamp(100px, 15vh, 180px) 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.sol-hero__badge {
    background: var(--color-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.sol-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin: 20px 0;
}

.sol-hero__description {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 650px;
}

.sol-hero__btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.sol-hero__btn:hover {
    background: #e67e22;
    color: #fff;
}

/* Challenge vs Solution */
.cs-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-top: 5px solid transparent;
}

.cs-card--danger {
    border-top-color: #dc3545;
}

.cs-card--success {
    border-top-color: #28a745;
}

.cs-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.cs-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.cs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
}

.cs-list li::before {
    content: "\F272";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cs-list--danger li::before {
    color: #dc3545;
    content: "\F33A";
}

.cs-list--success li::before {
    color: #28a745;
    content: "\F26E";
}

/* Performance Dash */
.performance {
    padding: 80px 0;
    background: #fff;
}

.performance__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.performance__subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 50px;
}

.performance__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.metric {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.metric__value {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 5px;
}

.metric__label {
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.savings-chart {
    text-align: center;
}

.savings-chart__bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    justify-content: center;
    height: 150px;
    margin-bottom: 15px;
}

.savings-chart__bar {
    width: 40px;
    background: #eee;
    border-radius: 4px 4px 0 0;
}

.savings-chart__bar--highlight {
    background: #f39c12;
}

.savings-chart__bar--primary {
    background: var(--color-primary);
}

.savings-chart__bar[data-level="1"] {
    height: 20%;
}

.savings-chart__bar[data-level="2"] {
    height: 40%;
}

.savings-chart__bar[data-level="3"] {
    height: 60%;
}

.savings-chart__bar[data-level="4"] {
    height: 85%;
}

.savings-chart__bar[data-level="5"] {
    height: 100%;
}

/* Gallery */
.sol-gallery__grid {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.sol-gallery__col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sol-gallery__col--active {
    flex: 1.5;
}

.sol-gallery__item {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sol-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sol-gallery__item--sq {
    aspect-ratio: 1/1;
}

.sol-gallery__item--sm {
    height: 180px;
}

.sol-gallery__item--tall {
    height: 380px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .sol-gallery__grid {
        flex-wrap: wrap;
    }

    .sol-gallery__col {
        flex: 1 1 30%;
    }
}

@media (max-width: 767px) {
    .sol-gallery__col {
        flex: 1 1 100%;
    }

    .sol-gallery__item--sm {
        height: 250px;
    }
}


/* --- Enterprise Solution Page Styles --- */
.page-solution {
    color: var(--color-text-main);
    background-color: var(--color-white);
}

/* Hero Section */
.hero-project {
    padding: 140px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/solution/hero-bg.png") center/cover no-repeat;
    color: var(--color-white);
}

.hero-project__header {
    max-width: 800px;
}

.hero-project__meta {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
}

.hero-project__category {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-project__location {
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-project__location i {
    color: var(--color-primary);
}

/* Re-defining BEM blocks used in the HTML */
.sol-hero {
    position: relative;
    padding: clamp(100px, 15vh, 180px) 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/solution/solution-bg.png") center/cover no-repeat;
    color: #fff;
}

.sol-hero__badge {
    background: var(--color-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.sol-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin: 20px 0;
}

.sol-hero__description {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 650px;
}

.sol-hero__btn {
    display: inline-block;
    padding: 15px 35px;
    background: #f39c12;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.sol-hero__btn:hover {
    background: #e67e22;
    color: #fff;
}

/* Challenge vs Solution */
.cs-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-top: 5px solid transparent;
}

.cs-card--danger {
    border-top-color: #dc3545;
}

.cs-card--success {
    border-top-color: #28a745;
}

.cs-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.cs-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.cs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
}

.cs-list li::before {
    content: "\F26E";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cs-list--danger li::before {
    color: #dc3545;
    content: "\F33A";
}

.cs-list--success li::before {
    color: #28a745;
    content: "\F26E";
}

/* Performance Dash */
.performance {
    padding: 80px 0;
    background: #fff;
}

.performance__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.performance__subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 50px;
}

.performance__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.metric {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.metric__value {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 5px;
}

.metric__label {
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.savings-chart__bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    justify-content: center;
    height: 150px;
    margin-bottom: 15px;
}

.savings-chart__bar {
    width: 40px;
    background: #eaeff5;
    border-radius: 4px 4px 0 0;
}

.savings-chart__bar--highlight {
    background: #f39c12;
}

.savings-chart__bar--primary {
    background: #1c4e7a;
}

.savings-chart__bar[data-level="1"] {
    height: 20%;
}

.savings-chart__bar[data-level="2"] {
    height: 40%;
}

.savings-chart__bar[data-level="3"] {
    height: 60%;
}

.savings-chart__bar[data-level="4"] {
    height: 85%;
}

.savings-chart__bar[data-level="5"] {
    height: 100%;
}

/* Gallery */
.sol-gallery__grid {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.sol-gallery__col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sol-gallery__col--active {
    flex: 1.5;
}

.sol-gallery__item {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sol-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sol-gallery__item--sq {
    aspect-ratio: 1/1;
}

.sol-gallery__item--sm {
    height: 180px;
}

.sol-gallery__item--tall {
    height: 380px;
}

@media (max-width: 991px) {
    .sol-gallery__grid {
        flex-wrap: wrap;
    }

    .sol-gallery__col {
        flex: 1 1 30%;
    }
}

@media (max-width: 767px) {
    .sol-gallery__col {
        flex: 1 1 100%;
    }

    .sol-gallery__item--sm {
        height: 250px;
    }
}

/* ==========================================================================
   INDUSTRY-GRADE SOLUTION PAGE COMPONENTS (BEM)
   ========================================================================== */

/* 1. Project Hero
   ========================================================================== */
.project-hero {
    position: relative;
    padding: clamp(120px, 18vh, 220px) 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/solution/about-us-hero.png") center/cover no-repeat;
    color: var(--color-white);
    overflow: hidden;
}

.project-hero--dark {
    background-color: #0b1a2a;
}

.project-hero__container {
    position: relative;
    z-index: 2;
}

.project-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.project-hero__title {
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    font-weight: 850;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.project-hero__description {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 700px;
    opacity: 0.9;
    margin-bottom: 45px;
}

.project-hero__actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}


/* 3. Analysis Cards (Challenge/Solution)
   ========================================================================== */
.analysis-board {
    padding: 100px 0;
    background: #f1f5f9;
}

.analysis-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.analysis-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.analysis-card__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.analysis-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.analysis-card--danger .analysis-card__icon {
    background: #fee2e2;
    color: #ef4444;
}

.analysis-card--success .analysis-card__icon {
    background: #dcfce7;
    color: #22c55e;
}

.analysis-card__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.analysis-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.analysis-card__list-item {
    position: relative;
    padding-left: 36px;
    margin-bottom: 22px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #334155;
}

.analysis-card__list-item::before {
    content: "";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.25rem;
    font-weight: 900;
}

.analysis-card--danger .analysis-card__list-item::before {
    content: "\F33A";
    color: #ef4444;
}

.analysis-card--success .analysis-card__list-item::before {
    content: "\F26E";
    color: #22c55e;
}


/* 4. Performance Metrics
   ========================================================================== */
/* 4. Performance Metrics
   ========================================================================== */
.performance {
    padding: 100px 0;
    background: #fff;
}

.performance__title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.performance__subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 50px;
    text-align: center;
}

.performance__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.metric {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #efefef;
    transition: 0.3s ease;
}

.metric:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.metric__value {
    display: block;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 850;
    color: #1f4e79;
    margin-bottom: 8px;
}

.metric__label {
    font-size: 0.78rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    line-height: 1.3;
}

.performance__chart {
    border-radius: 30px;
    padding: 50px;
    text-align: center;
}

.savings-chart {
    text-align: center;
}

.savings-chart__bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    height: 180px;
    margin-bottom: 30px;
}

.savings-chart__bar {
    width: 50px;
    background: #ddd;
    border-radius: 8px 8px 0 0;
    transition: height 1s ease;
}

.savings-chart__bar--highlight {
    background: #ffb900;
}

.savings-chart__bar--primary {
    background: #1f4e79;
}

.savings-chart__caption {
    font-size: 1.1rem;

    font-weight: 600;
}


/* 6. Comparison Engine
   ========================================================================== */
.comparison-engine {
    padding: 100px 0;
    background: #f8fafc;
}

.comparison-engine__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.comparison-box {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    min-width: 320px;
    border: 2px solid transparent;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.comparison-box--active {
    border-color: #22c55e;
    box-shadow: 0 25px 60px rgba(34, 197, 94, 0.12);
}

.comparison-box__label {
    font-size: 1rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.comparison-box__value {
    font-size: 4rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 10px;
    display: block;
}

.comparison-box__sub {
    font-size: 1.15rem;
    color: #94a3b8;
}

.comparison-engine__divider {
    font-size: 2.5rem;
    color: #cbd5e0;
}

.comparison-engine__result {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    text-align: center;
    margin-top: 50px;
}


/* 7. Installation Gallery
   ========================================================================== */
.project-gallery {
    padding: 100px 0;
}

.project-gallery__title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 850;
    margin-bottom: 60px;
}

.project-gallery__masonry {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.gallery-tile {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-tile--tall {
    grid-row: span 2;
}

.gallery-tile__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-tile:hover .gallery-tile__img {
    transform: scale(1.1);
}


/* 8. Conversion Section
   ========================================================================== */
.cta-banner {
    padding: 120px 0;
    background: #1e293b;
    color: #fff;
    text-align: center;
}

.cta-banner__title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
}

.cta-banner__lead {
    font-size: 1.35rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto 50px;
}

.cta-banner__actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
}

.cta-banner__trust {
    display: flex;
    justify-content: center;
    gap: 48px;
    opacity: 0.7;
    font-weight: 600;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item i {
    color: #fbbf24;
    font-size: 1.25rem;
}


/* Industry UI Global Components */
.btn-premium {
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-premium--primary {
    background: #f59e0b;
    color: #fff;
}

.btn-premium--light {
    background: #fff;
    color: #0f172a;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.3);
}


/* Responsive Tweaks */
@media (max-width: 1024px) {
    .project-gallery__masonry {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   INDUSTRIAL HERO — CASE STUDY
   ========================================================================== */
.industrial-hero {
    position: relative;
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
}

.industrial-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(2, 64, 100, 0.85), rgba(2, 64, 100, 0.6));
    z-index: 1;
}

.industrial-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.industrial-hero__title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.industrial-hero__subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 60px;
    max-width: 700px;
    margin-inline: auto;
}

/* KPI CIRCLES */
.industrial-hero__metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-items: center;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .industrial-hero__metrics {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        margin-bottom: 60px;
    }
}

.metric-circle {
    width: clamp(130px, 40vw, 180px);
    height: clamp(130px, 40vw, 180px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-circle:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-secondary);
}

.metric-circle__value {
    font-size: clamp(1.3rem, 4.5vw, 2.2rem);
    font-weight: 900;
    color: var(--color-secondary);
    line-height: 1;
}

.metric-circle__label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    opacity: 0.8;
}

.industrial-hero__cta {
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 100px;
    background-color: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
    color: var(--color-primary) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.industrial-hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 185, 0, 0.4);
}

/* ==========================================================================
   TECHNICAL ANALYSIS — CASE STUDY
   ========================================================================== */


.analysis-card--glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid #e2e8f0;
    border-radius: 32px;
    transition: 0.4s ease;
}

.analysis-card--glass:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border-color: var(--color-primary);
}

.title-tech {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary);
}

.subtitle-tech {
    font-size: 1.25rem;
    color: var(--color-text-3);
}

/* ==========================================================================
   INDUSTRIAL OVERVIEW — CASE STUDY
   ========================================================================== */
.industrial-overview {
    padding: 100px 0;
    background-color: var(--color-white);
    color: var(--color-taxt-2);
}

.industrial-overview__layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.industrial-overview__content {
    flex: 1;
}

.industrial-overview__title {
    font-size: 2.8rem;
    font-weight: 850;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
    color: var(--color-taxt-1);
}

.industrial-overview__text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-taxt-2);
    margin-bottom: 20px;
}

.industrial-overview__text:last-child {
    margin-bottom: 0;
}

/* INFORMATION CARD */
.industrial-overview__card {
    flex: 1;
    background: var(--color-white);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    /* More subtle for light theme */
    color: var(--color-taxt-1);
    max-width: 550px;
    border: 1px solid var(--color-taxt-5);
}

.industrial-overview__card-header {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1.5px solid var(--color-taxt-1);
    /* High contrast header line */
}

.industrial-overview__card-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-taxt-1);
    margin: 0;
}

.industrial-overview__info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.industrial-overview__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-taxt-5);
}

.industrial-overview__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.industrial-overview__label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-taxt-3);
}

.industrial-overview__value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-taxt-1);
    text-align: right;
}

.industrial-overview__value--highlight {
    color: var(--color-secondary);
}

@media (max-width: 1024px) {
    .industrial-overview__layout {
        flex-direction: column;
        gap: 60px;
    }

    .industrial-overview__content {
        text-align: center;
    }

    .industrial-overview__card {
        max-width: 100%;
        width: 100%;
    }
}

/* ==========================================================================
   INDUSTRIAL METRICS — CASE STUDY
   ========================================================================== */
.industrial-metrics {
    padding: 70px 0;

    /* Very light cool gray */
}

.industrial-metrics__title {
    font-size: 2.5rem;
    font-weight: 850;
    color: var(--color-taxt-1);
    margin-bottom: 50px;
    letter-spacing: -0.01em;
}

.industrial-metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.metric-card {
    background: var(--color-white);
    padding: 40px 20px;
    border-radius: 4px;
    /* Industrial sharp edges as per screenshot */
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.metric-card__value {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-primary);
    /* Industrial Deep Blue */
    line-height: 1.2;
    margin-bottom: 12px;
}

.metric-card__label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-taxt-3);
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .industrial-metrics__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .industrial-metrics__grid {
        grid-template-columns: 1fr;
    }

    .metric-card__value {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   ENVIRONMENTAL IMPACT — CASE STUDY
   ========================================================================== */
.environmental-impact {
    padding: 50px 0;
    background-color: var(--color-primary);
    /* Deep Blue */
    color: var(--color-white);
}

.environmental-impact__icon-circle {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    font-size: 2.5rem;
}

.environmental-impact__title {
    font-size: 3rem;
    font-weight: 850;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.environmental-impact__subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .environmental-impact__title {
        font-size: 2.2rem;
    }

    .environmental-impact__icon-circle {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* ==========================================================================
   INDUSTRIAL PROJECTION — CASE STUDY
   ========================================================================== */
.industrial-projection {
    background-color: var(--color-white);
    padding-bottom: 120px;
}

.industrial-projection__title {
    font-size: 2.8rem;
    font-weight: 850;
    color: var(--color-taxt-1);
    margin-bottom: 60px;
}

.projection-chart {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-rows: 400px 40px;
    gap: 10px;
    position: relative;
}

/* Y-Axis */
.projection-chart__y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
    padding-right: 15px;
    font-size: 0.9rem;
    color: var(--color-taxt-3);
    font-weight: 600;
}

/* Base Plot Area */
.projection-chart__plot {
    position: relative;
    border-left: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.projection-chart__grid {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}

.grid-line {
    width: 100%;
    height: 1px;
    background-color: #f1f5f9;
}

/* Bar Container */
.projection-chart__bars {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 20px;
    z-index: 2;
}

.chart-bar {
    width: 6%;
    height: var(--height);
    background-color: var(--color-primary);
    border-radius: 4px 4px 0 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.chart-bar:hover {
    background-color: var(--color-secondary);
    transform: scaleX(1.1);
}

.chart-bar::after {
    content: attr(data-month);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-taxt-2);
}

/* X-Axis labels are managed by ::after for better alignment, 
   but we can keep the separate div for screen readers/legacy */
.projection-chart__x-axis {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    opacity: 0;
    /* Hidden but present */
}

@media (max-width: 768px) {
    .projection-chart {
        grid-template-rows: 300px 40px;
        min-width: 600px;
        /* Allow it to be wide and scrollable */
    }

    /* Target the container wrapping .projection-chart to make it scrollable */
    .chart-responsive-wrapper {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 20px;
        /* Leave space for scrollbar */
        -webkit-overflow-scrolling: touch;
        /* Smooth scrolling on iOS */
    }

    .chart-bar {
        width: 6%;
        /* Revert back to allow spacing */
    }

    .industrial-projection__title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   CHALLENGE VS SOLUTION — CASE STUDY
   ========================================================================== */


.challenge-solution__layout {
    display: flex;
    gap: 30px;
}

.feature-card {
    flex: 1;
    background: var(--color-white);
    border: 1px solid var(--color-taxt-5);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-card__header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
}

.feature-card--danger .feature-card__icon {
    background-color: var(--color-accent-danger);
    box-shadow: 0 8px 16px rgba(234, 43, 82, 0.2);
}

.feature-card--success .feature-card__icon {
    background-color: var(--color-accent-success);
    box-shadow: 0 8px 16px rgba(0, 217, 14, 0.2);
}

.feature-card__title {
    font-size: 1.75rem;
    font-weight: 850;
    color: var(--color-taxt-1);
    margin: 0;
}

.feature-card__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card__list li {
    position: relative;
    padding-left: 35px;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--color-taxt-2);
    font-weight: 500;
}

.feature-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 18px;
    height: 18px;
    border-radius: 4px;
}

.feature-card--danger .feature-card__list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--color-accent-danger);
    border-radius: 50%;
    left: 6px;
    top: 12px;
}

.feature-card--success .feature-card__list li::before {
    content: "L";
    font-family: "bootstrap-icons";
    font-size: 0.8rem;
    color: var(--color-accent-success);
    transform: scaleX(-1) rotate(-35deg);
    display: block;
    font-weight: 900;
    top: 7px;
    left: 4px;
}

@media (max-width: 992px) {
    .challenge-solution__layout {
        flex-direction: column;
    }
}

/* =============================================
   QUOTE PAGE — Premium Redesign
   ============================================= */

/* Outer Card */
.quote-card {
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e8edf2;
}

/* ── Left Info Panel ── */
.quote-info-panel {
    position: relative;
    background: linear-gradient(145deg, #024064 0%, #013050 60%, #011d30 100%);
    padding: 50px 40px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

/* Decorative floating circles */
.qip-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 185, 0, 0.08);
    pointer-events: none;
}

.qip-circle--1 {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -80px;
}

.qip-circle--2 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -60px;
    background: rgba(255, 255, 255, 0.04);
}

.qip-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Badge */
.qip-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 185, 0, 0.15);
    color: #ffb900;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 185, 0, 0.3);
}

/* Heading */
.qip-heading {
    color: #ffffff;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.3;
    margin-top: 18px;
    margin-bottom: 14px;
}

/* Subtext */
.qip-subtext {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Divider */
.qip-divider {
    width: 40px;
    height: 3px;
    background: #ffb900;
    border-radius: 2px;
    margin: 24px 0;
}

/* Contact List */
.qip-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.qip-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.qip-icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(255, 185, 0, 0.15);
    border: 1px solid rgba(255, 185, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffb900;
    font-size: 1.1rem;
    transition: 0.3s;
}

.qip-contact-item:hover .qip-icon-wrap {
    background: #ffb900;
    color: #000;
}

.qip-label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}

.qip-value {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Trust Row */
.qip-trust-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.qip-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 6px 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-weight: 500;
}

.qip-trust-item i {
    color: #ffb900;
    font-size: 0.85rem;
}

/* ── Right Form Panel ── */
.quote-form-panel {
    padding: 50px 45px;
    background: #ffffff;
}

.quote-form__header {
    margin-bottom: 28px;
}

.quote-form__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #024064;
    margin-bottom: 6px;
}

.quote-form__subtitle {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

/* Labels */
.quote-form__label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 7px;
}

/* Input wrapper for icon prefix */
.quote-form__input-wrap {
    position: relative;
}

.quote-form__input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.95rem;
    pointer-events: none;
    z-index: 3;
}

/* Inputs */
.quote-form__input {
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 11px 14px 11px 44px !important;
    /* Fixed: 44px to clear icon */
    font-size: 0.9rem;
    color: #111827;
    background: #f9fafb;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    width: 100%;
}

.quote-form__input:focus {
    border-color: #024064;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(2, 64, 100, 0.08);
    outline: none;
}

/* Select arrow fix */
.quote-form__select {
    appearance: none;
    -webkit-appearance: none;
}

/* Textarea — no icon padding needed */
.quote-form__textarea {
    padding: 12px 14px !important;
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.quote-form__submit-btn {
    background: linear-gradient(135deg, #024064 0%, #013050 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 0;
    border-radius: 10px;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    width: 100%;
}

.quote-form__submit-btn:hover {
    background: linear-gradient(135deg, #ffb900 0%, #e6a700 100%);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 185, 0, 0.35);
}

/* Small secure note */
.quote-form__note {
    color: #9ca3af;
    font-size: 0.78rem;
    margin-bottom: 0;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .quote-info-panel {
        padding: 40px 30px;
        border-radius: 0;
    }

    .quote-form-panel {
        padding: 40px 30px;
    }

    .qip-heading {
        font-size: 1.4rem;
    }
}

@media (max-width: 575.98px) {

    .quote-info-panel,
    .quote-form-panel {
        padding: 30px 20px;
    }

    .qip-trust-row {
        flex-direction: column;
    }
}


/* =============================================
   WHY CHOOSE SECTION — Typography & Card Fix
   ============================================= */

.why-choose-section {
    padding: 80px 0;
}

/* Section Header */
.section-header-block {
    max-width: 600px;
    margin: 0 auto 40px;
}

.wcs-heading {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.25;
    color: #111827;
    margin-bottom: 12px;
}

.wcs-subtext {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* Feature Card */
.wcs-card {
    background: #ffffff;
    border: 1.5px solid #e8edf2;
    border-radius: 16px;
    padding: 32px 24px !important;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 16px rgba(2, 64, 100, 0.07);
}

.wcs-card:hover {
    border-color: #024064;
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(2, 64, 100, 0.1);
}

/* Icon Wrap */
.wcs-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(2, 64, 100, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.3s;
}

.wcs-card:hover .wcs-icon-wrap {
    background: #024064;
}

.wcs-icon {
    font-size: 1.75rem;
    color: #024064;
    line-height: 1;
    transition: color 0.3s;
}

.wcs-card:hover .wcs-icon {
    color: #ffb900;
}

/* Card Title */
.wcs-card-title {
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.35;
    color: #024064;
    margin-bottom: 10px;
}

/* Card Description */
.wcs-card-desc {
    font-size: 0.93rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 767.98px) {
    .wcs-heading {
        font-size: 1.65rem;
    }

    .why-choose-section {
        padding: 60px 0;
    }
}

/* ── Navbar CTA Button (Get a Quote) ── */
.wwa-btn-explore {
    background-color: #0D5681 !important;
    /* Vibrant Pink/Red from mockup */
    color: #ffffff !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    border: none !important;
    transition: all 0.3s ease-important;
    text-transform: none !important;
    margin-left: 20px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}


@media (max-width: 1199px) {
    .wwa-btn-explore {
        margin: 10px 20px !important;
        display: flex !important;
        width: calc(100% - 40px);
    }
}

/* Solar Installation Process - Vertical Timeline */
.process-vertical {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.process-vertical::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    border-left: 2px dashed #024064;
    opacity: 0.3;
}

.process-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-left: 100px;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-icon {
    position: absolute;
    left: 0;
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 6px solid #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #024064;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 2;
    transition: all 0.3s ease;
}

.process-item:hover .process-icon {
    background: #024064;
    color: #ffffff;
    border-color: #e1f0ff;
    transform: scale(1.05);
}

.process-content {
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    width: 100%;
    transition: all 0.3s ease;
}

.process-item:hover .process-content {
    border-color: #024064;
    box-shadow: 0 8px 30px rgba(2, 64, 100, 0.08);
}

.process-title {
    font-size: 20px;
    font-weight: 700;
    color: #024064;
    margin-bottom: 8px;
}

.process-desc {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-vertical::before {
        left: 30px;
    }

    .process-item {
        padding-left: 80px;
    }

    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .process-title {
        font-size: 18px;
    }

    .process-content {
        padding: 15px 20px;
    }
}

.quote {
    background-color: #EE2F5A !important;
    color: #ffffff !important;
}

/* Fix for Who We Are Image Border - Force Transparent Background and Bloat Image */
.wwa-image-back,
.wwa-image-front {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    overflow: hidden !important;
}

.wwa-image-back img,
.wwa-image-front img {
    width: 102% !important;
    height: 102% !important;
    object-fit: cover !important;
    position: absolute !important;
    top: -1% !important;
    left: -1% !important;
    border: none !important;
}


.project-tab {
    background-color: var(--bs-primary);
    color: white;
    border-radius: 5px;
    transition: all 0.3s ease;
}


/* --- Header Button Modernization (Vibrant Pink/Red) --- */
.btn-solar-primary {
    /* Matches user image precisely */
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-transform: none !important;
}

.btn-solar-primary:hover {

    transform: translateY(-2px) !important;

    color: #ffffff !important;
}

.btn-solar-primary:active {
    transform: translateY(0) !important;
}

.text-solar-yellow {
    color: #ffb900 !important;
}

/* --- Projects Page Hero Redesign --- */
.projects-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: clamp(70px, 10vw, 120px) 0;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.projects-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.45));
    z-index: 1;
}

.projects-hero .container {
    position: relative;
    z-index: 2;
}

.projects-hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #F4A300;
    max-width: 700px;
    margin-bottom: 24px;
}

.projects-hero-text {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    line-height: 1.7;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.projects-hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-solar-primary {
    background-color: #024064;
    border: none;
    color: #fff !important;
    height: 52px;
    padding: 0 28px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(2, 64, 100, 0.3);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-solar-primary:hover {
    background-color: #012d47;
    transform: translateY(-2px);
}

.btn-solar-secondary {
    background-color: #fff;
    border: 1px solid #fff;
    color: #1A1A1A !important;
    height: 52px;
    padding: 0 28px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-solar-secondary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.projects-hero-stats {
    display: flex;
    gap: 48px;
}

.projects-hero-stat-item h3 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
    color: #fff;
}

.projects-hero-stat-item p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 767px) {
    .projects-hero {
        text-align: center;
    }

    .projects-hero-title,
    .projects-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .projects-hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-solar-primary,
    .btn-solar-secondary {
        width: 100%;
        max-width: 320px;
    }

    .projects-hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .projects-hero-stat-item {
        border-left: none !important;
        border: none !important;
        padding-left: 0 !important;
        text-align: center;
    }
}

/* --- Projects Showcase Section (Portfolio) --- */
.portfolio-diverse-section {
    padding: clamp(40px, 8vw, 80px) 0;
}

.portfolio-heading {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: #1A1A1A;
}

.portfolio-filters-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.portfolio-category-tabs {
    display: flex;
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.portfolio-tab-item {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: #6B7280;
    cursor: pointer;
    padding-bottom: 8px;
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none !important;
}

.portfolio-tab-item:hover {
    color: #0D5681;
}

.portfolio-tab-item.active {
    color: #0D5681;
    font-weight: 700;
}

.portfolio-tab-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0D5681;
}

.showcase-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    text-decoration: none !important;
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.showcase-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-img {
    transform: scale(1.05);
}

.showcase-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.showcase-top-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.showcase-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(13, 86, 129, 0.1);
    color: #0D5681;
}

.showcase-location {
    font-size: 13px;
    color: #6B7280;
    opacity: 0.7;
}

.showcase-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: #0D5681 !important;
    margin-bottom: 12px;
}

.showcase-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #6B7280;
    margin-bottom: 24px;
    flex-grow: 1;
}

.showcase-cta {
    font-size: 14px;
    font-weight: 600;
    color: #0D5681;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.showcase-card:hover .showcase-cta {
    gap: 12px;
}

@media (max-width: 767px) {
    .portfolio-filters-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .portfolio-category-tabs {
        gap: 20px;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 8px;
    }
}

/* --- Project Gallery Specific Styles --- */
.gallery-filter-bar {
    background: rgba(248, 249, 250, 0.9);
    border: 1px solid #e9ecef;
    align-items: center !important;
}

/* Allow filter pills to grow and not squeeze the sort dropdown */
.gallery-filters {
    flex: 1;
    min-width: 0;
    justify-content: center;
}

.gallery-filter-btn {
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.gallery-filter-btn.active {
    background: #0D5681 !important;
    color: #fff !important;
    border: 1px solid #0D5681 !important;
}

.gallery-filter-btn:not(.active):hover {
    background: rgba(13, 86, 129, 0.06) !important;
    border-color: #0D5681 !important;
    color: #0D5681 !important;
}

.gallery-filter-btn:not(.active) {
    background: #fff !important;
    color: #374151 !important;
    border: 1px solid #e5e7eb !important;
}

.gallery-filter-icon {
    font-size: 0.875rem;
}

.sort-label {
    font-size: 0.875rem;
    white-space: nowrap;
}

.sort-dropdown-btn {
    font-size: 0.875rem;
    color: #374151;
    white-space: nowrap;
}

.sort-dropdown-icon {
    font-size: 0.7rem;
}

.sort-dropdown-menu {
    min-width: 130px;
}

/* =====================================================
   Gallery Cards — New Component (gal-card)
===================================================== */
.gal-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.gal-card-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gal-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gal-card:hover .gal-card-img {
    transform: scale(1.04);
}

.gal-status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 1;
}

.gal-badge-active {
    background: #16a34a;
    color: #fff;
}

.gal-badge-pending {
    background: #f59e0b;
    color: #fff;
}

.gal-card-body {
    padding: 20px 22px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.gal-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.35;
}

.gal-card-location {
    font-size: 0.875rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 16px;
}

.gal-pin-icon {
    color: #f59e0b;
    font-size: 0.9rem;
}

.gal-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
}

.gal-cat-badge {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    background: #fef3c7;
    color: #92400e;
}

.gal-updated {
    font-size: 0.78rem;
    color: #9ca3af;
}

/* --- Global Impact Specific Styles --- */
.impact-filter-btn {
    font-size: 0.88rem;
    cursor: pointer;
    text-decoration: none !important;
}

.impact-filter-btn.active {
    background: #0D5681 !important;
    color: #fff !important;
    border: none !important;
}

.impact-filter-btn:not(.active) {
    background: #fff !important;
    color: #374151 !important;
    border: 1px solid #e5e7eb !important;
}

.impact-card-wrapper {
    border-color: #e9ecef !important;
}

.impact-card-img {
    height: 210px;
    object-fit: cover;
}

.impact-card-title {
    font-size: 1rem;
}

.impact-card-meta {
    font-size: 0.88rem;
    color: #555;
}

.impact-savings-box {
    border: 1px solid #e9ecef;
    background: #fafafa;
}

.impact-savings-label {
    font-size: 0.85rem;
}

.impact-savings-value {
    font-size: 0.9rem;
    color: #1a1e21;
}

.impact-view-btn {
    background-color: #0D5681 !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 10px !important;
}

/* --- Featured Case Study Styles --- */
.featured-case-study-img {
    object-fit: cover;
    min-height: 400px;
}

.featured-badge {
    background: #fff3cd !important;
    color: #856404 !important;
    font-weight: 600 !important;
}

.featured-desc {
    font-size: 1rem;
}

.featured-stat-icon-wrapper {
    background: #fff3cd;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-stat-icon {
    color: #b88900;
}

.featured-stat-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
}

.featured-impact-panel {
    background: #eef4f8;
}

.featured-impact-icon-wrapper {
    color: var(--bs-primary);
}

.featured-impact-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
}

.featured-efficiency-badge {
    font-size: 0.85rem;
}

.featured-btn-primary {
    background-color: var(--bs-secondary) !important;
    color: white !important;
    border-radius: 10px !important;
}

.featured-btn-outline {
    border-radius: 10px !important;
}

.featured-pagination-dot-active {
    width: 24px;
    height: 8px;
    background: var(--bs-primary);
}

.featured-pagination-dot {
    width: 8px;
    height: 8px;
    background: #dee2e6;
}

/* --- Quality & Stats Styles --- */
.stat-icon-wrapper-yellow {
    width: 64px;
    height: 64px;
    background: #fff3cd;
}

.stat-icon-wrapper-blue {
    width: 64px;
    height: 64px;
    background: #cfe2ff;
}

.stat-icon-wrapper-green {
    width: 64px;
    height: 64px;
    background: #d1e7dd;
}

/* --- Testimonials Styles --- */
.testimonial-header-title {
    font-size: 2rem;
}

.testimonial-header-subtitle {
    max-width: 700px;
    font-size: 1.05rem;
}

.testimonial-card-container {
    max-width: 820px;
}

.testimonial-shadow-layer {
    background: #dce8f5;
    top: 18px;
    left: 18px;
    right: -8px;
    bottom: -8px;
    z-index: 0;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: #0D5681;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-reviewer-name {
    font-size: 1rem;
}

.testimonial-reviewer-location {
    font-size: 0.85rem;
}

.testimonial-content-text {
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial-star-icon {
    color: #ffb900;
    font-size: 1.1rem;
}

.testimonial-star-icon-empty {
    color: #d1d5db;
    font-size: 1.1rem;
}

.testimonial-nav-btn-prev {
    width: 38px;
    height: 38px;
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: #374151;
}

.testimonial-nav-btn-next {
    width: 38px;
    height: 38px;
    background: #0D5681;
    border: none;
    color: #fff;
}


/* --- Projects Showcase Section --- */
:root {
    --showcase-bg: #F8F9FA;
    --showcase-card-bg: #FFFFFF;
    --showcase-primary: #0D5681;
    --showcase-accent: #F4A300;
    --showcase-text-dark: #1A1A1A;
    --showcase-text-body: #6B7280;
    --showcase-border: rgba(0, 0, 0, 0.06);
}

.portfolio-diverse-section {
    padding: clamp(40px, 8vw, 80px) 0;
}

.portfolio-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .portfolio-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.portfolio-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--showcase-text-dark);
    margin-bottom: 8px;
}

.portfolio-subtitle {
    color: var(--showcase-text-body);
    margin-bottom: 0;
}

/* Filter Tabs — Portfolio Diverse Section */
.portfolio-filters {
    gap: 8px !important;
    flex-wrap: wrap;
}

.portfolio-filters .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--showcase-text-body);
    padding: 6px 16px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.portfolio-filters .nav-link:hover {
    color: var(--showcase-primary);
    border-color: var(--showcase-primary);
    background: rgba(13, 86, 129, 0.05);
}

.portfolio-filters .nav-link.active {
    background: var(--showcase-primary) !important;
    color: #fff !important;
    border-color: var(--showcase-primary) !important;
    font-weight: 600;
}

/* Project Card */
.project-showcase-card {
    background: var(--showcase-card-bg);
    border-radius: 16px;
    border: 1px solid var(--showcase-border);
    overflow: hidden;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.project-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.project-card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.project-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-showcase-card:hover .project-card-image {
    transform: scale(1.08);
}

.project-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.project-category-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(13, 86, 129, 0.08);
    color: var(--showcase-primary);
    text-transform: capitalize;
}

.project-location-label {
    font-size: 13px;
    color: var(--showcase-text-body);
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.project-card-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--showcase-primary);
    margin-bottom: 12px;
}

.project-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--showcase-text-body);
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-card-cta {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: var(--showcase-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.project-showcase-card:hover .project-card-cta {
    gap: 10px;
    color: var(--showcase-accent);
}

/* --- Login & Registration Premium White Card UI --- */
.login-reg-section {
    background: #808080;
    /* Gray background from mockup */
    padding: 50px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.login-reg-card {
    max-width: 620px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
}

.login-reg-card .btn-close-custom {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.5rem;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s;
}

.login-reg-card .btn-close-custom:hover {
    color: #333333;
}

.login-reg-card .title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0d47a1;
    /* Bold blue from mockup */
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.login-reg-card .subtitle {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 600;
}

.login-reg-form {
    text-align: left;
}

.login-reg-form .form-label {
    display: block;
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.login-reg-form .form-control,
.login-reg-form .form-select {
    background: #FFFFFF;
    border: 1.5px solid #BBBBBB;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 1rem;
    color: #333333;
    margin-bottom: 25px;
}

.login-reg-form .form-control::placeholder {
    color: #BBBBBB;
}

.login-reg-form .forgot-link {
    display: block;
    text-align: right;
    color: #888888;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: -10px;
    margin-bottom: 25px;
    font-weight: 500;
}

.login-reg-form .btn-submit {
    width: 100%;
    background: #ffb300;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: none;
    margin-top: 5px;
}

.login-reg-form .btn-submit:hover {
    background: #ffa000;
    box-shadow: 0 8px 15px rgba(255, 179, 0, 0.3);
}

.login-reg-footer {
    margin-top: 40px;
}

.login-reg-footer .security-msg {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

.login-reg-footer .security-msg i {
    font-size: 1.2rem;
}

.login-reg-footer .badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.85rem;
    color: #888888;
    font-weight: 600;
}

/* --- Responsive Adjustments for Login/Reg --- */
@media (max-width: 768px) {
    .login-reg-section {
        padding: 40px 15px;
    }

    .login-reg-card {
        padding: 40px 25px;
        border-radius: 15px;
    }

    .login-reg-card .title {
        font-size: 2rem;
    }

    .login-reg-footer .badges {
        flex-direction: column;
        gap: 10px;
    }
}

/* --- Header User Auth Styles --- */
.login-link {
    color: #333333;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 600;
}

.login-link:hover {
    color: #FFB900;
}

.user-account-dropdown .btn-outline-solar {
    border: 1px solid #E0E0E0;
    border-radius: 50px;
    padding: 6px 15px;
    font-size: 0.9rem;
    color: #333333;
    font-weight: 600;
}

.user-account-dropdown .btn-outline-solar:hover {
    background: #F8F9FA;
    border-color: #FFB900;
}

.user-account-dropdown .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px;
}

.user-account-dropdown .dropdown-item {
    border-radius: 8px;
    padding: 8px 15px;
    font-weight: 500;
    transition: all 0.2s;
}

.user-account-dropdown .dropdown-item:hover {
    background: #FFF9E6;
    color: #FFB900;
}

/* --- Mobile Navbar Quote Button Fix --- */
@media (max-width: 575px) {
    .header-quote-btn {
        width: 44px;
        height: 44px;
        padding: 0 !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        /* Smooth rounded corners matching the screenshot */
    }

    .header-quote-btn i {
        margin: 0 !important;
        font-size: 1.25rem;
    }
}

/* --- Global Mobile Adjustments for Financing Page Sections --- */
@media (max-width: 767px) {

    /* Reduce thick 100px padding to 50px */
    .enterprise-section-v5,
    .finance-comparison-v7,
    .financial-models-v6,
    .tax-optimization-v6,
    .faq-section-v9,
    .finance-timeline-v8,
    .emi-calc-v4 {
        padding: 50px 0 !important;
    }

    /* Shrink huge headings so they don't break lines awkwardly */
    .enterprise-hero-v5 {
        padding: 40px 20px !important;
    }

    .enterprise-hero-v5 h2 {
        font-size: 2rem !important;
    }

    .finance-comparison-v7 h2,
    .faq-section-v9 h2,
    .emi-calc-v4 .section-title,
    .finance-timeline-v8 h2,
    .financial-models-v6 h1 {
        font-size: 1.75rem !important;
        margin-bottom: 15px !important;
    }

    .financial-models-v6 h2 {
        font-size: 1.1rem !important;
    }

    .section-subtitle {
        font-size: 1rem !important;
        margin-bottom: 40px !important;
    }

    /* Fixed squishy Mobile Comparison Grid */
    .comp-grid-v7 {
        min-width: 850px !important;
        /* Force a wide scrolling container */
        padding: 15px !important;
    }

    .comp-grid-v7 .row.comp-header-row-v7,
    .comp-grid-v7 .row.comp-row-v7 {
        flex-wrap: nowrap !important;
    }

    .comp-grid-v7 .col-3 {
        width: 210px !important;
        min-width: 210px !important;
        flex: 0 0 auto !important;
    }

    .comp-col-title-v7,
    .comp-point-v7,
    .comp-value-v7,
    .comp-col-subtitle-v7 {
        word-break: normal !important;
        white-space: normal !important;
    }

    /* EMI Section Squishy Grid Fix */
    .feat-grid-v4 {
        grid-template-columns: 1fr !important;
    }

    /* Case Study Hero Fix */
    .industrial-hero {
        padding: 100px 0 60px !important;
    }

    .industrial-hero__title {
        font-size: 2.25rem !important;
        margin-bottom: 15px !important;
    }

    .industrial-hero__subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 30px !important;
    }

    /* Final CTA Typography Fix */
    .sol-cta__title {
        font-size: 1.8rem !important;
    }

    .sol-cta__text {
        font-size: 1rem !important;
        padding-inline: 15px !important;
    }

    .sol-cta__actions .btn {
        padding: 12px 20px !important;
        font-size: 1rem !important;
    }
}

/* =====================================================
   Global Mobile — button font-size scale-down
===================================================== */
@media (max-width: 767px) {
    h1 {
        font-size: clamp(1.5rem, 6vw, 2.25rem) !important;
        line-height: 1.25 !important;
    }

    .btn,
    button {
        font-size: clamp(0.8rem, 3.5vw, 0.95rem) !important;
    }

    .btn-lg {
        font-size: clamp(0.85rem, 3.8vw, 1rem) !important;
        padding-top: 0.6rem !important;
        padding-bottom: 0.6rem !important;
    }
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-out;
    z-index: -1;
}

/* ── About Section V2 (Mockup Match) ── */
.about-v2 {
    padding: var(--space-8) 0;
}

.about-v2 .section-title {
    font-size: var(--fs-display) !important;
    font-weight: 800;
    line-height: 1.1;
    color: #ffb900 !important;
    margin-bottom: var(--space-4);
}

.about-v2 .about-desc {
    font-size: var(--fs-md);
    color: var(--color-taxt-2);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

/* Stats Styling */
.about-stats-row {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    align-items: center;
}

.about-stat-item {
    padding-right: var(--space-4);
    border-right: 1px solid var(--color-divider);
}

.about-stat-item:last-child {
    border-right: none;
}

.about-stat-value {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--color-taxt-1);
    display: block;
}

.about-stat-label {
    font-size: var(--fs-sm);
    color: var(--color-taxt-3);
    text-transform: capitalize;
}

@media (max-width: 575px) {
    .about-stat-item {
        border-right: none;
        padding-right: 0;
        width: 100%;
        text-align: left;
    }
}

/* Image Column & Floating Badge */
.about-v2-img-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: #fff3d6;
    color: #ffb900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.badge-text-primary {
    font-weight: 800;
    color: #212121;
    margin-bottom: 0;
    font-size: 1rem;
}

.badge-text-secondary {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0;
}

.efficiency-value {
    margin-left: auto;
    color: #ea2b52;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Typography Overrides for Global Responsiveness */
h1,
.display-1 {
    font-size: var(--fs-display) !important;
}

h2,
.display-2 {
    font-size: var(--fs-xl) !important;
}

h3,
.display-3 {
    font-size: var(--fs-lg) !important;
}

h4,
.display-4 {
    font-size: var(--fs-md) !important;
}

@media (max-width: 767px) {
    .about-v2 {
        padding: var(--space-4) 0;
    }

    .about-v2 .section-title {
        font-size: var(--fs-xl) !important;
    }

    .floating-badge {
        display: none !important;
    }
}

/* Flex Utilities */
.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-grow-0-5 {
    flex-grow: 0.5 !important;
}