.image_head {
    border-radius: 10px;
}

.head_card {
    padding: 12px;
}

.form-container {
    max-width: 400px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.login-link a {

    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

.form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 16px;
    transition: border-color 0.3s ease;
}

.phone-input-group {
    display: flex;
    margin-bottom: 16px;
}

.country-code {
    background: white;
    border: 1px solid #e0e0e0;
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    font-size: 14px;
}

.phone-input {
    border-radius: 0 8px 8px 0 !important;
    border-left: none !important;
    flex: 1;
    margin-bottom: 0 !important;
}

.gstin-checkbox {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #495057;
}

/* Custom Toggle Switch */
.custom-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.custom-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: 26px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.switch-label {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.whatsapp-icon {
    color: #25D366;
    font-size: 19px;
}

.btn-get-started {
    background: #28a745;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 14px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-get-started:hover {
    background: #218838;
}

.flag-icon {
    width: 20px;
    height: 15px;
    background: linear-gradient(to bottom, #ff9933 33%, white 33%, white 66%, #138808 66%);
    border-radius: 2px;
    position: relative;
}

.flag-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iNCIgc3Ryb2tlPSIjMDAwMDgwIiBzdHJva2Utd2lkdGg9IjAuNSIgZmlsbD0ibm9uZSIvPgo8cGF0aCBkPSJNMTIgOEwxMy41IDEwLjVIMTZMMTQgMTJMMTUuNSAxNC41SDEyTDEwLjUgMTIuNUw4IDEyTDEwLjUgOS41SDEyWiIgZmlsbD0iIzAwMDA4MCIvPgo8L3N2Zz4K') center/contain no-repeat;
}

.related-guides {
    background-color: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.related-guides h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.guide-link {
    display: block;
    color: #2563eb;
    text-decoration: none;
    padding: 12px 0;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.2s ease;
    border-bottom: 1px solid #e5e7eb;
}

.guide-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.guide-link:last-child {
    border-bottom: none;
}

.table-container {
    overflow-x: auto;
    position: relative;
}

.compare_heading {
    color: #000;
    font-weight: 600;
    font-size: 22px;
    line-height: 29px;
    text-align: center;

}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 800px;
    /* Ensures horizontal scroll on smaller screens */
    border: 1px solid #e2e8f0;
}

.comparison-table thead th {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .625rem;
    padding-bottom: .625rem;
    background-color: rgb(226 232 240);

    font-weight: 500;
    font-size: 13px;
    line-height: 1.125rem;
    vertical-align: middle;
    text-align: left;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table tbody tr td {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .75rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}

.comparison-table tbody tr:hover {
    background-color: #f7fafc;
}

.parameter {
    font-weight: 500;
    color: #2d3748;
    background-color: rgb(226 232 240);
    font-size: 14px;
    line-height: 21.25px;
}

.pros {
    color: #38a169;
    font-size: 12px;
}

.cons {
    color: #e53e3e;
    font-size: 12px;
}

.neutral {
    color: #718096;
}

.highlight {
    background-color: #e6fffa;
    border-left: 4px solid #38b2ac;
}

.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-high {
    background-color: #fed7d7;
    color: #c53030;
}

.badge-medium {
    background-color: #fefcbf;
    color: #d69e2e;
}

.badge-low {
    background-color: #c6f6d5;
    color: #2f855a;
}

.badge-none {
    background-color: #e2e8f0;
    color: #4a5568;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .compare_heading {
        color: #000;
        font-weight: 600;
        font-size: 22px;
        line-height: 29px;
        text-align: center;

    }

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table thead th {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .comparison-table tbody tr td {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        padding-top: 0.625rem;
        padding-bottom: 0.625rem;
    }

    /* Add scroll indicator for mobile */
    .table-container::after {
        content: '← Scroll horizontally to see more →';
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 5px 10px;
        border-radius: 15px;
        font-size: 11px;
        white-space: nowrap;
        opacity: 0.8;
        pointer-events: none;
    }
}

@media (max-width: 480px) {
    .comparison-table {
        font-size: 12px;
        min-width: 700px;
    }

    .comparison-table thead th {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .comparison-table tbody tr td {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

/* Custom scrollbar for webkit browsers */
.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.doc-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card_doc {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 20px 24px;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card_doc.left .item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.card_doc.left .item:last-child {
    border-bottom: none;
}

.card_doc.left .item-title {
    font-weight: 600;
    color: #0b0c36;
    margin-bottom: 6px;
}

.card_doc.left .item-desc {
    color: #555;
    font-size: 15px;
}

.card_doc.right .link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    color: #1a73e8;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.card_doc.right .link-item:hover {
    color: #0b53c0;
}

.card_doc.right .link-item:last-child {
    border-bottom: none;
}

.count-badge {
    background: #1a73e8;
    color: white;
    width: 28px;
    height: 28px;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

@media (max-width: 768px) {
    .doc-section {
        flex-direction: column;
        align-items: stretch;
    }
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 11.6px;
    border-radius: 4px;
    /* 0.25rem */
    padding: 8px 8px;
    /* 0.5rem each */
    border: 1px solid transparent;
    font-weight: 500;
    font-size: 11.6px;
    /* 0.6875rem */
    color: #489CFF;
    /* fallback for var(--tw-gray-700) */
    background-color: #F1F1F4;
    /* fallback for var(--tw-gray-200) */
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.badge-sm {
    padding: 5px 6px;
    /* .3125rem .375rem → 5px 6px */
}

.badge:hover {
    background-color: #d1d5db;
}

@media (max-width: 768px) {


    .badge {
        font-size: 12px;
        padding: 6px 8px;
    }
}

.h1_ark {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
    padding-top: 20px;
    border: transparent;
    line-height: 2.12rem;
    font-family: system-ui;
}

.second_card {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: var(--tw-gray-200);
}

.ark_para {
    font-size: 13.9px;
    line-height: 23.48px;
    text-align: justify;
    margin-bottom: 12px;
    color: #4B5675;
    padding: 0 22px;
    word-spacing: normal;
    font-weight: 400;
    font-family: system-ui;
}

.h2_ark {
    font-size: 1.625rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
    padding: 0 22px;
    border: transparent;
    line-height: 2.12rem;
    font-family: system-ui;
}

.ark_li {
    font-size: 13.9px;
    line-height: 23.48px;
    text-align: justify;
    margin-bottom: 4px;
    color: #4B5675;
    padding-inline-start: 20px;
    word-spacing: normal;
    font-weight: 400;
}

.ark_strong {
    font-weight: bolder;
}

.accordion .ac-item .ac-title {
    font-weight: 500;
    position: relative;
    padding-right: 10px;
    margin: 0;
    font-size: 16px;
    color: #071437;
    margin-bottom: 1rem;
    line-height: 1;
}

.faq_card {
    border-radius: 5px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    background-color: #ffffff;
    border: 1px solid #dee2e6;

}

.faq_answer {
    font-size: 15px;
    line-height: 22px;
    color: #4B5675;
    font-weight: normal;
    margin-bottom: 1rem;
}

.badge_card {
    display: flex;

    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);

    background-color: #ffffff;

    border-radius: 12px;

    border: 1px solid #e5e7eb;

    padding: 30px;
}