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

.conversions, .conversions .form-control{
    font-size: 15px;
    /* font-weight: 400; */
}
.conversions .form-control{
    font-weight: 400;
    background-color: #fff;
}
.conversions .form-control:disabled {
    background-color: var(--bs-secondary-bg);
    opacity: 1;
}
.leads{
    font-size: 15px;;
}
.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;
}

.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
}
.conversion-table{
    border-radius: 0px;
    table-layout: fixed;
    width: 100%;
    word-break: break-all;
    overflow-x: auto;
}
.conversion-table thead{
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}
.conversion-table thead th {
    background-color: #CDE7CB;
    color: #000;
    font-weight: 600;
    /* text-align: center; */
}
.conversion-table th:first-child, .conversion-table td:first-child {
    width: 30%;
    max-width: 30%;
}
.conversion-table th:last-child, .conversion-table td:last-child {
    width: 70%;
    max-width: 70%;
}
.conversion-table th, .conversion-table td {
    white-space: normal;
    word-break: break-all;
    text-align: left;
}
@media (max-width: 767px) {
    .conversion-table {
        font-size: 12px;
    }
    .conversion-table th:first-child, .conversion-table td:first-child {
        width: 40%;
        max-width: 40%;
    }
    .conversion-table th:last-child, .conversion-table td:last-child {
        width: 60%;
        max-width: 60%;
    }
}


.content-data{
    font-size: 15px;
    font-weight: 400;
}





/* Index page css */

.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; }
}
.codingtool-card {
    background: white;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.codingtool-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);
}

.codingtool-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;
}
#copy-feedback {
    transition: opacity 0.4s;
    z-index: 10;
    pointer-events: none;
}
