/* Force Scrollbar */
html {
    overflow-y: scroll !important;
}

body {
    overflow-y: auto !important;
}

/* ============================================================
   StartTutors � Custom Styles
   ============================================================ */

/* -- Force Scrollbar Visibility ------------------------------ */
html {
    overflow-y: scroll !important;
    overflow-x: hidden;
}

body {
    overflow-y: auto !important;
    overflow-x: hidden;
}

/* -- Hero form ----------------------------------------------- */
.cs_hero_zip_form {
    margin: 0 auto 30px 0;
    background: var(--white-color);
    border-radius: 40px;
    padding: 6px 6px 6px 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    overflow: visible;
}

.cs_hero_zip_form select.form-select,
.cs_hero_zip_form input.form-control {
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cs_hero_zip_form select.form-select option {
    white-space: normal;
    padding: 8px 12px;
}

.cs_hero_zip_form select.form-select:focus,
.cs_hero_zip_form input.form-control:focus {
    box-shadow: none !important;
}

@media (max-width: 991px) {
    .cs_hero_zip_form {
        flex-direction: column !important;
        align-items: stretch !important;
        border-radius: 20px !important;
        padding: 16px !important;
        gap: 8px !important;
    }

    .cs_hero_zip_form .cs_divider {
        display: none !important;
    }

    .cs_hero_zip_form .cs_zip_field_wrapper,
    .cs_hero_zip_form .cs_service_field_wrapper {
        flex: 1 1 auto !important;
        width: 100% !important;
        padding: 8px 12px !important;
        margin-bottom: 8px !important;
        background: #F8FAFC !important;
        border: 1px solid #E2E8F0 !important;
        border-radius: 12px !important;
    }
}

/* -- University cards ---------------------------------------- */
.cs_university_card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cs_university_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1) !important;
}

/* -- Sample request modal � form inputs ---------------------- */
.cs_form_input,
.cs_form_select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--primary-color);
    background: #f8fafc;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: auto;
}

.cs_form_input:focus,
.cs_form_select:focus {
    border-color: var(--dark-green);
    box-shadow: 0 0 0 3px rgba(49, 101, 55, 0.12);
    background: var(--white-color);
}

.cs_form_input.is-invalid,
.cs_form_select.is-invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

textarea.cs_form_input {
    resize: vertical;
    min-height: 90px;
}

/* -- Modal step title / desc --------------------------------- */
.cs_step_title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.cs_step_desc {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* -- Form section title -------------------------------------- */
.cs_form_section_title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    margin: 20px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

/* -- Success icon -------------------------------------------- */
.cs_success_icon {
    width: 72px;
    height: 72px;
    background: var(--lightest-green);
    color: var(--dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}

/* -- Contact form field -------------------------------------- */
.cs_form_field {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--primary-color);
    background: #f8fafc;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cs_form_field:focus {
    border-color: var(--dark-green);
    box-shadow: 0 0 0 3px rgba(49, 101, 55, 0.1);
    background: #fff;
}

select.cs_form_field,
select.tom_select {
    appearance: auto;
    cursor: pointer;
}

/* -- Navbar active link indicator --------------------------- */
.cs_nav_list>li>a.active,
.cs_nav_list>li>a:hover {
    color: var(--accent-color, #a8d08d) !important;
}

/* ----------------------------------------------------------
   SAMPLE REQUEST MODAL � srt_ classes
---------------------------------------------------------- */

/* Overlay */
.srt_overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 16px;
    backdrop-filter: blur(3px);
}

.srt_overlay.active {
    display: flex;
}

/* Modal box */
.srt_modal {
    background: var(--white-color);
    border-radius: 20px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(37, 99, 235, 0.18);
    display: flex;
    flex-direction: column;
}

/* Header */
.srt_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px 16px;
    border-bottom: 1px solid #EFF6FF;
    flex-shrink: 0;
}

.srt_logo {
    font-size: 20px;
    font-weight: 800;
    color: #1E3A8A;
    font-family: var(--primary-font, sans-serif);
    letter-spacing: -0.4px;
}

.srt_logo span {
    color: #2563EB;
}

.srt_close {
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    padding: 0 4px;
    transition: color .2s;
}

.srt_close:hover {
    color: #0F172A;
}

/* Progress bar */
.srt_progress_track {
    height: 4px;
    background: #EFF6FF;
    flex-shrink: 0;
}

.srt_progress_fill {
    height: 100%;
    background: linear-gradient(90deg, #1E3A8A, #3B82F6);
    transition: width .35s ease;
    border-radius: 0 4px 4px 0;
}

/* Step indicators */
.srt_step_indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px 12px;
    gap: 0;
    flex-shrink: 0;
}

.srt_step_dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.srt_dot_num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #EFF6FF;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #DBEAFE;
    transition: all .25s;
}

.srt_dot_label {
    font-size: 10px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: color .25s;
}

.srt_step_dot.active .srt_dot_num {
    background: #2563EB;
    color: var(--white-color);
    border-color: #2563EB;
    box-shadow: 0 0 0 4px #DBEAFE;
}

.srt_step_dot.active .srt_dot_label {
    color: #2563EB;
}

.srt_step_dot.completed .srt_dot_num {
    background: #1E3A8A;
    color: var(--white-color);
    border-color: #1E3A8A;
}

.srt_step_dot.completed .srt_dot_label {
    color: #1E3A8A;
}

.srt_step_line {
    flex: 1;
    height: 2px;
    background: #DBEAFE;
    margin: 0 6px;
    margin-bottom: 14px;
    max-width: 40px;
}

/* Body */
.srt_body {
    padding: 4px 0 0;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Step header */
.srt_step {
    padding: 8px 28px 0;
}

.srt_step_header {
    margin-bottom: 20px;
}

.srt_step_title {
    font-size: 18px;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 6px;
    font-family: var(--primary-font, sans-serif);
}

.srt_step_desc {
    font-size: 13px;
    color: #465262;
    margin: 0;
    line-height: 1.55;
}

/* Fields */
.srt_field_group {
    margin-bottom: 18px;
}

.srt_label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 7px;
}

.srt_req {
    color: #dc2626;
    margin-left: 2px;
}

.srt_optional {
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
    margin-left: 4px;
}

.srt_hint {
    font-size: 12px;
    color: #94a3b8;
    margin: 5px 0 0;
}

.srt_input,
.srt_select,
.srt_textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #DBEAFE;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: #0F172A;
    background: #F8FBFF;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    box-sizing: border-box;
}

.srt_select {
    appearance: auto;
    cursor: pointer;
}

.srt_textarea {
    resize: vertical;
    min-height: 80px;
}

.srt_input:focus,
.srt_select:focus,
.srt_textarea:focus {
    border-color: #2563EB;
    background: var(--white-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.srt_input.srt_invalid,
.srt_select.srt_invalid,
.srt_textarea.srt_invalid {
    border-color: #dc2626 !important;
    background: #fff5f5 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

.srt_error {
    display: none;
    font-size: 12px;
    color: #dc2626;
    font-weight: 600;
    margin-top: 5px;
}

.srt_error::before {
    content: '? ';
}

/* Footer nav */
.srt_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px 24px;
    border-top: 1px solid #EFF6FF;
    margin-top: 8px;
    gap: 12px;
    flex-shrink: 0;
}

.srt_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 32px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all .2s;
    font-family: inherit;
}

.srt_btn_primary {
    background: linear-gradient(135deg, #1E3A8A, #2563EB);
    color: var(--white-color);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    margin-left: auto;
}

.srt_btn_primary:hover {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
    transform: translateY(-1px);
}

.srt_btn_ghost {
    background: #EFF6FF;
    color: #2563EB;
    border: 1.5px solid #DBEAFE;
}

.srt_btn_ghost:hover {
    background: #DBEAFE;
}

/* Loader screen */
.srt_loader_screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 28px;
    text-align: center;
}

.srt_spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #DBEAFE;
    border-top-color: #2563EB;
    border-radius: 50%;
    animation: srt_spin .75s linear infinite;
    margin-bottom: 20px;
}

@keyframes srt_spin {
    to {
        transform: rotate(360deg);
    }
}

.srt_loader_msg {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 6px;
}

.srt_loader_sub {
    font-size: 13px;
    color: #465262;
}

/* Confirmation screen */
.srt_confirm_screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 28px 36px;
    text-align: center;
}

.srt_confirm_icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #1E3A8A, #2563EB);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.srt_confirm_title {
    font-size: 22px;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 12px;
}

.srt_confirm_msg {
    font-size: 14px;
    color: #465262;
    line-height: 1.7;
    margin: 0 0 28px;
}

/* Review screen */
.srt_review_table {
    border: 1px solid #DBEAFE;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.srt_review_row {
    display: flex;
    border-bottom: 1px solid #EFF6FF;
    padding: 10px 16px;
    align-items: flex-start;
    gap: 12px;
}

.srt_review_row:last-child {
    border-bottom: none;
}

.srt_review_row:nth-child(odd) {
    background: #F8FBFF;
}

.srt_review_label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #465262;
    width: 130px;
    flex-shrink: 0;
    padding-top: 2px;
}

.srt_review_value {
    font-size: 13px;
    color: #0F172A;
    font-weight: 600;
    flex: 1;
}

.srt_review_edit_links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-bottom: 4px;
}

.srt_edit_link {
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    color: #2563EB;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: background .2s;
}

.srt_edit_link:hover {
    background: #DBEAFE;
}

/* Scrollbar � hidden but still scrollable */
.srt_modal {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.srt_modal::-webkit-scrollbar {
    display: none;
}

/* Disabled select */
.srt_select:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    background: #f1f5f9;
}

/* Responsive */
@media (max-width: 600px) {
    .srt_modal {
        border-radius: 16px 16px 0 0;
        align-self: flex-end;
        max-height: 92vh;
    }

    .srt_overlay {
        align-items: flex-end;
        padding: 0;
    }

    .srt_dot_label {
        display: none;
    }

    .srt_step_line {
        max-width: 24px;
    }
}

/* -- CTA Banner � fix image sizing -------------------------- */
/* Override style.css padding-based clipping so both images show fully */
.cs_cta_style_1 .cs_cta_thumbnail_1 {
    bottom: 0;
    left: 70px;
    width: auto;
    padding-right: 0;
    max-width: 220px;
}

.cs_cta_style_1 .cs_cta_thumbnail_1 img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
}

.cs_cta_style_1 .cs_cta_thumbnail_2 {
    bottom: 0;
    right: 70px;
    width: auto;
    padding-left: 0;
    max-width: 220px;
}

.cs_cta_style_1 .cs_cta_thumbnail_2 img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
}

@media (max-width: 1399px) {

    .cs_cta_style_1 .cs_cta_thumbnail_1,
    .cs_cta_style_1 .cs_cta_thumbnail_2 {
        max-width: 190px;
    }
}

@media (max-width: 1199px) {

    .cs_cta_style_1 .cs_cta_thumbnail_1,
    .cs_cta_style_1 .cs_cta_thumbnail_2 {
        max-width: 160px;
    }
}

@media (max-width: 991px) {

    .cs_cta_style_1 .cs_cta_thumbnail_1,
    .cs_cta_style_1 .cs_cta_thumbnail_2 {
        display: none;
    }
}


/* -- Footer 3-Column Layout ---------------------------------- */
.cs_footer_style_1 .cs_footer_main {
    padding: 20px 0 0;
}

.cs_footer_widget,
.cs_footer_widget_logo {
    height: 100%;
}

.cs_widget_title {
    position: relative;
    padding-bottom: 12px;
}

.cs_widget_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.cs_footer_menu_vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cs_footer_menu_vertical li a {
    display: block;
    padding: 6px 0;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.cs_footer_menu_vertical li a:hover {
    color: var(--accent-color) !important;
    padding-left: 8px;
}

.cs_footer_menu_vertical li a::before {
    content: '?';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent-color);
}

.cs_footer_menu_vertical li a:hover::before {
    left: 0;
    opacity: 1;
}

.cs_contact_info_list li {
    margin-bottom: 0;
}

.cs_contact_info_list a {
    transition: color 0.3s ease;
    text-decoration: none;
}

.cs_contact_info_list a:hover {
    color: var(--accent-color) !important;
}

.cs_footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .cs_footer_style_1 .cs_footer_main {
        padding: 20px 0 0;
    }

    .cs_footer_widget_logo {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-bottom: 40px;
    }

    .cs_footer_widget_logo .cs_footer_desc {
        max-width: 410px !important;
        text-align: center;
    }

    .cs_footer_bottom {
        margin-top: 20px;
        padding-top: 20px;
    }
}


/* -- Footer Clean Style -------------------------------------- */
.cs_footer_links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cs_footer_links li a {
    opacity: 0.85;
    transition: all 0.3s;
}

.cs_footer_links li a:hover {
    opacity: 1;
    padding-left: 6px;
}

.cs_footer_contact li {
    display: flex;
    align-items: flex-start;
}

.cs_footer_contact a,
.cs_footer_contact span {
    opacity: 0.85;
    transition: opacity 0.3s;
    margin-bottom: 5px;
}

.cs_footer_contact a:hover {
    opacity: 1;
}


/* -- How It Works Section - Prevent Scroll Jump --------------- */
.cs_steps_thumbnails_wrapper {
    position: relative;
}

.cs_step_thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.cs_step_thumbnail.cs_active_thumbnail {
    position: absolute;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease-in-out;
    pointer-events: auto;
    z-index: 1;
}

.cs_step_thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .cs_steps_thumbnails_wrapper {
        min-height: auto !important;
        position: static;
    }

    .cs_step_thumbnail {
        position: static !important;
        margin-bottom: 20px;
    }

    .cs_step_thumbnail.cs_active_thumbnail {
        position: static !important;
    }

    /* Hide inactive thumbnails on mobile */
    .cs_step_thumbnail:not(.cs_active_thumbnail) {
        display: none;
    }
}


/* -- Custom Scrollbar Styling -------------------------------- */
/* For Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #EFF6FF;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #2563EB, #1E40AF);
    border-radius: 10px;
    border: 2px solid #EFF6FF;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1E40AF, #1E3A8A);
}

::-webkit-scrollbar-thumb:active {
    background: #1E3A8A;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #2563EB #EFF6FF;
}

/* Horizontal scrollbar */
::-webkit-scrollbar-horizontal {
    height: 8px;
}

/* Corner where vertical and horizontal scrollbars meet */
::-webkit-scrollbar-corner {
    background: #EFF6FF;
}


/* -- Fix Hero Form Select Dropdown Arrow --------------------- */
#hero-sample-form .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23316537' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px 14px;
    padding-right: 40px !important;
}

#hero-sample-form .form-select:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Remove default browser select arrow */
#hero-sample-form .form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* -- Satisfaction Badge Responsive ----------------------------- */
.cs_satisfaction_badge {
    position: absolute;
    top: 20px;
    right: 12px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0px 10px;
    border-radius: 12px;
    z-index: 2;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(29, 78, 216, 0.15);
}

/* Mobile responsive */
@media (max-width: 767px) {
    .cs_satisfaction_badge {
        font-size: 8px;
        padding: 0px 8px;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    .cs_satisfaction_badge {
        font-size: 7px;
    }
}