.section-title{
    font-size: calc(1.050rem + 1.5vw);
}
@media (min-width: 1200px) {
    .section-title{
        font-size: 2rem;
    }
}

.calculators, .calculators .form-control{
    font-size: 14px;
}
.calculators .form-control{
    font-weight: 600;
    background-color: #fff;
}
.calculators .form-control:disabled {
    background-color: var(--bs-secondary-bg);
    opacity: 1;
}
.leads{
    font-size: 14px;;
}
.input-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.result-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}
.result-card {
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    border-left: 4px solid #215C5C;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-right: 1px solid;
}
.result-card h3 {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.result-card .amount {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}


.toggle-container {
    display: flex;
    align-items: center;
    margin: 10px 0;
}
.toggle-container label {
    margin-left: 10px;
}
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #215C5C;
}
input:checked + .slider:before {
    transform: translateX(26px);
}

#amount_in_words,
.amount_in_words {
    /* font-style: italic; */
    color: #555;
    margin-top: 0px;
    margin-bottom: 10px;
    margin-left: 5px;
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.chart-container {
    width: auto;
    height: auto;
    margin-top: 20px;
}

.service-card{
    background-color: #fff;
    /* box-shadow: 0 0 20px rgba(0,0,0,0.05); */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border:none
}

.formula{
    background-color: #000000;
    color: #ffffff;
}

.investment-table{
    border-radius: 0px;
}
.investment-table thead{
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}
.investment-table thead th {
    background-color: #CDE7CB;
    color: #000;
    font-weight: 600;
    text-align: center;
}
.investmentDetails{
    text-align: center;
}
.breakdown-table{
    max-height: 600px;
    height: auto;
    overflow-y: auto;
}

.hero-section {
    padding: 120px 0 50px 0;
    background: #f5f6fc;
    border-bottom: 1px solid #e9ecef;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #181a2a;
    letter-spacing: -1px;
}
.hero-underline {
    position: relative;
    display: inline-block;
    z-index: 1;
    color: #2d3a5a;
}
.hero-underline::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0.1em;
    height: 0.5em;
    background: #235c5c;
    opacity: 0.22;
    border-radius: 0.2em;
    z-index: -1;
}
.hero-btn {
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 10px rgba(99,102,241,0.08);
}
.hero-illustration {
    min-width: 320px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-illustration i {
    font-size:60px;
    width: 75px;
    padding: 15px 0px;
}
.hero-bg {
    background: #e7eafd;
    border-radius: 40px;
    filter: blur(20px);
    opacity: 0.5;
}
@media (max-width: 991px) {
    .hero-section { padding: 100px 0 50px 0; }
    .hero-title { font-size: 2rem; }
    .hero-illustration { min-width: 180px; min-height: 140px; }
}
.calculator-card {
    background: white;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calculator-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.calculator-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08), 0 1.5px 6px rgba(0,0,0,0.08);
}

.special-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.custom_icons {
    position: relative;
    display: inline-block;
}

.icon-1, .icon-2 {
    transition: transform 0.3s ease;
}

.special-link:hover .icon-1 {
    transform: translateX(3px);
}

.special-link:hover .icon-2 {
    transform: translateX(6px);
}

.calculator-title {
    font-weight: bold;
    font-size: 16px !important;
}

.card-desc {
    font-size: 14px !important;
}

.hero-support-text {
    color: #23234c;
    font-weight: 500;
    line-height: 1.6;
}
.hero-support-text b {
    color: #3b36d8;
    font-weight: 700;
}

