:root {
    --brand-green: #72BF44;
    --brand-dark: #242834;
}

/* Offset for anchor links - account for sticky navbar */
#how-it-works,
#environmental-impact,
#case-studies {
    scroll-margin-top: 80px;
}

/* ===== LIVE IMPACT WIDGET ===== */
.live-impact-widget {
    background: #333;
    padding: 40px 0;
}

.impact-ticker {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.impact-stat {
    display: flex;
    align-items: center;
    gap: 20px;
}

.impact-icon {
    color: #84cc16;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-icon svg {
    width: 56px;
    height: 56px;
}

.impact-content {
    display: flex;
    flex-direction: column;
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    font-family: myFirstFontbold, sans-serif;
}

.impact-label {
    font-size: 1rem;
    color: #84cc16;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.impact-divider {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.impact-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .live-impact-widget {
        padding: 30px 0;
    }

    .impact-ticker {
        flex-direction: column;
        gap: 30px;
    }

    .impact-divider {
        width: 80px;
        height: 2px;
    }

    .impact-number {
        font-size: 2.5rem;
    }

    .impact-icon svg {
        width: 40px;
        height: 40px;
    }

    .impact-label {
        font-size: 0.85rem;
    }
}

/* ===== SIMPLE EQUATION CARBON WIDGET ===== */
.carbon-eq-widget {
    background: transparent;
    border-radius: 16px;
    border: none;
    padding: 30px 20px;
    box-shadow: none;
}

.ceq-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ceq-row-main {
    margin-bottom: 20px;
}

/* Solar Panel */
.ceq-panel {
    position: relative;
    width: 60px;
    height: 45px;
    margin-bottom: 20px;
}

.ceq-panel-frame {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2px;
    width: 100%;
    height: 100%;
    background: #242834;
    padding: 4px;
    border-radius: 4px;
    transform: perspective(100px) rotateX(10deg);
}

.ceq-panel-cell {
    background: linear-gradient(135deg, #72BF44 0%, #5a9d35 100%);
    border-radius: 1px;
    animation: ceq-panel-glow 2s ease-in-out infinite;
}

/* Solar Panel Mounting Structure */
.ceq-panel::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 16px;
    background: linear-gradient(to bottom, #242834 0%, #3a3f4d 100%);
    border-radius: 0 0 2px 2px;
}

.ceq-panel::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 4px;
    background: #242834;
    border-radius: 2px;
}

.ceq-panel-cell:nth-child(2) {
    animation-delay: 0.3s;
}

.ceq-panel-cell:nth-child(3) {
    animation-delay: 0.6s;
}

.ceq-panel-cell:nth-child(4) {
    animation-delay: 0.9s;
}

.ceq-panel-cell:nth-child(5) {
    animation-delay: 1.2s;
}

.ceq-panel-cell:nth-child(6) {
    animation-delay: 1.5s;
}

.ceq-panel-glow {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    animation: ceq-sun-pulse 3s ease-in-out infinite;
}

/* Equals Sign */
.ceq-equals {
    font-size: 1.8rem;
    font-weight: 700;
    color: #242834;
}

/* CO2 Value */
.ceq-co2 {
    text-align: center;
}

.ceq-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #72BF44;
    line-height: 1;
}

.ceq-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
}

/* Cars Group */
.ceq-cars-group {
    text-align: center;
}

.ceq-cars-row {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin-bottom: 2px;
}

.ceq-mini-car {
    width: 12px;
    height: 6px;
    background: #212121;
    border-radius: 2px 2px 0 0;
    position: relative;
    animation: ceq-car-fade 3s ease-in-out infinite;
}

.ceq-mini-car::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1px;
    width: 2px;
    height: 2px;
    background: #333;
    border-radius: 50%;
    box-shadow: 7px 0 0 #333;
}

.ceq-cars-row:nth-child(2) .ceq-mini-car {
    animation-delay: 0.5s;
}

.ceq-cars-row:nth-child(3) .ceq-mini-car {
    animation-delay: 1s;
}

.ceq-cars-row:nth-child(4) .ceq-mini-car {
    animation-delay: 1.5s;
}

.ceq-cars-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-top: 5px;
    font-weight: 600;
}

/* Divider */
.ceq-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.ceq-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(114, 191, 68, 0.5), transparent);
}

.ceq-divider span {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #E0E0E2 100%);
    padding: 0 15px;
    font-size: 0.85rem;
    color: #242834;
    font-style: italic;
}

/* Lifetime Row */
.ceq-row-lifetime {
    padding: 15px;
    background: rgba(114, 191, 68, 0.1);
    border-radius: 12px;
}

.ceq-lifetime-text,
.ceq-lifetime-cars {
    text-align: center;
}

.ceq-big-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #72BF44;
    line-height: 1;
}

.ceq-big-label {
    display: block;
    font-size: 0.8rem;
    color: #555;
}

/* Car Stream Animation - now uses grid like the 20 cars */
.ceq-car-stream {
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
    margin-top: 8px;
}

.ceq-stream-row {
    display: flex;
    gap: 2px;
    justify-content: center;
}

.ceq-stream-car {
    width: 8px;
    height: 4px;
    background: #212121;
    border-radius: 1px 1px 0 0;
    position: relative;
}

.ceq-stream-car::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 1px;
    width: 1px;
    height: 1px;
    background: #333;
    border-radius: 50%;
    box-shadow: 4px 0 0 #333;
}

/* Animations */
@keyframes ceq-panel-glow {

    0%,
    100% {
        box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.3);
        opacity: 0.8;
    }

    50% {
        box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.8), 0 0 10px rgba(114, 191, 68, 0.5);
        opacity: 1;
    }
}

@keyframes ceq-sun-pulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translateX(-50%) scale(1.3);
        opacity: 0.7;
    }
}

@keyframes ceq-car-fade {

    0%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

@keyframes ceq-stream-fade {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    30% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        transform: translateX(20px);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .carbon-eq-widget {
        padding: 20px 15px;
    }

    .ceq-row {
        gap: 10px;
    }

    .ceq-panel {
        width: 50px;
        height: 38px;
    }

    .ceq-value,
    .ceq-equals {
        font-size: 1.4rem;
    }

    .ceq-big-number {
        font-size: 1.6rem;
    }

    .ceq-mini-car {
        width: 10px;
        height: 5px;
    }
}

/* ===== FOREST ANIMATION WIDGET ===== */
.forest-widget {
    background: transparent;
    padding: 30px 20px;
    margin: 30px 0;
}

.forest-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Forest Visual - Grid of Trees */
.forest-visual {
    position: relative;
    width: 200px;
    height: 140px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
}

.forest-row {
    display: flex;
    gap: 4px;
    justify-content: center;
}

/* Individual Tree */
.forest-tree {
    width: 14px;
    height: 20px;
    position: relative;
    animation: tree-grow 2s ease-out forwards;
    opacity: 0;
    transform: scale(0);
}

.forest-tree::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: linear-gradient(to bottom, #5a4236, #3d2b24);
    border-radius: 1px;
}

.forest-tree::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 14px solid #72BF44;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Staggered tree grow animations */
.forest-row:nth-child(1) .forest-tree {
    animation-delay: 0.1s;
}

.forest-row:nth-child(2) .forest-tree {
    animation-delay: 0.2s;
}

.forest-row:nth-child(3) .forest-tree {
    animation-delay: 0.3s;
}

.forest-row:nth-child(4) .forest-tree {
    animation-delay: 0.4s;
}

.forest-row:nth-child(5) .forest-tree {
    animation-delay: 0.5s;
}

.forest-row:nth-child(6) .forest-tree {
    animation-delay: 0.6s;
}

.forest-row:nth-child(7) .forest-tree {
    animation-delay: 0.7s;
}

.forest-row .forest-tree:nth-child(2) {
    animation-delay: calc(var(--row-delay, 0s) + 0.05s);
}

.forest-row .forest-tree:nth-child(3) {
    animation-delay: calc(var(--row-delay, 0s) + 0.1s);
}

.forest-row .forest-tree:nth-child(4) {
    animation-delay: calc(var(--row-delay, 0s) + 0.15s);
}

.forest-row .forest-tree:nth-child(5) {
    animation-delay: calc(var(--row-delay, 0s) + 0.2s);
}

.forest-row .forest-tree:nth-child(6) {
    animation-delay: calc(var(--row-delay, 0s) + 0.25s);
}

.forest-row .forest-tree:nth-child(7) {
    animation-delay: calc(var(--row-delay, 0s) + 0.3s);
}

.forest-row .forest-tree:nth-child(8) {
    animation-delay: calc(var(--row-delay, 0s) + 0.35s);
}

.forest-row .forest-tree:nth-child(9) {
    animation-delay: calc(var(--row-delay, 0s) + 0.4s);
}

.forest-row .forest-tree:nth-child(10) {
    animation-delay: calc(var(--row-delay, 0s) + 0.45s);
}

/* Forest Stats */
.forest-stats {
    text-align: center;
}

.forest-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #72BF44;
    line-height: 1;
    font-family: myFirstFontbold, sans-serif;
}

.forest-label {
    display: block;
    font-size: 1rem;
    color: #242834;
    margin-top: 5px;
}

.forest-year {
    display: inline-block;
    background: #72BF44;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Equals Separator */
.forest-equals {
    font-size: 2rem;
    font-weight: 700;
    color: #242834;
}

/* Park Comparison */
.park-comparison {
    text-align: center;
    padding: 20px;
    background: rgba(114, 191, 68, 0.1);
    border-radius: 12px;
    position: relative;
}

.park-map {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.park-icon {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #72BF44 0%, #5a9d35 100%);
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.park-icon::before {
    content: '🌳';
    font-size: 20px;
}

.park-label {
    font-size: 0.85rem;
    color: #666;
}

.park-multiplier {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #72BF44;
    line-height: 1;
}

.park-name {
    display: block;
    font-size: 1rem;
    color: #242834;
    font-weight: 600;
}

/* Tree Grow Animation */
@keyframes tree-grow {
    0% {
        opacity: 0;
        transform: scale(0) translateY(10px);
    }

    50% {
        opacity: 1;
        transform: scale(1.1) translateY(-2px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .forest-container {
        flex-direction: column;
        gap: 20px;
    }

    .forest-visual {
        width: 160px;
        height: 100px;
    }

    .forest-tree {
        width: 10px;
        height: 14px;
    }

    .forest-tree::before {
        width: 2px;
        height: 4px;
    }

    .forest-tree::after {
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 10px solid #72BF44;
    }

    .forest-number {
        font-size: 2.2rem;
    }

    .forest-equals {
        font-size: 1.5rem;
    }

    .park-multiplier {
        font-size: 2rem;
    }
}

/* ===== WATER CONSERVATION WIDGET ===== */
.water-widget {
    padding: 30px 20px;
    margin: 20px 0;
}

.water-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Water Tank Visual */
.water-tank {
    position: relative;
    width: 80px;
    height: 100px;
    border: 4px solid #4FC3F7;
    border-radius: 8px 8px 16px 16px;
    background: rgba(79, 195, 247, 0.1);
    overflow: hidden;
}

.water-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, #0288D1, #4FC3F7);
    animation: water-fill-up 3s ease-out forwards;
    animation-delay: 0.5s;
}

.water-waves {
    position: absolute;
    top: -8px;
    left: -10%;
    width: 120%;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath d='M0 10 Q25 0 50 10 T100 10 V20 H0 Z' fill='%234FC3F7'/%3E%3C/svg%3E");
    animation: water-wave 2s linear infinite;
}

/* Droplets */
.water-droplets {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.water-droplet {
    width: 16px;
    height: 20px;
    background: linear-gradient(to bottom, #4FC3F7, #0288D1);
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
    opacity: 0;
    animation: droplet-fall 2s ease-in-out infinite;
}

.water-droplet:nth-child(2) {
    animation-delay: 0.3s;
}

.water-droplet:nth-child(3) {
    animation-delay: 0.6s;
}

.water-droplet:nth-child(4) {
    animation-delay: 0.9s;
}

.water-droplet:nth-child(5) {
    animation-delay: 1.2s;
}

/* Water Stats */
.water-stats {
    text-align: center;
}

.water-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #0288D1;
    line-height: 1;
    font-family: myFirstFontbold, sans-serif;
}

.water-label {
    display: block;
    font-size: 1rem;
    color: white;
    margin-top: 5px;
}

.water-equals {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

/* Pool Comparison */
.pool-comparison {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.pool-visual {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.pool-icon {
    width: 40px;
    height: 24px;
    background: linear-gradient(to bottom, #4FC3F7, #0288D1);
    border-radius: 4px;
    position: relative;
}

.pool-icon::before {
    content: '~';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

.pool-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #4FC3F7;
    line-height: 1;
}

.pool-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Water Animations */
@keyframes water-fill-up {
    0% {
        height: 0;
    }

    100% {
        height: 75%;
    }
}

@keyframes water-wave {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-20px);
    }
}

@keyframes droplet-fall {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* ===== ENERGY GENERATION WIDGET ===== */
.energy-widget {
    padding: 30px 20px;
    margin: 20px 0;
}

.energy-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Sun Visual */
.energy-sun {
    position: relative;
    width: 80px;
    height: 80px;
}

.sun-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFCD29 0%, #FF9800 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 205, 41, 0.6);
    animation: sun-pulse 2s ease-in-out infinite;
}

.sun-ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 20px;
    background: linear-gradient(to top, #FFCD29, transparent);
    transform-origin: center bottom;
    border-radius: 2px;
    animation: ray-pulse 2s ease-in-out infinite;
}

.sun-ray:nth-child(1) {
    transform: translate(-50%, -150%) rotate(0deg);
}

.sun-ray:nth-child(2) {
    transform: translate(-50%, -150%) rotate(45deg);
    animation-delay: 0.25s;
}

.sun-ray:nth-child(3) {
    transform: translate(-50%, -150%) rotate(90deg);
    animation-delay: 0.5s;
}

.sun-ray:nth-child(4) {
    transform: translate(-50%, -150%) rotate(135deg);
    animation-delay: 0.75s;
}

.sun-ray:nth-child(5) {
    transform: translate(-50%, -150%) rotate(180deg);
    animation-delay: 1s;
}

.sun-ray:nth-child(6) {
    transform: translate(-50%, -150%) rotate(225deg);
    animation-delay: 1.25s;
}

.sun-ray:nth-child(7) {
    transform: translate(-50%, -150%) rotate(270deg);
    animation-delay: 1.5s;
}

.sun-ray:nth-child(8) {
    transform: translate(-50%, -150%) rotate(315deg);
    animation-delay: 1.75s;
}

/* Lightning Bolts */
.energy-bolts {
    display: flex;
    gap: 6px;
}

.energy-bolt {
    font-size: 24px;
    color: #FFCD29;
    animation: bolt-flash 1.5s ease-in-out infinite;
}

.energy-bolt:nth-child(2) {
    animation-delay: 0.3s;
}

.energy-bolt:nth-child(3) {
    animation-delay: 0.6s;
}

/* Energy Stats */
.energy-stats {
    text-align: center;
}

.energy-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #72BF44;
    line-height: 1;
    font-family: myFirstFontbold, sans-serif;
}

.energy-unit {
    font-size: 1.2rem;
}

.energy-label {
    display: block;
    font-size: 1rem;
    color: #242834;
    margin-top: 5px;
}

.energy-equals {
    font-size: 2rem;
    font-weight: 700;
    color: #242834;
}

/* Homes Comparison */
.homes-comparison {
    text-align: center;
    padding: 20px;
    background: rgba(114, 191, 68, 0.1);
    border-radius: 12px;
}

.homes-visual {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    max-width: 150px;
}

.home-icon {
    font-size: 18px;
}

.homes-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #72BF44;
    line-height: 1;
}

.homes-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

/* Energy Animations */
@keyframes sun-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 20px rgba(255, 205, 41, 0.6);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 40px rgba(255, 205, 41, 0.8);
    }
}

@keyframes ray-pulse {

    0%,
    100% {
        opacity: 0.6;
        height: 20px;
    }

    50% {
        opacity: 1;
        height: 25px;
    }
}

@keyframes bolt-flash {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Mobile Responsive for Water & Energy */
@media (max-width: 768px) {

    .water-container,
    .energy-container {
        flex-direction: column;
        gap: 20px;
    }

    .water-tank {
        width: 60px;
        height: 75px;
    }

    .water-number,
    .energy-number {
        font-size: 2rem;
    }

    .pool-number,
    .homes-number {
        font-size: 2rem;
    }

    .energy-sun {
        width: 60px;
        height: 60px;
    }

    .sun-core {
        width: 30px;
        height: 30px;
    }

    .sun-ray {
        height: 15px;
    }
}

@font-face {
    font-family: myFirstFont;
    font-display: swap;
    src: url(../fonts/Avenir-Book.ttf);
}

@font-face {
    font-family: myFirstFontbold;
    font-display: swap;
    src: url(../fonts/AvenirLTStd-Black.otf);
}

body {
    margin: 0;
    padding: 0;
    font-size: 17px;
    font-family: myFirstFont, sans-serif;
}

/* Screen-reader only utility for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Improved color contrast for accessibility (WCAG AA) */
.text-white-50 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.text-white-50:hover,
.text-white-50:focus {
    color: rgba(255, 255, 255, 1) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: myFirstFontbold !important;
}

.btn {
    padding-left: 25px !important;
    padding-right: 25px !important;
    transition: all 0.3s ease;
}

.outline-btn {
    border: 2px solid #242834;
    border-radius: 40px;
    transition: ease all .3s;
    color: #242834;
}

.outline-btn:hover {
    background: #242834;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.box {
    border: 1px solid #1919191A;
    border-radius: 10px;
    padding: 15px;
}

.box img {
    margin-bottom: 8px;
}

.number {
    height: 35px;
    width: 35px;
    background: #72BF44;
    border-radius: 50%;
    line-height: 35px;
    font-weight: bold;
    margin: auto;
    margin-bottom: 15px;
}

.listt li {
    color: white;
    margin-bottom: 5px;
    list-style-type: none;
}

.listt a {
    color: white;
}

.nav-pills .nav-link.active {
    color: #fff;
    background-color: white;
    color: black;
    border-color: #72BF44 !important;
    font-weight: bold;
}

.nav-pills .nav-link {
    border-color: #72BF44;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-radius: 0px;
    background-color: white;
    border-color: #ffffff42;
}

.nav-pills .nav-link.active {
    border-color: #72BF44;
}

.social1 li {
    background: black;
}

.social1 li a {
    color: white;
}

.home-icon {
    position: absolute;
    left: 14px;
}

/*.headeradctive{
	color: #72BF44;
	font-weight: bold;
164: }*/
.bg-blue {
    background: #232734;
}

.corner {
    border-radius: 24px !important;
}

.box2 {
    min-height: 315px;
}



.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust opacity as needed */
    z-index: 1;
}

@media screen and (max-width:787px) {
    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 20px;
    }

    body {
        font-size: 15px;
    }

    .imgwidth {
        width: 100% !important;
    }

    .how .box {
        min-height: initial;
    }

    .navbar-light .navbar-toggler {
        border: none;
        margin-top: 15px !important;
        margin-right: -25px !important;
    }

    .navbar-nav .nav-link {
        padding-left: 10px;
    }

    .img100 {
        width: 100% !important;
    }

    h2.tress {
        font-size: 14px !important;
    }

    .display-4 {
        font-size: 32px !important;
    }

    .shadow-sm {
        box-shadow: none !important;
    }

    .navbar-brand img {
        width: 100px;
    }

    /* Only apply to content images inside banner, NOT hero background images */
    .banner img:not(.hero-video):not(.hero-mobile):not(.hero-poster) {
        width: 75% !important;
    }

    /* Hero images MUST be full width and centered */
    .banner .hero-video,
    .banner .hero-mobile,
    .banner .hero-poster {
        width: 100% !important;
        height: 100% !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    .mcenter {
        text-align: center;
    }

    .centermobile {
        text-align: center;
    }

    .listt-border {
        border-bottom: 1px solid #535353;
        padding-bottom: 15px !important;
    }

    .mtop {
        margin-top: 3px !important;
    }

    .social li {
        margin-right: 15px;
    }

    .box2 {
        min-height: auto;
    }

    .w-75.carbon {
        width: 100% !important;
    }

    .label {
        margin-left: 0px !important;
    }

    .impact {
        height: 300px;
        object-fit: cover;
    }

    .imgg {
        width: 50% !important;
    }
}


#rangeOutput {
    right: 0;
}

/* Style the range slider */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

/* Slider thumb */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--brand-green);
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--brand-green);
    cursor: pointer;
}

/* Slider fill before thumb */
input[type="range"]::-webkit-slider-runnable-track {
    background: linear-gradient(to right, var(--brand-green) 0%, var(--brand-green) var(--range-percent), #d3d3d3 var(--range-percent), #d3d3d3 100%);
}

/* Slider thumb on hover */
input[type="range"]:hover::-webkit-slider-thumb {
    background: var(--brand-dark);
}

input[type="range"]:hover::-moz-range-thumb {
    background: var(--brand-dark);
}

#textField {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-top: 15px;
}

.progress {
    transform: rotate(-90deg);
    height: 50px;
}

.table td,
.table th {
    border: none;
    padding: 5px;
}

.card1 {
    border: 4px solid #FFCD29;

}

.card-top {
    position: absolute;
    background: #FFCD29;
    width: calc(100% + 8px);
    left: -4px;
    top: -45px;
    border-radius: 20px 20px 0px 0px;

    box-sizing: content-box;
}

.card1.corner {
    border-radius: 0px 0px 25px 25px !important;
}


.cardc {
    min-height: 500px;
    padding-top: 25px !important;
}

.progress-bar {
    background-color: #72bf44;
}

.progress-bar2 {
    background-color: #242834 !important;
}

.form-check-label {
    border: 1px solid #c3c3c3;
    border-radius: 20px;
    padding: 3px 13px;
}

/* Mobile Sticky Bar Buttons */
.btn-brand-dark {
    background-color: var(--brand-dark) !important;
    color: white !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-brand-dark:hover {
    background-color: #1a1d26 !important;
    color: white !important;
}

.common-btn2 {
    background: linear-gradient(135deg, #72BF44 0%, #99D975 100%) !important;
    border: none;
    color: white !important;
    padding-left: 25px !important;
    padding-right: 25px !important;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-position: center;
}

/* Visual Polish (High Effort) */

/* Typography Scale */
h1 {
    font-size: 2.5rem !important;
    line-height: 1.2;
}

h2 {
    font-size: 2rem !important;
    line-height: 1.3;
}

h3 {
    font-size: 1.75rem !important;
    line-height: 1.4;
}

body {
    font-size: 1rem;
    line-height: 1.6;
}


.bg-gradient-green {
    background: linear-gradient(135deg, #72BF44 0%, #99D975 100%) !important;
}

.text-gradient {
    background: linear-gradient(135deg, #72BF44 0%, #99D975 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.bg-grey {
    background: #F8F8F8;
}

.social li {
    display: inline-block;
    height: 30px;
    width: 30px;
    background: white;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.social li a {
    color: #72BF44;
    /* Brand Green */
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.social li:hover {
    background: #72BF44;
    transform: translateY(-3px);
}

.social li:hover a {
    color: white;
}

/* How It Works Fix */
.how .box img {
    max-width: 240px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.customer .box {
    background: #232734;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #72BF44;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.customer .box::before {
    content: '“';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 80px;
    color: #ffffff10;
    font-family: serif;
    line-height: 1;
}

.star-rating {
    color: #FFCD29;
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(114, 191, 68, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(114, 191, 68, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(114, 191, 68, 0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.animate-pulse {
    animation: pulse 2s infinite ease-in-out;
}

.animate-fade-up {
    animation: fadeUp 1s ease-out forwards;
}

/* Savings Section Redesign */
.savings-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.savings-card:hover {
    transform: translateY(-10px);
}

.savings-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #72BF44, #99D975);
}

.savings-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #242834;
}



/* Fix Header/Body Padding if needed */
@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
}

/* Calculator Redesign Styles */
.calculator-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.calculator-card:hover {
    transform: translateY(-5px);
}

.visual-stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}

.visual-stepper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e9ecef;
    z-index: 0;
    transform: translateY(-50%);
}

.stepper-item {
    position: relative;
    z-index: 1;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e9ecef;
    color: #adb5bd;
    font-weight: bold;
    transition: all 0.3s ease;
}

.stepper-item.active {
    border-color: #72BF44;
    background: #72BF44;
    color: white;
    box-shadow: 0 0 0 4px rgba(114, 191, 68, 0.2);
}

.stepper-item.completed {
    border-color: #72BF44;
    background: #72BF44;
    color: white;
}

.property-card-label {
    display: block;
    cursor: pointer;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.property-card-input:checked+.property-card-label {
    border-color: #72BF44;
    background-color: #f0f9eb;
    box-shadow: 0 4px 10px rgba(114, 191, 68, 0.2);
}

.property-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #72BF44;
}

.bill-display {
    font-size: 2.5rem;
    font-weight: 800;
    color: #242834;
    margin-bottom: 10px;
}

.hero-bg {
    background-color: #E0E0E2 !important;
    position: relative;
}

.hero-bg::before {
    content: '';
    content: '“';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 80px;
    color: #ffffff10;
    font-family: serif;
    line-height: 1;
}

.star-rating {
    color: #FFCD29;
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(114, 191, 68, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(114, 191, 68, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(114, 191, 68, 0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.animate-pulse {
    animation: pulse 2s infinite ease-in-out;
}

.animate-fade-up {
    animation: fadeUp 1s ease-out forwards;
}

/* Savings Section Redesign */
.savings-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.savings-card:hover {
    transform: translateY(-10px);
}

.savings-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #72BF44, #99D975);
}

.savings-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #242834;
    font-family: myFirstFontbold, sans-serif;
}



/* Fix Header/Body Padding if needed */
@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
}

/* Calculator Redesign Styles */
.calculator-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.calculator-card:hover {
    transform: translateY(-5px);
}

.visual-stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}

.visual-stepper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e9ecef;
    z-index: 0;
    transform: translateY(-50%);
}

.stepper-item {
    position: relative;
    z-index: 1;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e9ecef;
    color: #adb5bd;
    font-weight: bold;
    transition: all 0.3s ease;
}

.stepper-item.active {
    border-color: #72BF44;
    background: #72BF44;
    color: white;
    box-shadow: 0 0 0 4px rgba(114, 191, 68, 0.2);
}

.stepper-item.completed {
    border-color: #72BF44;
    background: #72BF44;
    color: white;
}

.property-card-label {
    display: block;
    cursor: pointer;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.property-card-input:checked+.property-card-label {
    border-color: #72BF44;
    background-color: #f0f9eb;
    box-shadow: 0 4px 10px rgba(114, 191, 68, 0.2);
}

.property-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #72BF44;
}

.bill-display {
    font-size: 2.5rem;
    font-weight: 800;
    color: #242834;
    margin-bottom: 10px;
}



.star-rating {
    color: #FFCD29;
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(114, 191, 68, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(114, 191, 68, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(114, 191, 68, 0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.animate-pulse {
    animation: pulse 2s infinite ease-in-out;
}

.animate-fade-up {
    animation: fadeUp 1s ease-out forwards;
}

/* Savings Section Redesign */
.savings-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.savings-card:hover {
    transform: translateY(-10px);
}

.savings-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #72BF44, #99D975);
}

.savings-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #242834;
}

/* Calculator Custom Styles */
.custom-select-lg {
    height: auto !important;
    padding: 15px !important;
    border-radius: 10px !important;
    border: 2px solid #e9ecef;
    background-color: #f8f9fa;
    font-size: 1rem;
    color: #495057;
    transition: all 0.3s ease;
}

.custom-select-lg:focus {
    border-color: #72BF44;
    box-shadow: 0 0 0 0.2rem rgba(114, 191, 68, 0.25);
    background-color: #fff;
}

.custom-range-input {
    height: 8px !important;
    border-radius: 5px !important;
    background: #e9ecef;
    cursor: pointer;
    margin-top: 10px;
}

.custom-input-lg {
    border-radius: 10px !important;
    padding: 25px 15px !important;
    border: 2px solid #e9ecef;
    background-color: #f8f9fa;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.custom-input-lg:focus {
    border-color: #72BF44;
    box-shadow: 0 0 0 0.2rem rgba(114, 191, 68, 0.25);
    background-color: #fff;
}

/* About Us Page Styles */
.hero-section-about {
    background: linear-gradient(135deg, #72BF44 0%, #99D975 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

/* Glowing Orbs Animation */
@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 40px);
    }

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

.hero-circle-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(114, 191, 68, 0.4);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.hero-circle-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: rgba(36, 40, 52, 0.6);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.7;
    animation: float 10s ease-in-out infinite reverse;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.border-left-brand {
    border-left: 5px solid #72BF44 !important;
}

.bg-dark-brand {
    background-color: #242834 !important;
}

/* Glassmorphism */
.bg-glass-dark {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease;
}

.bg-glass-dark:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.cta-section {
    background: linear-gradient(135deg, #72BF44 0%, #99D975 100%);
}

.img-overlay-gradient {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.8));
    pointer-events: none;
}

/* Icon Circle for Mission */
.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(114, 191, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.card:hover .icon-circle {
    background: #72BF44;
}

.card:hover .icon-circle img {
    filter: brightness(0) invert(1);
}

/* Quote Box Polish */
.quote-box {
    background-color: rgba(114, 191, 68, 0.08);
    border-radius: 0 15px 15px 0;
    padding: 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .savings-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        height: 100%;
        border: 1px solid #f0f0f0;
        position: relative;
        overflow: hidden;
    }

    .savings-card:hover {
        transform: translateY(-10px);
    }

    .savings-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #72BF44, #99D975);
    }

    .savings-amount {
        font-size: 2.5rem;
        font-weight: 800;
        color: #242834;
    }

    /* Calculator Custom Styles */
    .custom-select-lg {
        height: auto !important;
        padding: 15px !important;
        border-radius: 10px !important;
        border: 2px solid #e9ecef;
        background-color: #f8f9fa;
        font-size: 1rem;
        color: #495057;
        transition: all 0.3s ease;
    }

    .custom-select-lg:focus {
        border-color: #72BF44;
        box-shadow: 0 0 0 0.2rem rgba(114, 191, 68, 0.25);
        background-color: #fff;
    }

    .custom-range-input {
        height: 8px !important;
        border-radius: 5px !important;
        background: #e9ecef;
        cursor: pointer;
        margin-top: 10px;
    }

    .custom-input-lg {
        border-radius: 10px !important;
        padding: 25px 15px !important;
        border: 2px solid #e9ecef;
        background-color: #f8f9fa;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .custom-input-lg:focus {
        border-color: #72BF44;
        box-shadow: 0 0 0 0.2rem rgba(114, 191, 68, 0.25);
        background-color: #fff;
    }

    /* About Us Page Styles */
    .hero-section-about {
        background: linear-gradient(135deg, #72BF44 0%, #99D975 100%);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
        color: white;
    }

    /* Glowing Orbs Animation */
    @keyframes float {
        0% {
            transform: translate(0, 0);
        }

        50% {
            transform: translate(20px, 40px);
        }

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

    .hero-circle-1 {
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: rgba(114, 191, 68, 0.4);
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.6;
        animation: float 8s ease-in-out infinite;
    }

    .hero-circle-2 {
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 500px;
        height: 500px;
        background: rgba(36, 40, 52, 0.6);
        border-radius: 50%;
        filter: blur(100px);
        opacity: 0.7;
        animation: float 10s ease-in-out infinite reverse;
    }

    .hover-lift {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .hover-lift:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    }

    .border-left-brand {
        border-left: 5px solid #72BF44 !important;
    }

    .bg-dark-brand {
        background-color: #242834 !important;
    }

    /* Glassmorphism */
    .bg-glass-dark {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        transition: transform 0.3s ease;
    }

    .bg-glass-dark:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.08);
    }

    .cta-section {
        background: linear-gradient(135deg, #72BF44 0%, #99D975 100%);
    }

    .img-overlay-gradient {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.8));
        pointer-events: none;
    }

    /* Icon Circle for Mission */
    .icon-circle {
        width: 80px;
        height: 80px;
        background: rgba(114, 191, 68, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        transition: all 0.3s ease;
    }

    .card:hover .icon-circle {
        background: #72BF44;
    }

    .card:hover .icon-circle img {
        filter: brightness(0) invert(1);
    }

    /* Quote Box Polish */
    .quote-box {
        background-color: rgba(114, 191, 68, 0.08);
        border-radius: 0 15px 15px 0;
        padding: 2rem;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .savings-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            height: 100%;
            border: 1px solid #f0f0f0;
            position: relative;
            overflow: hidden;
        }

        .savings-card:hover {
            transform: translateY(-10px);
        }

        .savings-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #72BF44, #99D975);
        }

        .savings-amount {
            font-size: 2.5rem;
            font-weight: 800;
            color: #242834;
        }

        /* Calculator Custom Styles */
        .custom-select-lg {
            height: auto !important;
            padding: 15px !important;
            border-radius: 10px !important;
            border: 2px solid #e9ecef;
            background-color: #f8f9fa;
            font-size: 1rem;
            color: #495057;
            transition: all 0.3s ease;
        }

        .custom-select-lg:focus {
            border-color: #72BF44;
            box-shadow: 0 0 0 0.2rem rgba(114, 191, 68, 0.25);
            background-color: #fff;
        }

        .custom-range-input {
            height: 8px !important;
            border-radius: 5px !important;
            background: #e9ecef;
            cursor: pointer;
            margin-top: 10px;
        }

        .custom-input-lg {
            border-radius: 10px !important;
            padding: 25px 15px !important;
            border: 2px solid #e9ecef;
            background-color: #f8f9fa;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .custom-input-lg:focus {
            border-color: #72BF44;
            box-shadow: 0 0 0 0.2rem rgba(114, 191, 68, 0.25);
            background-color: #fff;
        }

        /* About Us Page Styles */
        .hero-section-about {
            background: linear-gradient(135deg, #72BF44 0%, #99D975 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            color: white;
        }

        /* Glowing Orbs Animation */
        @keyframes float {
            0% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(20px, 40px);
            }

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

        .hero-circle-1 {
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: rgba(114, 191, 68, 0.4);
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.6;
            animation: float 8s ease-in-out infinite;
        }

        .hero-circle-2 {
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 500px;
            height: 500px;
            background: rgba(36, 40, 52, 0.6);
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.7;
            animation: float 10s ease-in-out infinite reverse;
        }

        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
        }

        .border-left-brand {
            border-left: 5px solid #72BF44 !important;
        }

        .bg-dark-brand {
            background-color: #242834 !important;
        }

        /* Glassmorphism */
        .bg-glass-dark {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
            transition: transform 0.3s ease;
        }

        .bg-glass-dark:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
        }

        .cta-section {
            background: linear-gradient(135deg, #72BF44 0%, #99D975 100%);
        }

        .img-overlay-gradient {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.8));
            pointer-events: none;
        }

        /* Icon Circle for Mission */
        .icon-circle {
            width: 80px;
            height: 80px;
            background: rgba(114, 191, 68, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .card:hover .icon-circle {
            background: #72BF44;
        }

        .card:hover .icon-circle img {
            filter: brightness(0) invert(1);
        }

        /* Bento Grid Layout */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .bento-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 30px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .bento-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.08);
        }

        .bento-item-large {
            grid-column: span 2;
            background: linear-gradient(135deg, rgba(114, 191, 68, 0.2) 0%, rgba(36, 40, 52, 0.4) 100%);
        }

        .bento-item-large img {
            height: 60px !important;
            margin-bottom: 20px;
        }

        /* Floating CTA */
        .floating-cta-container {
            padding: 0 0 80px 0;
            /* Space for the float */
            background: transparent;
            /* Let the body bg show through */
        }

        .floating-cta {
            background: linear-gradient(135deg, #72BF44 0%, #99D975 100%);
            border-radius: 30px;
            padding: 60px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .floating-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            border-radius: 10px !important;
            padding: 25px 15px !important;
            border: 2px solid #e9ecef;
            background-color: #f8f9fa;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .custom-input-lg:focus {
            border-color: #72BF44;
            box-shadow: 0 0 0 0.2rem rgba(114, 191, 68, 0.25);
            background-color: #fff;
        }

        /* About Us Page Styles */
        .hero-section-about {
            background: linear-gradient(135deg, #72BF44 0%, #99D975 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            color: white;
        }

        /* Glowing Orbs Animation */
        @keyframes float {
            0% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(20px, 40px);
            }

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

        .hero-circle-1 {
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: rgba(114, 191, 68, 0.4);
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.6;
            animation: float 8s ease-in-out infinite;
        }

        .hero-circle-2 {
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 500px;
            height: 500px;
            background: rgba(36, 40, 52, 0.6);
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.7;
            animation: float 10s ease-in-out infinite reverse;
        }

        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
        }

        .border-left-brand {
            border-left: 5px solid #72BF44 !important;
        }

        .bg-dark-brand {
            background-color: #242834 !important;
        }

        /* Glassmorphism */
        .bg-glass-dark {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
            transition: transform 0.3s ease;
        }

        .bg-glass-dark:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
        }

        .cta-section {
            background: linear-gradient(135deg, #72BF44 0%, #99D975 100%);
        }

        .img-overlay-gradient {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.8));
            pointer-events: none;
        }

        /* Icon Circle for Mission */
        .icon-circle {
            width: 80px;
            height: 80px;
            background: rgba(114, 191, 68, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .card:hover .icon-circle {
            background: #72BF44;
        }

        .card:hover .icon-circle img {
            filter: brightness(0) invert(1);
        }

        /* Bento Grid Layout */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .bento-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 30px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .bento-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.08);
        }

        .bento-item-large {
            grid-column: span 2;
            background: linear-gradient(135deg, rgba(114, 191, 68, 0.2) 0%, rgba(36, 40, 52, 0.4) 100%);
        }

        .bento-item-large img {
            height: 60px !important;
            margin-bottom: 20px;
        }

        /* Floating CTA */
        .floating-cta-container {
            padding: 0 0 80px 0;
            /* Space for the float */
            background: transparent;
            /* Let the body bg show through */
        }

        .floating-cta {
            background: linear-gradient(135deg, #72BF44 0%, #99D975 100%);
            border-radius: 30px;
            padding: 60px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .floating-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;

        }
    }
}

/* Hero Section Enhancements */
.hero-title {
    font-size: 3.5rem !important;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-lead {
    font-size: 1.25rem;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
}

.hero-highlight {
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
}

/* Trust Bar Enhancements */
.trust-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(114, 191, 68, 0.1);
    /* Brand Green Light */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon-wrapper {
    background: var(--brand-green);
    transform: translateY(-5px);
}

.trust-item:hover .trust-icon-wrapper i {
    color: white !important;
}

.trust-item i {
    color: var(--brand-green);
    transition: all 0.3s ease;
}

/* Bento Grid Layout (Enhanced) */
.bento-grid-v2 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.bento-item-v2 {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.bento-item-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.bento-col-4 {
    grid-column: span 4;
}

.bento-col-6 {
    grid-column: span 6;
}

.bento-col-8 {
    grid-column: span 8;
}

.bento-col-12 {
    grid-column: span 12;
}

@media (max-width: 768px) {

    .bento-col-4,
    .bento-col-6,
    .bento-col-8 {
        grid-column: span 12;
    }

    .bento-grid-v2 {
        grid-template-columns: 1fr;
    }
}

/* Product Feature Grid */
.product-grid-item {
    background: #2a2e3b;
    /* Slightly lighter than dark bg */
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.product-grid-item:hover {
    background: #323645;
    border-color: var(--brand-green);
}

.product-icon {
    display: block;
    width: 100%;
    font-size: 2.5rem;
    color: var(--brand-green);
    margin-bottom: 15px;
    text-align: center;
}

/* =========================================
   Process Timeline Styles (Services Page)
   ========================================= */

.process-timeline {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}

/* Vertical Line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #e9ecef;
    /* Lighter line for premium feel */
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-step {
    position: relative;
    margin-bottom: 80px;
    /* Increased spacing */
    width: 100%;
    z-index: 2;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

/* Timeline Card */
.timeline-card {
    background: white;
    border-radius: 20px;
    /* Softer corners */
    padding: 40px;
    /* More breathing room */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    /* Softer, deeper shadow */
    position: relative;
    width: 45%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    /* Removed border for cleaner look */
    overflow: hidden;
    /* For watermark clipping */
}

.timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Accent Border (Top) */
.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green), #a8e063);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Watermark Number */
.step-watermark {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    pointer-events: none;
    font-family: 'myFirstFontbold', sans-serif;
}

/* Alternating Layout */
.timeline-step:nth-child(odd) .timeline-card {
    margin-left: auto;
    /* Right side */
}

.timeline-step:nth-child(even) .timeline-card {
    margin-right: auto;
    /* Left side */
}

/* Timeline Icon */
.timeline-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    /* Larger icon */
    height: 70px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    font-size: 1.8rem;
    color: var(--brand-green);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 1), 0 0 20px rgba(0, 0, 0, 0.1);
    /* Glow ring */
}

/* Connector Line (Dashed) */
.timeline-card::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 0;
    border-bottom: 2px dashed #ced4da;
    /* Dashed connector */
    z-index: -1;
}

.timeline-step:nth-child(odd) .timeline-card::after {
    left: -60px;
}

.timeline-step:nth-child(even) .timeline-card::after {
    right: -60px;
}

/* Timeline Badge */
.timeline-badge {
    display: inline-block;
    background: rgba(114, 191, 68, 0.1);
    /* Soft Brand Green Tint */
    color: var(--brand-green);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 20px;
    letter-spacing: 0.5px;
}

.timeline-badge.fast-track {
    background: #fff3cd;
    /* Soft Orange Tint */
    color: #fd7e14;
    box-shadow: none;
    border: 1px solid rgba(253, 126, 20, 0.2);
}

/* Typography */
.timeline-card h3 {
    font-family: 'myFirstFontbold', sans-serif;
    color: var(--brand-dark);
    margin-bottom: 15px;
    font-size: 1.75rem;
    position: relative;
    z-index: 2;
}

.timeline-card p {
    font-family: 'myFirstFont', sans-serif;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 35px;
    }

    .timeline-step {
        margin-bottom: 50px;
    }

    .timeline-card {
        width: calc(100% - 90px);
        margin-left: 90px !important;
        margin-right: 0 !important;
        padding: 25px;
    }

    .timeline-icon {
        left: 35px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 1), 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .timeline-card::after {
        left: -55px !important;
        width: 55px;
        right: auto !important;
    }

    .step-watermark {
        font-size: 5rem;
        bottom: -10px;
        right: -5px;
    }

    .timeline-card h3 {
        font-size: 1.4rem;
    }
}

/* Case Studies Specific Styles */
.filter-btn {
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 50px;
    padding: 10px 30px;
    margin: 0 5px 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
}

.filter-btn.active {
    background: linear-gradient(135deg, #72BF44 0%, #99D975 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 10px rgba(114, 191, 68, 0.3);
}

.case-study-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.case-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.case-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-img-wrapper img {
    transform: scale(1.05);
}

.case-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(36, 40, 52, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.stat-item h6 {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 2px;
}

.stat-item p {
    font-size: 1rem;
    font-weight: bold;
    color: var(--brand-dark);
    margin-bottom: 0;
}

/* Large Product Icons */
.product-icon .material-symbols-rounded {
    font-size: 5rem !important;
    color: var(--brand-green) !important;
}

/* Mobile Timeline Fix - Centered vertical line through icons */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 60px;
    }

    .timeline-step {
        margin-bottom: 50px;
    }

    .timeline-card {
        width: calc(100% - 120px);
        margin-left: 120px !important;
        margin-right: 0 !important;
        padding: 25px;
    }

    .timeline-icon {
        left: 60px;
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 1), 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .timeline-card::after {
        left: -55px !important;
        width: 55px;
        right: auto !important;
    }
}

/* Large Product Icons */
.product-icon .material-symbols-rounded {
    font-size: 5rem !important;
    color: var(--brand-green) !important;
}

/* Force timeline line to center on icons - Desktop Fix */
.process-timeline::before {
    left: 50%;
    transform: translateX(-50%);
}

.timeline-icon {
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Timeline Icon Positioning Fix - Center on vertical line */
.timeline-step {
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon {
    position: absolute;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
}

/* Ensure the vertical line is truly centered */
.process-timeline::before {
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* Timeline Icon Material Symbols Styling */
.timeline-icon .material-symbols-rounded {
    font-size: 2rem;
    color: var(--brand-green);
}

/* =========================================
   Phone Mockup & App Progress Animation
   ========================================= */

.phone-mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.phone-mockup {
    width: 300px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    min-height: 450px;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 12px;
    color: #333;
}

.app-content {
    padding: 20px;
}

.app-greeting {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.app-subtitle {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.progress-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 15px;
}

.progress-title {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.app-progress-list {
    position: relative;
}

.app-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    position: relative;
    opacity: 0;
    transform: translateX(-10px);
}

.app-step.completed {
    opacity: 1;
    transform: translateX(0);
}

.step-indicator {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    background: white;
}

.app-step.completed .step-indicator .material-symbols-rounded {
    color: var(--brand-green);
    font-size: 28px;
}

.app-step.in-progress .step-indicator {
    background: var(--brand-green);
    color: white;
}

.step-number {
    font-size: 14px;
    font-weight: bold;
}

.step-line {
    position: absolute;
    left: 13px;
    top: 28px;
    width: 2px;
    height: calc(100% + 8px);
    background: #e9ecef;
}

.app-step.completed .step-line {
    background: var(--brand-green);
}

.app-step:last-child .step-line {
    display: none;
}

.step-content {
    margin-left: 12px;
    flex: 1;
}

.step-content strong {
    display: block;
    font-size: 0.85rem;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.step-date {
    font-size: 0.75rem;
    color: #6c757d;
}

/* Animation for steps appearing */
@keyframes slideInStep {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.app-step.animate-step {
    animation: slideInStep 0.5s ease-out forwards;
}

.app-step.animate-step.delay-1 {
    animation-delay: 1s;
}

.app-step.animate-step.delay-2 {
    animation-delay: 2s;
}

.app-step.animate-step.delay-3 {
    animation-delay: 3s;
}

/* Progress line growing animation */
@keyframes growLine {
    0% {
        height: 0;
        background: #e9ecef;
    }

    100% {
        height: calc(100% + 8px);
        background: var(--brand-green);
    }
}

.app-step.animate-step .step-line {
    animation: growLine 0.3s ease-out forwards;
    animation-delay: inherit;
}

/* Pulse animation for in-progress step */
@keyframes pulse-indicator {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(114, 191, 68, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(114, 191, 68, 0);
    }
}

.app-step.in-progress .step-indicator {
    animation: pulse-indicator 2s infinite;
}

/* Mobile responsiveness for Phone Mockup & Timeline */
@media (max-width: 768px) {

    /* Phone mockup - constrain height */
    .phone-mockup {
        width: 240px;
        max-width: 90%;
    }

    .phone-screen {
        min-height: auto;
        max-height: 400px;
        overflow: hidden;
    }

    .app-greeting {
        font-size: 1.1rem;
    }

    .app-subtitle {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }

    .progress-section {
        padding: 12px;
    }

    .step-content strong {
        font-size: 0.75rem;
    }

    .step-date {
        font-size: 0.65rem;
    }

    .step-indicator {
        width: 22px;
        height: 22px;
    }

    .app-step.completed .step-indicator .material-symbols-rounded {
        font-size: 22px;
    }

    /* Timeline - Fix icon overlap on mobile */
    .process-timeline::before {
        left: 25px !important;
    }

    .timeline-icon {
        left: 25px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }

    .timeline-icon .material-symbols-rounded {
        font-size: 1.5rem !important;
    }

    .timeline-card {
        width: calc(100% - 80px) !important;
        margin-left: 80px !important;
        padding: 20px !important;
    }

    .timeline-card::after {
        display: none;
    }

    .step-watermark {
        font-size: 4rem !important;
    }

    .timeline-card h3 {
        font-size: 1.2rem !important;
    }

    .timeline-card p {
        font-size: 0.9rem !important;
    }
}

/* =========================================
   MOBILE LAYOUT FIXES (Index Page)
   ========================================= */
@media (max-width: 767.98px) {

    /* Trust Bar - Stack vertically on mobile */
    .trust-item {
        flex: 1 1 45% !important;
        min-width: 45% !important;
        max-width: 50% !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }

    .trust-icon-wrapper {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        margin: 0 auto 8px !important;
    }

    .trust-icon-wrapper .material-symbols-rounded {
        font-size: 2rem !important;
    }

    /* Trust bar container - wrap items in 2x2 grid */
    .col-md-12.d-flex.justify-content-center {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    /* Service Cards - Full width on mobile */
    .col-md-4,
    .col-md-3 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }

    .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Environmental Impact Icons Grid */
    .row.text-center .col-md-3 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    /* Hero section - proper height and FULL WIDTH on mobile */
    .banner,
    .hero-container {
        min-height: 100vh !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        left: 0 !important;
        right: 0 !important;
        overflow: hidden !important;
    }

    /* Hero content padding */
    .hero-title {
        font-size: 1.8rem !important;
        padding: 0 10px !important;
    }

    .hero-lead {
        font-size: 0.95rem !important;
        padding: 0 15px !important;
    }

    /* Fix box spacing */
    .box {
        padding: 20px !important;
        margin-bottom: 15px !important;
    }

    /* KPI stats - stack properly */
    .display-4 {
        font-size: 2rem !important;
    }

    /* Featured installations - full width cards */
    .case-study-card {
        margin-bottom: 20px !important;
    }

    /* Footer - proper spacing */
    footer .col-md-3,
    footer .col-md-4 {
        margin-bottom: 30px !important;
    }

    /* Reduce section padding on mobile */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    /* Environmental impact cards - proper grid */
    .bg-white.p-4.rounded.shadow-sm {
        margin-bottom: 15px !important;
    }

    /* Trust bar - reduce horizontal margins on mobile */
    .trust-item.mx-3 {
        margin-left: 8px !important;
        margin-right: 8px !important;
    }

    /* Body padding for fixed bottom bar */
    body {
        padding-bottom: 80px !important;
    }

    /* Fixed bottom bar styling */
    .fixed-bottom {
        z-index: 1050 !important;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
    }

    /* Product Grid Icons (Scalable Energy Solutions) - CENTER icons properly */
    .product-grid-item {
        padding: 20px 15px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .product-icon {
        margin-bottom: 10px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }

    .product-icon .material-symbols-rounded {
        font-size: 3rem !important;
    }

    /* Hero image - center properly on mobile */
    .hero-video,
    .hero-mobile {
        object-position: center center !important;
    }

    /* Savings Amount (Easy EMI) - use brand font */
    .savings-amount {
        font-family: myFirstFontbold, sans-serif !important;
        font-size: 2rem !important;
        letter-spacing: -0.5px !important;
    }

    /* "Fits every budget" text - match brand style */
    .bento-item-v2 .text-success {
        font-family: myFirstFont, sans-serif !important;
        font-size: 0.9rem !important;
    }

    /* Bento items on mobile - full width */
    .bento-item-v2 {
        padding: 20px !important;
    }

    /* ===== MOBILE MENU (ALL PAGES) ===== */
    /* Mobile Menu - Full width dropdown below navbar */
    .navbar-collapse {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: white !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        padding: 15px 20px !important;
        z-index: 1000 !important;
    }

    .navbar-collapse:not(.show) {
        display: none !important;
    }

    .navbar-collapse.show {
        display: block !important;
    }

    .navbar-nav {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }

    .navbar-nav .nav-item {
        padding: 5px 0 !important;
        border-bottom: 1px solid #f0f0f0;
        width: 100% !important;
        text-align: center !important;
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        padding: 12px 10px !important;
        font-size: 1rem !important;
        color: #333 !important;
        display: block !important;
        text-align: center !important;
    }

    .navbar-toggler {
        display: block !important;
    }

    /* Keep navbar sticky at top on mobile */
    .navbar,
    .navbar.sticky-top {
        position: sticky !important;
        top: 0 !important;
        z-index: 1030 !important;
    }

    /* Offset for anchor links - account for sticky navbar */
    #how-it-works,
    #environmental-impact,
    #case-studies {
        scroll-margin-top: 80px;
    }

    /* ===== HERO IMAGE CENTERING - MOBILE FIX ===== */
    /* These rules MUST override any other hero image styling on mobile */
    .hero-video,
    .hero-mobile,
    .hero-poster,
    .banner .hero-video,
    .banner .hero-mobile,
    .banner .hero-poster,
    .hero-container .hero-video,
    .hero-container .hero-mobile,
    .hero-container .hero-poster {
        position: absolute !important;
        top: 0 !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 100vw !important;
        max-width: none !important;
        height: 100% !important;
        min-height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        object-fit: cover !important;
        object-position: center center !important;
        background-position: center center !important;
    }
}

/* =========================================
   GLOBAL FIXES for About/Contact Pages (Desktop & Mobile)
   ========================================= */

/* Why Choose Us - Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

.bento-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.bento-item-large {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(114, 191, 68, 0.2) 0%, rgba(36, 40, 52, 0.4) 100%);
}

@media (max-width: 768px) {
    .bento-item-large {
        grid-column: span 1;
    }
}

.bento-item-large img {
    height: 60px !important;
    margin-bottom: 20px;
}

/* Floating CTA */
.floating-cta-container {
    padding: 0 0 80px 0;
    background: transparent;
}

.floating-cta {
    background: linear-gradient(135deg, #72BF44 0%, #99D975 100%);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(45deg);
}

/* Hero Section About - Ensure Background */
.hero-section-about {
    background: linear-gradient(135deg, #72BF44 0%, #99D975 100%) !important;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-circle-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(114, 191, 68, 0.4);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.hero-circle-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: rgba(36, 40, 52, 0.6);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.7;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 40px);
    }

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

/* Branding Overrides for Bootstrap Defaults (Remove Blue) */
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #72BF44 !important;
    /* Brand Green */
}

.nav-link {
    color: #242834;
    /* Brand Dark */
}

.nav-link:hover {
    color: #72BF44;
    /* Brand Green */
}

.text-primary {
    color: #72BF44 !important;
    /* Force Brand Green on primary text */
}

.bg-primary {
    background-color: #72BF44 !important;
    /* Force Brand Green on primary bg */
}

.btn-primary {
    background-color: #72BF44 !important;
    border-color: #72BF44 !important;
}

/* Fix for PM Surya Page specific bg-blue if used */
.bg-blue {
    background-color: #242834 !important;
    /* Brand Dark */
}

/* Mobile Optimization for Bento Cards */
@media (max-width: 768px) {
    .bento-card {
        padding: 20px !important;
        /* Reduce padding on mobile */
    }

    .bento-card h3,
    .bento-card h4 {
        word-wrap: break-word;
        /* Prevent awkward breaks */
        hyphens: auto;
    }
}

/* Force Phone Links to Brand Colors */
a[href^="tel:"] {
    color: #242834 !important;
    /* Default Dark */
}

.bg-dark a[href^="tel:"],
.footer a[href^="tel:"],
.text-white a[href^="tel:"] {
    color: #ffffff !important;
    /* White on dark backgrounds */
}

a[href^="tel:"]:hover {
    color: #72BF44 !important;
}

/* Ensure Nav Pills are Brand Green (Reinforce) */
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #72BF44 !important;
    color: #fff !important;
}

.nav-link {
    color: #242834;
}

/* Brand Text Utilities */
.text-brand {
    color: #72BF44 !important;
}

.text-brand:hover {
    color: #5da632 !important;
    text-decoration: underline;
}

.text-brand-dark {
    color: #242834 !important;
}

/* FORCE HERO CENTERING MOBILE FIX */
@media (max-width: 768px) {

    .hero-container,
    .banner {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        min-height: 100vh !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Ensure internal container doesn't block centering */
    .hero-container .container-fluid,
    .banner .container-fluid {
        height: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}