/* Banner Section Styles */
.banner-section {
    position: relative;
    background: url('../images/calculator-sec-banner.jpg') center center/cover no-repeat;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20, 59, 125, 0.7); /* dark blue overlay */
    z-index: 1;
}
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
}
.banner-content h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.breadcrumb .breadcrumb-item a,
.breadcrumb .breadcrumb-item.active {
    color: #fff !important;
    font-weight: bold;
    font-size: 1.1rem;
}
.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

/* Calculator Section Styles */
.calculator-section {
    background: #f37021;
    color: #fff;
    max-width: 500px;
    margin: 40px auto;
    padding: 40px 30px 30px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.calculator-section label {
    color: #fff;
    font-weight: 500;
}

.calculator-section input.form-control {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 4px;
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.calculator-section input.form-control::placeholder {
    color: #fff;
    opacity: 0.8;
}

.calculator-section .btn {
    background: #fff;
    color: #f37021;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: background 0.2s, color 0.2s;
}

.calculator-section .btn:hover {
    background: #ffc107;
    color: #fff;
}

.result-section {
    background: #fff;
    color: #444;
    border-radius: 10px;
    padding: 25px 20px;
    margin-top: 25px;
}

.result-section h5 {
    color: #f37021;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 18px;
    text-align: center;
}


/* Benefits Section Styles */
.benefits-section {
    background: #f8f9fa;
}
.benefits-img-wrapper {
    position: relative;
    display: inline-block;
}
.benefits-img {
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.benefits-shape {
    position: absolute;
    top: 30px;
    left: 40px;
    width: 320px;
    height: 220px;
    background: #fbeaea;
    border-radius: 50% 40% 60% 50% / 60% 50% 40% 50%;
    z-index: 0;
    opacity: 0.7;
    pointer-events: none;
}
.benefit-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 991px) {
    .benefits-img {
        width: 260px;
        height: 260px;
    }
    .benefits-shape {
        width: 220px;
        height: 140px;
        left: 20px;
        top: 20px;
    }
}