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

.conversions, .conversions .form-control{
    font-size: 14px;
}
.conversions .form-control{
    font-weight: 400;
    background-color: #fff;
}
.conversions .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;
}

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

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

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

.texttool-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;
}

/* Text Difference Checker Styles */
.removed-line, .added-line {
    margin-bottom: 8px;
    padding: 4px 0;
}

.line-number {
    display: inline-block;
    margin-right: 8px;
    font-family: monospace;
    font-size: 0.9em;
}

.removed-content {
    background-color: #f8d7da !important;
    color: #721c24 !important;
    /* border: 1px solid #f5c6cb; */
    border-radius: 4px;
    /* padding: 2px 6px !important; */
    /* margin: 2px 0; */
    /* display: inline-block; */
    /* font-family: monospace; */
    /* white-space: pre-wrap; */
    /* word-break: break-word; */
}

.added-content {
    background-color: #d4edda !important;
    color: #155724 !important;
    /* border: 1px solid #c3e6cb; */
    border-radius: 4px;
    /* padding: 2px 6px !important; */
    /* margin: 2px 0; */
    /* display: inline-block; */
    /* font-family: monospace; */
    /* white-space: pre-wrap; */
    /* word-break: break-word; */
}

.detailed-removed, .detailed-added, .detailed-unchanged {
    margin-bottom: 4px;
    padding: 2px 0;
    font-family: monospace;
    font-size: 0.9em;
    line-height: 1.4;
}

.diff-marker {
    display: inline-block;
    width: 20px;
    text-align: center;
    margin-right: 8px;
    font-weight: bold;
}

.detailed-unchanged {
    color: #6c757d;
    padding-left: 28px;
}

#removedText, #addedText, #detailedComparison {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 12px;
    background-color: #f8f9fa;
}

#removedText {
    border-left: 4px solid #dc3545;
}

#addedText {
    border-left: 4px solid #28a745;
}

#detailedComparison {
    border-left: 4px solid #6c757d;
    font-size: 0.85em;
}

/* Hover effects for better UX */
.removed-content:hover, .added-content:hover {
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .removed-line, .added-line {
        margin-bottom: 6px;
    }

    .line-number {
        font-size: 0.8em;
        margin-right: 6px;
    }

    .removed-content, .added-content {
        padding: 1px 4px !important;
        font-size: 0.85em;
    }

    #removedText, #addedText, #detailedComparison {
        max-height: 200px;
        padding: 8px;
    }
}

