/* Custom CSS for Rax Data & Energy - Exact Match to React Source */

:root {
    /* Primary Colors */
    --primary: hsl(210 100% 56%);
    --primary-hover: #2563eb;
    --secondary: hsl(45 100% 51%);
    --secondary-hover: #d97706;
    
    /* Background Colors */
    --background: #ffffff;
    --card: hsl(0 0% 98%);
    --card-30: hsl(0 0% 98% / 30%);
    
    /* Text Colors */
    --foreground: #0a0a0a;
    --muted-foreground: #737373;
    
    /* Border Colors */
    --border: hsl(240 5% 90%);
    
    /* Other */
    --radius: 0.5rem;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    padding-top: 106px; /* Space for ticker (42px) + navbar (64px) */
    max-width: 100vw; /* Ensure body doesn't exceed viewport width */
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
}

h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--foreground);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

p {
    color: var(--muted-foreground);
}

.text-muted-foreground {
    /* color: var(--muted-foreground) !important; */
    color: #000;
}

/* Gradient Text */
.text-gradient-blue {
        text-shadow: 0 0 25px rgba(37, 99, 235, .35);
      background: linear-gradient(120deg, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: linear-gradient(120deg, #facc15, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Container */
.container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Mobile Container */
@media (max-width: 576px) {
    .container {
        padding: 0 0.75rem;
    }
}

/* Crypto Ticker */
.crypto-ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    height: 42px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    height: 100%;
    align-items: center;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 40s linear infinite;
    align-items: center;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    font-size: 0.875rem;
}

.ticker-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.ticker-symbol {
    font-weight: 600;
    color: #ffffff;
}

.ticker-price {
    color: #ffffff;
}

.ticker-change {
    font-size: 0.75rem;
}

.ticker-change.positive {
    color: #22c55e;
}

.ticker-change.negative {
    color: #ef4444;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

.ticker-content:hover {
    animation-play-state: paused;
}

/* Navigation */
.navbar {
    position: fixed !important;
    top: 42px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1040 !important;
    background-color: #ffffff !important;
    border-bottom: 1px solid var(--border);
    height: 64px;
    padding: 0 !important;
    display: block !important;
}

.navbar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100%;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Desktop Navigation */
.navbar > .container > .navbar-nav {
    display: none !important;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: row !important;
}

@media (min-width: 992px) {
    .navbar > .container > .navbar-nav.d-lg-flex {
        display: flex !important;
        flex-direction: row !important;
    }
}

.navbar-nav li {
    list-style: none;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground) !important;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--foreground) !important;
}

.nav-link.active {
    background-color: transparent;
    color: var(--foreground) !important;
    font-weight: 600;
}

/* Dropdown */
.navbar .dropdown {
    position: relative;
}

.navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 12rem;
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 0.25rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    display: block;
    margin: 0;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.navbar .dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--foreground);
    text-decoration: none;
    transition: background-color 0.2s;
}

.navbar .dropdown-item:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

/* Mobile Menu - Hidden by default */
.navbar-collapse {
    display: none !important;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1039;
}

.navbar-collapse.show {
    display: block !important;
}

.navbar-collapse .navbar-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-collapse .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 0.75rem 1rem;
}

/* Mobile Menu Header and Submenu Styling */
.navbar-collapse .nav-item-header {
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}

.navbar-collapse .nav-header {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.navbar-collapse .nav-submenu {
    margin-left: 1.5rem;
    padding-left: 10px;

    font-size: 0.9rem;
 
    position: relative;
}



.navbar-collapse .nav-submenu:hover {
    color: var(--primary) !important;
    background-color: rgba(59, 130, 246, 0.05);
}

/* Mobile Menu Toggle */
.navbar-toggler {
    display: none;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: block !important;
    }
    
    .navbar > .container > .navbar-nav {
        display: none !important;
    }
    
    .navbar > .container > div.d-lg-block {
        display: none !important;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary {
    background-color: hsl(210 100% 56%);
    color: #ffffff;
    border-color: var(--primary);
      box-shadow: 0 10px 50px #3b82f64d;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border-color: var(--border);
}

.btn-outline:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: var(--foreground);
}

.btn-outline-dark {
    background-color: #ffffff;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-outline-dark:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
    color: #1f2937;
}

/* My Account Button */
.btn-outline-primary {
    background-color: transparent;
    color: var(--foreground);
    border: 1px solid #d1d5db;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 0 20px #3b82f64d;
    transition: all 0.2s ease;
}

.btn-outline-primary:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: #9ca3af;
    color: var(--foreground);
}

/* Mission Card Buttons */
.btn-outline-blue {
    background-color: transparent;
    color: #000;
    border: 1px solid #000 !important;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
}



.btn-outline-gold {
    background-color: transparent;
    color: #000;
    border: 1px solid #000 !important;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
}



/* CTA Section */
.cta-section {
    background-color: #ffffff;
}

.cta-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(191, 219, 254, 0.5), rgba(255, 255, 255, 0.8) 50%, rgba(254, 215, 170, 0.4));
    pointer-events: none;
}

.btn-ghost {
    background-color: transparent;
    color: var(--foreground);
    border-color: transparent;
}

.btn-ghost:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Cards */
.card {
    
    border: 1px solid #000;
    border-radius: var(--radius);
    overflow: hidden;
    padding: 0.5em;
}

.card-content {
    padding: 1.5rem;
}

/* Sections */
section {
    background-color: var(--background);
}

.bg-card-30 {
    background-color: var(--card-30) !important;
}

.bg-card {
    background-color: var(--card) !important;
}

/* Footer */
footer {
    background-color: var(--card);
    border-top: 1px solid var(--border);
    margin-top: 5rem;
}

footer h4, footer h6 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

footer a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--primary);
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer li {
    margin-bottom: 0.5rem;
}

.footer-disclosure {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-disclosure p {
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.footer-disclosure a {
    color: var(--primary);
}

.footer-disclosure a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

/* Bootstrap Order Utilities Fix */
.order-1 {
    order: 1 !important;
}

.order-2 {
    order: 2 !important;
}

/* Mobile first approach - ensure mobile order works */
@media (max-width: 767.98px) {
    .footer-bottom .order-1 {
        order: 1 !important;
    }
    
    .footer-bottom .order-2 {
        order: 2 !important;
    }
}

/* Desktop order */
@media (min-width: 768px) {
    .order-md-1 {
        order: 1 !important;
    }
    
    .order-md-2 {
        order: 2 !important;
    }
    
    .footer-bottom .order-md-1 {
        order: 1 !important;
    }
    
    .footer-bottom .order-md-2 {
        order: 2 !important;
    }
}

/* Footer Bottom Responsive Flex */
.footer-bottom .d-flex {
    display: flex !important;
}

.footer-bottom .flex-column {
    flex-direction: column !important;
}

.footer-bottom .align-items-center {
    align-items: center !important;
}

.footer-bottom .justify-content-between {
    justify-content: space-between !important;
}

.footer-bottom .gap-4 {
    gap: 1rem !important;
}

@media (max-width: 767.98px) {
    .footer-bottom .d-flex {
        flex-direction: column !important;
        text-align: center;
    }
    
    .footer-bottom .justify-content-between {
        justify-content: center !important;
    }
}

@media (min-width: 768px) {
    .footer-bottom .flex-md-row {
        flex-direction: row !important;
    }
    
    .footer-bottom .gap-4 {
        gap: 1.5rem !important;
    }
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    background-color: #ffffff;
    min-width: 0; /* Allows flex item to shrink below its content size */
    max-width: 100%;
}

.newsletter-form button {
    flex-shrink: 0; /* Prevents button from shrinking */
    white-space: nowrap; /* Prevents text wrapping */
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

/* Mobile Newsletter Form */
@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: row; /* Keep as flex row on mobile */
        gap: 0.5rem;
        align-items: center;
    }
    
    .newsletter-form input {
        flex: 1;
        min-width: 120px; /* Minimum width for input */
        width: auto;
        font-size: 0.8rem; /* Slightly smaller font on mobile */
        padding: 0.4rem 0.6rem; /* Adjusted padding for mobile */
    }
    
    .newsletter-form button {
        flex-shrink: 0;
        padding: 0.4rem 0.8rem; /* Adjusted button padding */
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    /* Ensure columns don't overflow on small screens */
    .col-6, .col-lg-2, .col-lg-4 {
        min-width: 0;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* Stack footer columns on small screens */
    footer .row {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }
}

/* Form Controls */
.form-label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: #ffffff;
    color: var(--foreground);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Icons */
.icon-primary {
    color: var(--primary);
}

.icon-secondary {
    color: var(--secondary);
}

/* Spacing Utilities */
.pt-32 { padding-top: 8rem; }
.pb-16 { padding-bottom: 4rem; }
.pt-18 { padding-top: 1.1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-4 { margin-top: 1rem; }
.gap-8 { gap: 2rem; }
.gap-6 { gap: 1.5rem; }
.gap-4 { gap: 1rem; }
.gap-2 { gap: 0.5rem; }

/* Grid */
.grid {
    display: grid;
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-12 { grid-template-columns: repeat(12, 1fr); }

.col-span-2 { grid-column: span 2; }
.col-span-4 { grid-column: span 4; }

/* Flex */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* Text */
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-relaxed { line-height: 1.625; }

/* Width/Height */
.w-full { width: 100%; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Responsive */
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .md\:flex-row { flex-direction: row; }
    .md\:items-center { align-items: center; }
    .md\:justify-between { justify-content: space-between; }
    .md\:gap-6 { gap: 1.5rem; }
}

@media (min-width: 1024px) {
    h1 { font-size: 3rem; }
    
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
    .lg\:col-span-2 { grid-column: span 2; }
    .lg\:col-span-4 { grid-column: span 4; }
}

/* Contact Cards */
.contact-card {
    text-align: center;
}

.contact-card .icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary);
    margin: 0 auto 0.75rem;
}

/* Location Cards */
.location-card .icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.location-card.mexico .icon {
    color: var(--secondary);
}

/* Check Items */
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.check-icon span {
    font-size: 0.75rem;
    color: var(--primary);
}

/* Utilities */
.rounded-full { border-radius: 9999px; }
.shadow-lg { box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.cursor-pointer { cursor: pointer; }
.transition-colors { transition: color 0.2s; }

/* Glow effects */
.glow-blue {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

/* Hero Buttons */
.hero-btn {
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
}

.hero-btn.btn-primary {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

/* Icon Containers - Equal size rounded circles */
.icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}



.icon-container.secondary {
    background-color: rgba(245, 158, 11, 0.1);
}

.icon-container i {
    font-size: 3rem;
}

/* Small icon containers for cards */
.icon-container-sm {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-container-sm.primary {
    background-color: rgba(59, 130, 246, 0.1);
}

.icon-container-sm.secondary {
    background-color: rgba(245, 158, 11, 0.1);
}

.icon-container-sm i {
    font-size: 1.5rem;
}

/* Tech Feature Cards - Advanced Technology Section */
.tech-section {
    background-color: #ffffff;
}

.tech-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(249, 250, 251, 0.5);
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 0.5rem;
    transition: border-color 0.2s ease;
}

.tech-feature-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.tech-feature-card p {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.6;
     font-weight: 500;
}

.tech-feature-card p strong {
    font-weight: 500;
}

.tech-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:hsl(210deg 100% 56% / 10%);
    border-radius: 0.5rem;
}

.tech-feature-icon i {
    font-size: 1.25rem;
    color: #3b82f6;
}

/* Tech Image with Glow */
.tech-image-wrapper {
    position: relative;
}

.tech-image-container {
    position: relative;
    z-index: 2;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.25);
}

.tech-image-container img {
    display: block;
}

.tech-image-glow {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 128px;
    height: 128px;
    background-color: rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
}
.glow-blue {
    box-shadow: 0 10px 50px #3b82f64d;
}
@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Why Choose Section */
.why-choose-section {
    background-color: #f9fafb;
}

.why-choose-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

.why-choose-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.why-choose-icon {
    width: 56px;
    height: 56px;
    background-color: #eff6ff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.why-choose-icon i {
    font-size: 1.75rem;
    color: #3b82f6;
}

/* Stats Section */
.stats-section {
    padding: 2rem 0;
    background-color:hsl(0deg 0% 98% / 50%);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 700;
}

/* Tech Section Background */
.tech-section {
    background-color: #ffffff;
}

/* Hero Section - Centered */
.hero-section {
    position: relative;
    /* min-height: 600px; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Page Hero Section - For internal pages */
.page-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 60px 0 60px;
}

.page-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(23 37 84 / 56%);
}

.page-hero .hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 1rem 2rem;
}

.page-hero h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    font-style: normal;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.page-hero h1 .text-gradient-gold {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 280px;
        padding: 80px 0 50px;
    }
    .page-hero h1 {
        font-size: 2rem;
    }
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.hero-badge i {
    font-size: 0.75rem;
}

/* Hero CTA Buttons (inside hero) */
.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
}

.btn-hero-link:hover {
    color: #fbbf24;
}

.btn-hero-link i {
    transition: transform 0.2s ease;
}

.btn-hero-link:hover i {
    transform: translateX(4px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-hero-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

/* Quick Nav Section - Below Hero */
.quick-nav-section {
    background-color: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.quick-nav-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.btn-quick-nav {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-quick-nav:hover {
    background-color: var(--muted);
    border-color: var(--primary);
    color: var(--primary);
}

/* Page Hero Icon */
.page-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

/* Text gradient gold for hero titles */
.text-gradient-gold {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Blue gradient text */
.text-gradient-blue {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.hero-section .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: rgba(10, 22, 40, 0.75); */
      background: rgb(23 37 84 / 56%);
}

/* Hero Learn More Button */
.btn-hero-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-hero-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.hero-section .hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 2rem;
}

.hero-section h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.25rem;
    }
}

.hero-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Partners Page Styles */
.section-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-icon svg {
    color: #3b82f6;
}

.section-icon .text-warning {
    color: #f59e0b !important;
}

.partner-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    transition: box-shadow 0.2s ease;
}

.partner-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-wrapper svg.text-warning {
    color: #f59e0b;
}

.card-icon-wrapper svg.text-primary {
    color: #3b82f6;
}

.certified-installer-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.investment-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-primary-light {
    background-color: rgba(59, 130, 246, 0.1);
}

.bg-warning-light {
    background-color: rgba(245, 158, 11, 0.1);
}

.investment-icon-box svg.text-primary {
    color: #3b82f6;
}

.investment-icon-box svg.text-warning {
    color: #f59e0b;
}

.stat-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.btn-tab-nav {
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-tab-nav:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
    color: #111827;
}

.nav-account-btn {
    border: 1px solid #d1d5db;
    color: #374151;
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
}

.nav-account-btn:hover {
    background-color: #f3f4f6;
    color: #111827;
    border-color: #9ca3af;
}

/* Form styling for partner page */
#partnerForm .form-control,
#partnerForm .form-select {
    border: 1px solid #d1d5db;
    border-radius: 6px;
}

#partnerForm .form-control:focus,
#partnerForm .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#partnerForm .form-label {
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

/* Partner Card V2 - simple black border design */
.partner-card-wrapper {
    position: relative;
}

.partner-card-v2 {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #1f2937;
    box-shadow: none;
}

.partner-card-v2 .card-title {
    color: #111827;
    font-weight: 600;
}

.check-icon-black {
    color: #111827 !important;
    font-weight: 700;
}

.stat-value-black {
    color: #111827 !important;
    font-size: 2.5rem;
    font-weight: 700;
}

.step-number-simple {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    min-width: 24px;
}

/* Investment icon circles */
.invest-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.invest-icon-circle.bg-blue {
    background-color: #dbeafe;
}

.invest-icon-circle.bg-yellow {
    background-color: #fef3c7;
}

.invest-icon-circle.bg-lightblue {
    background-color: #e0f2fe;
}

/* Press & Media Section */
.press-media-section {
    background-color: rgba(249, 250, 251, 0.3);
}

.press-icon-container {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.press-icon-container i {
    font-size: 3rem;
    color: #3b82f6;
}

.press-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.press-card:last-child {
    margin-bottom: 0;
}

.press-card.hover-lift:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.press-card-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
}

.press-card-icon i {
    font-size: 2rem;
    color: #3b82f6;
}

.press-card-icon.secondary {
    background-color: rgba(245, 158, 11, 0.1);
}

.press-card-icon.secondary i {
    color: #f59e0b;
}

.press-card-content {
    flex: 1;
}

.press-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
}

.press-source {
    color: #6b7280;
    font-weight: 500;
}

.press-separator {
    color: #9ca3af;
}

.press-date {
    color: #9ca3af;
}

.press-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.press-card-desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.press-card-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #3b82f6;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.press-card-link:hover {
    color: #2563eb;
}

.press-card-link i {
    font-size: 0.75rem;
}

/* Sustainability Section */
.sustainability-section .sustainability-stat-card-v2,
.sustainability-section .sustainability-info-card-v2{
    background-color: #f9fafb;
}

/* Sustainability Leaf Icon */
.sustainability-leaf-icon {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.sustainability-leaf-icon i {
    font-size: 3rem;
    color: #f59e0b;
}

.sustainability-stat-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    border-left: 4px solid #e5e7eb;
}

.sustainability-stat-card.border-yellow {
    border-left-color: #f59e0b;
}

.sustainability-stat-card.border-blue {
    border-left-color: #3b82f6;
}

.sustainability-stat-card.border-purple {
    border-left-color: #a855f7;
}

.sustainability-stat-card.border-green {
    border-left-color: #22c55e;
}

.sustainability-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.sustainability-stat-label {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
    margin: 0;
}

.sustainability-info-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
}

.sustainability-info-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.sustainability-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sustainability-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
}

.sustainability-list li:last-child {
    margin-bottom: 0;
}

.sustainability-list li i {
    color: #f59e0b;
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.sustainability-list li .leaf-icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.sustainability-list.blue li i {
    color: #3b82f6;
}

/* Forensics Services Cards */
.forensics-services-section .forensics-card {
    background-color: #f9fafb;
}

.forensics-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.25rem;
    height: 100%;
}

.forensics-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.forensics-icon-box.blue {
    background-color: #dbeafe;
}

.forensics-icon-box.blue i {
    color: #3b82f6;
    font-size: 1.25rem;
}

.forensics-icon-box.yellow {
    background-color: #fef3c7;
}

.forensics-icon-box.yellow i {
    color: #f59e0b;
    font-size: 1.25rem;
}

.forensics-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.forensics-card-desc {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.forensics-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.forensics-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.forensics-list li:last-child {
    margin-bottom: 0;
}

.forensics-list li i {
    font-size: 1rem;
    flex-shrink: 0;
}

.forensics-list li i.blue {
    color: #3b82f6;
}

.forensics-list li i.yellow {
    color: #f59e0b;
}

/* Investigation Process Cards */
.process-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
}

.process-number {
    font-size: 35px;
    font-weight: bold;
    display: block;
    margin-bottom: 0.75rem;
    color: #bfdbfe;
}

.process-title {
    font-size: 1rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.process-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Forensics CTA Card */
.forensics-cta-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.75rem;
    overflow: hidden;
}

.forensics-cta-content {
    padding: 3rem;
    text-align: center;
}

.forensics-cta-icon {
    color: #3b82f6;
    margin: 0 auto 1.5rem;
    display: block;
}

.forensics-cta-content h2 {
    color: #1f2937;
    font-weight: 700;
}

.forensics-cta-desc {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section .pricing-card {
    background-color: #f9fafb;
}

.pricing-section-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.pricing-section-icon.blue {
    background-color: #dbeafe;
}

.pricing-section-icon.blue i {
    color: #3b82f6;
    font-size: 1.75rem;
}

.pricing-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
    position: relative;
    text-align: center;
}

.pricing-card.popular {
    border: 2px solid #3b82f6;
    padding-top: 2.5rem;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3b82f6;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    white-space: nowrap;
}

.pricing-card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-plan-name {
    font-size: 0.875rem;
    color: #6b7280;
    display: block;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-period {
    font-size: 0.875rem;
    color: #9ca3af;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.75rem;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-features li i {
    color: #3b82f6;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Advanced Mining Data Section */
.mining-data-section {
    background-color: #f8fafc;
}

.mining-data-icon {
    width: 64px;
    height: 64px;
    background-color: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mining-stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}

.mining-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.mining-stat-value.blue {
    color: #3b82f6;
}

.mining-stat-value.green {
    color: #10b981;
}

.mining-stat-value.orange {
    color: #f59e0b;
}

.mining-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.mining-stat-change {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.mining-stat-change.positive {
    color: #10b981;
}

.mining-stat-change.negative {
    color: #ef4444;
}

.mining-stat-change.neutral {
    color: #6b7280;
}

.mining-dashboard-cta {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(245, 158, 11, 0.08));
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

.mining-dashboard-cta h3 {
    font-size: 1.5rem;
}

.mining-dashboard-cta .btn.glow-blue {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
}

.mining-dashboard-cta .btn.glow-blue:hover {
    background-color: #2563eb;
    border-color: #2563eb;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

/* Rax Data Hero Section */


.rax-data-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), #ffffff 50%, #ffffff);
}

.rax-data-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 0.5rem;
}

.rax-data-icon-box i {
    font-size: 2.5rem;
    color: #3b82f6;
}

.rax-data-hero-image {
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
}

.rax-data-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Rax Energy Hero Section */
.rax-energy-hero {
    padding: 8rem 0 4rem;
}

.rax-energy-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.1), #ffffff 50%, #ffffff);
}

.rax-energy-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: rgba(245, 158, 11, 0.1);
    border-radius: 0.5rem;
}

.rax-energy-icon-box i {
    font-size: 3rem;
    color: #f59e0b;
}

/* Sustainability Section V2 */
.sustainability-stat-card-v2 {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
}

.sustainability-stat-value-v2 {
    font-size: 2rem;
    font-weight: 700;
    color: #f59e0b;
    display: block;
    margin-bottom: 0.5rem;
}

.sustainability-stat-label-v2 {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.sustainability-info-card-v2 {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
}

.sustainability-info-title-v2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.sustainability-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sustainability-list-v2 li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.875rem;
    line-height: 1.5;
}

.sustainability-list-v2 li:last-child {
    margin-bottom: 0;
}

.sustainability-list-v2 .list-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Pricing Section V2 */
.pricing-section-icon-v2 {
    margin-bottom: 1rem;
}

.pricing-card-v2 {
    background-color:hsl(0 0% 98%);
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
    position: relative;
    transition: border-color 0.2s ease;
}
.pricing-card-v2 .btn-outline-dark,
.solar-card .btn-outline-dark {
    background-color:hsl(0 0% 98%);
}
.pricing-card-v2:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.pricing-card-v2.popular {
    border: 2px solid rgba(59, 130, 246, 0.5);
    margin-top: 0;
}

.pricing-badge-v2 {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3b82f6;
    color: #ffffff;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-card-header-v2 {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 1.5rem;
}

.pricing-plan-name-v2 {
    font-size: 0.875rem;
    color: #6b7280;
    display: block;
    margin-bottom: 0.5rem;
}

.pricing-amount-v2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-period-v2 {
    font-size: 0.875rem;
    color: #9ca3af;
}

.pricing-features-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.pricing-features-v2 li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.75rem;
}

.pricing-features-v2 li:last-child {
    margin-bottom: 0;
}

.pricing-features-v2 .check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========================================
   Solar & Energy Section
   ======================================== */
.solar-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
}

.solar-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.solar-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

.solar-card-price {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.solar-card-period {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.solar-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.solar-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
}

.solar-features li .check-icon {
    flex-shrink: 0;
}

.solar-features li span {
    font-size: 0.9375rem;
    color: #374151;
}

.solar-note {
    font-size: 0.8125rem;
    margin-bottom: 1rem;
}

.btn-outline-dark {
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.btn-outline-dark:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
    color: #111827;
}

/* ========================================
   Scroll Animations
   ======================================== */

/* Base animation states - hidden initially */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in animation */
.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.fade-in.animate-visible {
    opacity: 1;
}

/* Slide up animation */
.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-up.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide in from left */
.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-left.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide in from right */
.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-right.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up animation */
.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-up.animate-visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delay classes */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

/* Hero section specific animations */
.hero-content h1 {
    animation: heroFadeIn 1s ease-out forwards;
}

.hero-content p {
    animation: heroFadeIn 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-content .d-flex {
    animation: heroFadeIn 1s ease-out 0.4s forwards;
    opacity: 0;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats counter animation */
.stat-value {
    display: inline-block;
}

.stats-section .col-6 {
    opacity: 0;
    animation: statsFadeIn 0.6s ease-out forwards;
}

.stats-section .col-6:nth-child(1) { animation-delay: 0.1s; }
.stats-section .col-6:nth-child(2) { animation-delay: 0.2s; }
.stats-section .col-6:nth-child(3) { animation-delay: 0.3s; }
.stats-section .col-6:nth-child(4) { animation-delay: 0.4s; }

@keyframes statsFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card hover lift effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transform: translateY(-8px);
    box-shadow: 0 20px 40px #0000004d;
}

/* Image reveal animation */
.image-reveal {
    overflow: hidden;
}

.image-reveal img {
    transition: transform 0.6s ease-out;
}

.image-reveal.animate-visible img {
    transform: scale(1.05);
}

/* Button pulse animation on hover */
.btn-primary:hover {
    animation: buttonPulse 0.3s ease;
}

@keyframes buttonPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Floating animation for decorative elements */
.float-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

