/* Savings Section Styles */
.savings-section {
    background: #fff;
    padding: 60px 0 40px 0;
}

.savings-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 10px;
}

.savings-desc {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

.savings-circle {
    border: 2px solid #0056d6;
    border-radius: 50%;
    padding: 50px 30px 40px 30px;
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
    background: #fff;
}

.savings-circle img {
    width: 60px;
    margin-bottom: 18px;
}

.savings-circle .circle-dot {
    width: 14px;
    height: 14px;
    background: #ffb300;
    border-radius: 50%;
    position: absolute;
}

.savings-circle .circle-dot.dot1 {
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.savings-circle .circle-dot.dot2 {
    top: 60px;
    right: 20px;
}

.savings-circle .circle-dot.dot4 {
    bottom: 60px;
    right: 20px;
}

.savings-circle .circle-dot.dot5 {
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.savings-circle .circle-dot.dot6 {
    bottom: 60px;
    left: 20px;
}

.savings-circle .circle-dot.dot8 {
    top: 62px;
    left: 20px;
}

.savings-inverter-label {
    color: #0056d6;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.savings-inverter-ctrl {
    background: #f5f5f5;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 8px;
}

.savings-inverter-ctrl button {
    background: #0056d6;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 8px;
    transition: background 0.2s;
}

.savings-inverter-ctrl button:active {
    background: #003a8c;
}

.savings-inverter-ctrl span {
    min-width: 32px;
    text-align: center;
}

.savings-highlight {
    color: #ffb300;
    font-weight: 700;
    font-size: 2.1rem;
    font-family: 'Montserrat', sans-serif;
}

.savings-label {
    color: #0056d6;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.savings-sub-label {
    color: #0056d6;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0;
}

.savings-contact-btn {
    background: #0056d6;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    padding: 8px 28px;
    font-size: 1.1rem;
    margin-top: 10px;
    transition: background 0.2s;
    border: none;
}

.savings-contact-btn:hover {
    background: #003a8c;
    color: #fff;
}

@media (max-width: 991px) {
    .savings-circle {
        width: 260px;
        height: 260px;
        padding: 30px 10px 20px 10px;
    }
    .circle-dots-desktop {
        display: none;
    }
}

@media (max-width: 767px) {
    .savings-section {
        padding: 40px 0 20px 0;
    }

    .savings-circle {
        width: 320px;   /* Increased from 200px to 320px */
        height: 320px;  /* Increased from 200px to 320px */
         /* Optional: adjust padding for better look */
    }
}