@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200..800&amp;family=Roboto:wght@100;300;400;500;700;900&amp;display=swap');

:root {
    --body-font: 'Roboto', sans-serif;
    --heading-font: "Plus Jakarta Sans", sans-serif;
    --theme-color: #2e8bcb;
    --theme-color2: #3DCAB1;
    --theme-bg-light: #EAF8FF;
    --body-text-color: #606162;
    --color-white: #ffffff;
    --color-dark: #0A1D43;
    --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
    --transition: all .5s ease-in-out;
    --transition2: all .3s ease-in-out;
    --border-info-color: rgba(0, 0, 0, 0.08);
    --border-info-color2: rgba(0, 0, 0, 0.05);
    --border-white-color: rgba(255, 255, 255, 0.08);
    --border-white-color2: rgba(255, 255, 255, 0.05);
    --footer-bg: #03163B;
    --footer-bg2: #0A1D43;
    --footer-text-color: #F5FAFF;
}

body {
    font-family: var(--body-font);
    font-style: normal;
    font-size: 18px;
    font-weight: normal;
    color: var(--body-text-color);
    line-height: 1.8;
}

.content-section {
    padding-top: 20px;
/*    min-height: 500px;*/
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-nav {
    position: sticky;
    top: 100px;
    z-index: 3;
    padding: 7px 0px 20px 0px;
    transition: all 0.3s ease;
    margin-top: 40px;
}

/* Mobile Responsive - Remove margin-bottom */
@media (max-width: 768px) {
    .sticky-nav {
        margin-bottom: -50px; /* Removes negative margin on mobile */
    }
}

.nav-container {
    max-width: 1255px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Updated property */
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    position: relative;
    background: rgb(230 242 255 / 1);
    border: 1px solid rgb(191 219 254);
    border-radius: 100px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    outline: 10px solid white;
}


    .nav-container::-webkit-scrollbar {
        display: none;
    }

.nav-item-services {
    color: var( --color-dark);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 18px;
    position: relative;
}

    /* .nav-item-services:hover {
  background: rgba(0, 122, 255, 0.1);
  color: #118ee2;;
} */

    .nav-item-services.active {
        background: #118ee2; 
        color: white;
        box-shadow: 0 2px 4px rgba(0, 122, 255, 0.2);
    }

        .nav-item-services.active::after {
            content: '';
            position: absolute;
            bottom: -0.25rem;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
        }

.clours {
    color: var(--theme-color);
    font-weight: 800;
}

/* Enhanced Table Styles */
.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: white;
    border: 1px solid #eef2f7;
}


    table {
    width: 100%;
    border-collapse: collapse; /* Ensures borders are merged */
    background: white;
    margin: 0;
}

/* Add light borders for all td, th, tr */
th, td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    line-height: 1.6;
    border: 1px solid #dee2e6;
}

th {
    background: #f8fafc;
    font-weight: 600;
    color: black;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #eef2f7; /* Stronger border for header bottom */
}

td {
    color: var(--body-text-color);
    font-size: 18px;
    transition: background-color 0.2s ease;
}

/* Zebra striping for better readability */
tr:nth-child(even) {
    background-color: #f8fafc;
}

tr:hover td {
    background-color: var(--theme-bg-light);
}

/* First column styling for better hierarchy */
tr td:first-child,
tr th:first-child {
    font-weight: 500;
    color: black;

}

/* Comparison table specific styles */
.comparison-table th {
    background: var(--theme-bg-light);
    color: var(--body-text-color);
    text-align: center;
}

.comparison-table td {
    text-align: center;
}

.comparison-table tr td:first-child {
    text-align: left;
    background: #f8fafc;
}

/* Documents table specific styles */
.documents-table th:nth-child(2),
.documents-table td:nth-child(2) {
    width: 30%;
}

.documents-table th:last-child,
.documents-table td:last-child {
    width: 30%;
    font-style: italic;
}

/* Content section styling */
.content-section h2 {
    color: var( #0A1D43);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.content-section p {
    color: var( --body-text-color);
    margin-bottom: 1.5rem;
}

.content-section ul,
.content-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: var( --body-text-color);
}

.feature-card {
    border-radius: 10px;
}
/* FAQ styling */
.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

    .faq-item h3 {
        color: var( --body-text-color);
        margin-bottom: 0.75rem;
        font-size: 1.25rem;
    }

    .faq-item p {
        margin-bottom: 0;
    }

@media (max-width: 768px) {
    .nav-container {
        max-width: 95%;
        padding: 0.5rem;
        gap: 0.5rem;
        top: -28px;
    }

    .nav-item-services {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .content-section {
        padding: 2rem 1rem;
    }

    th, td {
        padding: 1rem;
        font-size: 0.875rem;
    }

    th {
        white-space: nowrap;
    }

    .content-section h2 {
        font-size: 1.75rem;
    }

    .faq-item {
        padding: 1rem;
    }

    
}

@media (max-width: 480px) {
    .nav-container {
        max-width: 90%;
        border-radius: 50px;
    }

    .nav-item-services {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }

    th, td {
        padding: 0.875rem;
        font-size: 0.8125rem;
    }
}

.gradient-line {
    height: 4px;
    background-image: linear-gradient( to right, #118ee2, #ffffff);
    margin-top: 5px;
    margin-bottom: 5px;
}




/* General Container */
.registration-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
}

.step-card {
    background: linear-gradient(to top, #eef6ffb5, #ffffff);
    border: 1px solid #b0d4ff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3sease;
    box-shadow: 6px 5px 5px lightblue;
    margin: 0 auto;
}

    .step-card:hover {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.step-description {
    font-size: 18px;
    color: #616263;
    margin-bottom: 10px;
}

.step-list {
    list-style-type: none;
    padding-left: 0;
}

    .step-list li {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }

    .step-list .list-icon {
        width: 30px; /* Adjust the icon size */
        height: 30px; /* Adjust the icon size */
        margin-right: 10px; /* Space between icon and text */
    }


/* Custom Checkmark List Style */
.step-list {
    list-style-type: none;
    padding-left: 0;
}

    .step-list li {
        position: relative;
        font-size: 18px;
        color: var(--body-text-color);
        margin-bottom: 10px;
    }

.custom-check-icon {
    color: #2e8bcb;
}



.step-card ul li {
    margin-bottom: 5px;
}


/* Process Steps - Desktop */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 60px auto 80px;
    padding: 0;
}

    /* Horizontal Line */
    .steps-container::before {
        content: '';
        position: absolute;
        width: 88%;
        height: 4px;
        background: linear-gradient(to right, #2e8bcb, #4da8e5, #2e8bcb);
        top: 30px; /* Position line at the center of the step icons */
        left: 6%;
        z-index: 0;
        border-radius: 4px;
    }

/* Individual Step */
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 16.66%;
    padding: 0 10px;
    box-sizing: border-box;
    transition: var(--transition);
}

    .step:hover .step-icon {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(46, 139, 203, 0.4);
    }

    .step:hover .step-content {
        transform: translateY(5px);
        color: var(--theme-color-dark);
        background-color: #d9eaff;
    }

/* Step Icon */
.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2e8bcb, #4da8e5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 4px 10px rgba(46, 139, 203, 0.3);
    transition: var(--transition);
    border: 4px solid white;
}

/* Step Content */
.step-content {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    background-color: var(--theme-color-light);
    padding: 2px 0px;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 140px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

h3 {
    color: black;
}

strong {
    color: black;
}



/* Tablet Responsive Styles */
@media (max-width: 992px) {
    .site-title {
        font-size: 28px;
    }

    .steps-container {
        max-width: 800px;
    }

        .steps-container::before {
            top: 25px;
        }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .step-content {
        font-size: 15px;
        max-width: 120px;
        padding: 8px 12px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .site-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .steps-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        margin: 40px auto 60px;
        position: relative;
        max-width: 500px;
    }

        .steps-container::before {
            display: none; /* Remove the horizontal line */
        }

    /* Add connecting lines between steps */
    .step {
        width: 100%;
        position: relative;
        padding: 0;
    }

        /* Add step number to the background */
        .step::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(46, 139, 203, 0.03);
            border-radius: 10px;
            z-index: -1;
        }

    .step-icon {
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .step-content {
        max-width: 100%;
        width: 90%;
        margin-bottom: 15px;
    }



    /* Small Mobile Responsive Styles */
    @media (max-width: 576px) {
        .content-section {
            padding: 30px 15px;
        }

        .site-title {
            font-size: 22px;
        }

        .steps-container {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .step {
            display: flex;
            flex-direction: row;
            align-items: center;
            text-align: left;
            background-color: rgba(46, 139, 203, 0.05);
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

            .step::after {
                display: none;
            }

        .step-icon {
            width: 45px;
            height: 45px;
            font-size: 18px;
            margin: 0 15px 0 0;
            flex-shrink: 0;
        }

        .step-content {
            text-align: left;
            background: none;
            box-shadow: none;
            padding: 0;
            margin: 0;
            font-size: 16px;
            max-width: none;
            width: auto;
            min-height: auto;
        }

        .step-card {
            padding: 15px;
        }
    }
}


/* Button Fixed at Bottom */
.fixed-bottom-button {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.13);
    text-align: center;
    z-index: 999; /* Ensures it stays above other content */
    display: none; /* Hide the button by default */
}

    .fixed-bottom-button button {
        cursor: pointer;
        width: 90%;
        margin: 10px;
        padding: 15px 20px;
        background-color: #2e8bcb; /* Button color */
        border-radius: 10px;
        font-size: 18px;
        font-weight: bold;
        color: white;
        border: none;
    }

/* Show the button only on mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    .fixed-bottom-button {
        display: block; /* Show the button on mobile view */
    }

        .fixed-bottom-button button {
            font-size: 16px;
            padding: 12px 18px;
        }
}

/* Floating Input Styles */
.floating-input {
    background: transparent;
    border: 1px solid #ccc;
    padding: 12px 8px 12px 8px;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

    .floating-input:focus {
        border-color: #4caf50;
        outline: none;
        padding-top: 22px; /* Space for placeholder */
    }

        .floating-input:focus::placeholder {
            top: -10px;
            left: 8px;
            font-size: 12px;
            color: #4caf50;
            font-weight: bold;
        }

    .floating-input::placeholder {
        color: transparent;
        position: absolute;
        top: 15px;
        left: 8px;
        font-size: 14px;
        transition: all 0.3s ease-in-out;
    }

/* Toggle Switch Style */
.form-check-input {
    appearance: none;
    background-color: #ccc;
    width: 34px;
    height: 18px;
    border-radius: 50px;
    position: relative;
    transition: 0.3s;
    cursor: pointer;
}

    .form-check-input:checked {
        background-color: #4caf50;
    }

        .form-check-input:checked::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: white;
            transition: 0.3s;
        }

        .form-check-input:checked::before {
            left: 18px; /* Move the circle to the right when checked */
        }

    .form-check-input:focus {
        outline: none;
        box-shadow: none;
    }

.form-check-label {
    font-size: 14px;
    font-weight: normal;
    color: black;
}

/* Responsive styling for mobile */
@media (max-width: 767px) {
    .col-xl-4, .col-lg-4 {
        width: 100%;
        padding: 10px;
    }

    form {
        padding: 15px;
        max-width: 100%;
    }

    .btn {
        width: 100%;
        padding: 12px;
    }

    .form-check-label {
        font-size: 12px; /* Smaller font size on mobile */
    }
}
/* Floating Input Styles */
.floating-input {
    background: transparent;
    border: 1px solid #ccc;
    padding: 12px 8px 12px 8px;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

    .floating-input:focus {
        border-color: #4caf50;
        outline: none;
        padding-top: 22px; /* Space for placeholder */
    }

        .floating-input:focus::placeholder {
            top: -10px;
            left: 8px;
            font-size: 12px;
            color: #4caf50;
            font-weight: bold;
        }

    .floating-input::placeholder {
        color: transparent;
        position: absolute;
        top: 15px;
        left: 8px;
        font-size: 14px;
        transition: all 0.3s ease-in-out;
    }

/* Toggle Switch Style */
.form-check-input {
    appearance: none;
    background-color: #ccc;
    width: 34px;
    height: 18px;
    border-radius: 50px;
    position: relative;
    transition: 0.3s;
    cursor: pointer;
}


    /* hero page */

    /* Overall Container Styling */

    .form-check-input:checked {
        background-color: #4caf50;
    }

        .form-check-input:checked::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: white;
            transition: 0.3s;
        }

        .form-check-input:checked::before {
            left: 18px; /* Move the circle to the right when checked */
        }

    .form-check-input:focus {
        outline: none;
        box-shadow: none;
    }

.form-check-label {
    font-size: 14px;
    font-weight: normal;
    color: black;
}

/* Responsive styling for mobile */
@media (max-width: 767px) {
    .col-xl-4, .col-lg-4 {
        width: 100%;
        padding: 10px;
    }

    form {
        padding: 15px;
        max-width: 100%;
    }

    .btn {
        width: 100%;
        padding: 12px;
    }

    .form-check-label {
        font-size: 12px; /* Smaller font size on mobile */
    }
}

.containerservice {
    display: flex;
    gap: 20px;
    padding: 40px;
    align-items: flex-start;
    justify-content: center;
    background: #f0f8ff; /* Light blue background */
}

/* Left Content Section */
.service-contents {
    padding: 30px;
    border-radius: 10px;
    flex: 1;
}

/* Medium Screens (Tablets) */
@media (max-width: 1024px) {
    .service-contents {
        padding: 10px;
    }
}

/* Small Screens (Mobile) */
@media (max-width: 768px) {
    .service-contents {
        padding: 9px;
    }
}

.service-titles {
    color: #000000;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.service-contents p {
    color: #000000;
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-lists {
    list-style: none;
    padding: 0;
}

    .service-lists li {
        font-size: 19px;
        color: #000;
    }

    .service-lists i {
        color: #118ee2;
        margin-right: 8px;
    }

/* Right Form Section */
.service-form {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 350px;
}

    .service-form input {
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 14px;
        width: 100%;
    }

button {
    background: #118ee2;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}


.whatsapp-lab {
    font-size: 15px;
}

/* Toggle Switch */
.whatsapp-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 30px; /* Reduced width */
    height: 16px; /* Reduced height */
}

    .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 16px;
    transition: 0.3s;
}

.toggle-switch input:checked + .slider {
    background-color: #118ee2;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px; /* Reduced size */
    width: 12px; /* Reduced size */
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + .slider:before {
    transform: translateX(14px); /* Adjusted for new size */
}


/* Medium Screens (Tablets) */
@media (max-width: 1024px) {
    .service-titles {
        font-size: 32px;
    }
}

/* Small Screens (Mobile) */
@media (max-width: 768px) {
    .service-titles {
        font-size: 28px;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .service-titles {
        font-size: 24px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .containerservice {
        margin-left: 5%;
        margin-right: 5%;
    }
}

@media (max-width: 1024px) {
    .containerservice {
        flex-direction: column;
        align-items: center;
        padding: 30px;
        margin-left: 5%;
        margin-right: 5%;
    }

    .service-contents {
        max-width: 90%;
    }

    form {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .containerservice {
        padding: 20px;
        margin-left: 2%;
        margin-right: 2%;
        padding-top: 110px;
    }

    .service-contents, form {
        max-width: 100%;
    }
}


/* google review */

/* Google Review Container */
.google-review-container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-top: 41px;
}

/* Google Review Link */
.google-review-link {
    text-decoration: none;
    color: inherit;
}

/* Google Review Box */
.google-review-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: transparent;
    padding: 10px;
}

/* Google Logo */
.google-logo {
    width: 52px;
    height: 52px;
}

/* Google Review Text */
.google-review-text {
    display: flex;
    flex-direction: column;
}

/* Google Review Title */
.google-review-title {
    font-weight: 500;
    font-size: 18px;
    color: #231F20;
    margin-bottom: 4px;
}

/* Google Review Details */
.google-review-details {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #606162;
    font-weight: 500;
}

/* Google Rating Image */
.google-rating-img {
    width: 92px;
    height: 16px;
}

/* Google Review Info */
.google-review-info {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Google Rating */
.google-rating {
    padding-right: 10px;
    border-right: 1px solid #CACED1;
    font-size: 12px;
}

/* Google Review Count */
.google-review-count {
    font-size: 12px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .google-review-box {
        flex-direction: row;
        align-items: center;
        text-align: center;
    }

    .google-review-title {
        font-size: 16px;
    }

    .google-review-details {
        flex-direction: column;
        gap: 4px;
    }
}


/* document popup section */

/* Document Section */
.document-section {
    background: #f5faff;
    padding: 20px;
    border-radius: 10px;
    max-width: 420px;
    text-align: left;
    font-size: 12px;
}

/* Title */
.document-title {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #231F20;
    gap: 10px;
    margin-bottom: 10px;
}

/* Category */
.document-category {
    background: #e6f2ff;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Document List */
.document-list {
    list-style: disc;
    padding-left: 20px;
    font-size: 14px;
    color: #606162;
}

    .document-list li {
        margin-bottom: 5px;
        cursor: pointer;
    }

/* View All Button */
.view-all {
    cursor: pointer;
    color: #007aff;
    font-weight: 600;
    text-decoration: underline;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    background: white;
    padding: 15px;
    border-radius: 8px;
/*    width: 100%;*/
    max-width: 1200px;
    text-align: center;
    position: relative;
    font-size: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.popup-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 18px;
    cursor: pointer;
    color: red;
}

/* Table Styles */
.document-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 12px;
}

    .document-table th, .document-table td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: left;
        font-size: 15px;
    }

    .document-table thead {
        background-color: #EDF6FF;
    }

    .document-table th {
        font-weight: bold;
        background-color: #e3f2fd;
        color: #333;
    }

    .document-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

/* Responsive */
@media (max-width: 768px) {
    .document-section {
        padding: 10px;
        max-width: 95%;
    }

    .popup-content {
        width: 95%;
        max-width: 100%;
        font-size: 10px;
        padding: 10px;
    }

    .popup-title {
        font-size: 12px;
    }

    .document-table {
        font-size: 10px;
    }

        .document-table th, .document-table td {
            font-size: 10px;
            padding: 5px;
        }

    .document-title {
        font-size: 13px;
    }

    .document-category {
        font-size: 10px;
    }

    .view-all {
        font-size: 12px;
    }
}

/* Extra Small Devices (Mobile under 480px) */
@media (max-width: 480px) {
    .document-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .popup-content {
        padding: 8px;
    }

    .document-title {
        font-size: 12px;
    }

    .document-category {
        font-size: 10px;
    }

    .view-all {
        font-size: 11px;
    }
}


/* Popup container - can be anything you want */
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* The actual popup */
    .popup .popuptext {
        visibility: hidden;
        width: 160px;
        background-color: #555;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 8px 0;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        margin-left: -80px;
    }

        /* Popup arrow */
        .popup .popuptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }

    /* Toggle this class - hide and show the popup */
    .popup .show {
        visibility: visible;
        -webkit-animation: fadeIn 1s;
        animation: fadeIn 1s;
    }

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.terms-link {
    text-decoration: underline;
    color: blue;
}

    .terms-link:hover {
        color: darkblue;
    }



/*Income Tax Calculator Banner*/

.calculator-banner {
    max-width: 1257px;
    background-color: #f0f7ff;
    margin: 40px auto;
    padding: 40px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.cal-banner-image img {
    width: 300px;
    height: auto;
}

.cal-banner-content {
    max-width: 500px;
    text-align: left;
}

    .cal-banner-content h1 {
        color: #007aff;
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .cal-banner-content p {
        color: #606162;
        font-size: 18px;
        margin-bottom: 30px;
    }

.ctac-button {
    background-color: #007aff;
    color: #f0f7ff;
    font-weight: bold;
    font-size: 18px;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}



@media (max-width: 768px) {
    .calculator-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cal-banner-content {
        text-align: center;
    }

    .cal-banner-image img {
        width: 200px;
    }
}






/* Trademark Page Span Styles */
.money-back-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #2563eb;
    border-radius: 10px;
    padding: 4px 8px;
    width: fit-content;
    color: #fff;
    font-size: 10px;
}

@media (min-width: 768px) {
    .money-back-badge {
        font-size: 14px;
        padding: 4px 10px;
    }
}

.tick-icon {
    display: inline;
    width: 15px;
    height: 15px;
}

