/* ══════════════════════════════════════════
   Gandhi Immigration – Canadian Immigration Page
   ══════════════════════════════════════════ */

/* ── Hero Section ── */
.gandhi-canimm-hero {
    padding: 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.gandhi-canimm-hero-inner {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 600px;
}

/* ── Left: Content ── */
.gandhi-canimm-content {
    flex: 0 0 50%;
    max-width: 50%;
    padding-top: 80px;
    padding-bottom: 0;
    padding-left: 0px;
    padding-right: 0px;
    display: flex;
    flex-direction: column;
}

/* ── Badge ── */
.gandhi-canimm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #F57D26;
    padding: 6px 16px;
    border: 1px solid #F57D26;
    border-radius: 30px;
    margin-bottom: 24px;
    align-self: flex-start;
}

.gandhi-canimm-badge-arrow {
    font-size: 8px;
}

.gandhi-canimm-badge-icon {
    font-size: 16px;
}

.gandhi-canimm-text-wrap {
    margin-left: 18%;
    margin-right: 5%;
}

/* ── Paragraphs ── */
.gandhi-canimm-para {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    margin: 0 0 18px;
}

/* ── Blue Info Box ── */
.gandhi-canimm-box {
    background: #01559E;
    border-radius: 0;
    padding: 30px 30px 40px;
    margin-top: 72px;
    color: #fff;
    padding-left: 18%;
}

.gandhi-canimm-box-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
    margin-top: -70px;
}

.gandhi-canimm-box-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* FontAwesome fallback */
.gandhi-canimm-box-icon--fa {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff3e0;
    border-radius: 50%;
}

.gandhi-canimm-box-icon--fa i {
    font-size: 38px;
    color: #F57D26;
}

.gandhi-canimm-box-heading {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 18px;
}

.gandhi-canimm-box-para {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 14px;
}

.gandhi-canimm-box-para:last-child {
    margin-bottom: 0;
}

.gandhi-canimm-box-para a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.gandhi-canimm-box-para a:hover {
    text-decoration: none;
}

/* ── Blue Box Bullet List (2-column grid) ── */
.gandhi-canimm-box-list {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}

.gandhi-canimm-box-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.gandhi-canimm-box-list li .gandhi-canimm-box-arrow {
    color: #fff;
    font-size: 8px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ── Right: Image (full-bleed to viewport edge) ── */
.gandhi-canimm-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}

.gandhi-canimm-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ══════════════════════════════════════════
   PR Programs Section
   ══════════════════════════════════════════ */

.gandhi-canimm-pr {
    padding: 80px 0;
    background: #fff;
}

.gandhi-canimm-pr-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.gandhi-canimm-pr-badge-wrap {
    margin-bottom: 20px;
}

.gandhi-canimm-pr-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #F57D26;
    padding: 6px 16px;
    border: 1px solid #F57D26;
    border-radius: 30px;
}

.gandhi-canimm-pr-badge-arrow {
    font-size: 8px;
}

.gandhi-canimm-pr-badge-icon {
    font-size: 16px;
}

.gandhi-canimm-pr-subtitle {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 50px;
}

/* ── 4-column grid ── */
.gandhi-canimm-pr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: left;
}

/* ── Card ── */
.gandhi-canimm-pr-card {
    background: #F9F9F9;
    border-radius: 5px;
    padding: 24px;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.gandhi-canimm-pr-card:hover {
    background: #01559E;
    box-shadow: 0 12px 35px rgba(1, 85, 158, 0.25);
    transform: translateY(-6px);
}

.gandhi-canimm-pr-card:hover .gandhi-canimm-pr-title {
    color: #ffffff;
}

.gandhi-canimm-pr-card:hover .gandhi-canimm-pr-desc {
    color: rgba(255, 255, 255, 0.9);
}

.gandhi-canimm-pr-card:hover .gandhi-canimm-pr-list li {
    color: rgba(255, 255, 255, 0.9);
}

.gandhi-canimm-pr-card:hover .gandhi-canimm-pr-list li i {
    color: #ffffff;
}

.gandhi-canimm-pr-card:hover .gandhi-canimm-pr-closing {
    color: #ffffff;
}

.gandhi-canimm-pr-card:hover .gandhi-canimm-pr-arrow {
    color: #ffffff;
}

.gandhi-canimm-pr-icon {
    width: 70px;
    height: 70px;
    background: #01559E;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.gandhi-canimm-pr-card:hover .gandhi-canimm-pr-icon {
    background: #F57D26;
    transform: scale(1.1);
}

.gandhi-canimm-pr-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.gandhi-canimm-pr-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin: 0 0 16px;
}

.gandhi-canimm-pr-desc {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0 0 12px;
}

.gandhi-canimm-pr-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gandhi-canimm-pr-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.gandhi-canimm-pr-arrow {
    color: #000;
    font-size: 8px;
    margin-top: 4px;
    flex-shrink: 0;
}

.gandhi-canimm-pr-closing {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .gandhi-canimm-tr {
        overflow: visible;
        background-image: none !important;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .gandhi-canimm-hero {
        overflow: visible;
    }

    .gandhi-canimm-hero-inner {
        flex-direction: column;
        min-height: auto;
    }

    /* Image first on mobile */
    .gandhi-canimm-hero-image {
        position: static;
        width: 100%;
        height: 280px;
        margin-top: 0;
        order: 1;
    }

    .gandhi-canimm-content {
        flex: none;
        max-width: 100%;
        width: 100%;
        padding-top: 30px;
        padding-left: 0;
        padding-right: 0;
        order: 2;
        text-align: center;
    }

    .gandhi-canimm-text-wrap {
        margin-left: 20px;
        margin-right: 20px;
    }

    .gandhi-canimm-badge {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }

    .gandhi-canimm-box {
        border-radius: 12px;
        margin-top: 30px;
        padding-left: 20px;
        padding-right: 20px;
        text-align: left;
    }

    .gandhi-canimm-box-icon {
        margin-top: 0;
    }

    .gandhi-canimm-box-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .gandhi-canimm-pr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gandhi-canimm-pr {
        padding: 50px 0;
    }

    .gandhi-canimm-pr-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gcards-track .gandhi-canimm-pr-card,
    .gcards-track .gandhi-canimm-pr-card *,
    .gcards-track .gandhi-fa-card,
    .gcards-track .gandhi-fa-card * {
        text-align: left !important;
    }

    .gcards-track .gandhi-canimm-pr-icon,
    .gcards-track .gandhi-fa-card-icon-wrap {
        margin-left: 0;
    }

    /* ── Remove hover effects on slider cards (mobile) ── */
    .gcards-track .gandhi-canimm-pr-card:hover {
        background: #ffffff;
        box-shadow: none;
        transform: none;
    }
    .gcards-track .gandhi-canimm-pr-card:hover .gandhi-canimm-pr-title,
    .gcards-track .gandhi-canimm-pr-card:hover .gandhi-canimm-pr-desc,
    .gcards-track .gandhi-canimm-pr-card:hover .gandhi-canimm-pr-list li,
    .gcards-track .gandhi-canimm-pr-card:hover .gandhi-canimm-pr-list li i,
    .gcards-track .gandhi-canimm-pr-card:hover .gandhi-canimm-pr-closing,
    .gcards-track .gandhi-canimm-pr-card:hover .gandhi-canimm-pr-arrow {
        color: inherit;
    }
    .gcards-track .gandhi-canimm-pr-card:hover .gandhi-canimm-pr-icon {
        background: #01559E;
        transform: none;
    }
}

/* ══════════════════════════════════════════
   Temporary Residence Section
   ══════════════════════════════════════════ */

.gandhi-canimm-tr {
    position: relative;
    background-color: #fff;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.gandhi-canimm-tr-inner {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.gandhi-canimm-tr-content {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gandhi-canimm-tr-content-wrap {
    margin-left: 18%;
    margin-right: 5%;
}

.gandhi-canimm-tr-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #F57D26;
    padding: 6px 16px;
    border: 1px solid #F57D26;
    border-radius: 30px;
    margin-bottom: 24px;
    align-self: flex-start;
}

.gandhi-canimm-tr-badge-arrow {
    font-size: 8px;
}

.gandhi-canimm-tr-badge-icon {
    font-size: 16px;
}

.gandhi-canimm-tr .gandhi-canimm-tr-intro {
    font-size: 14px;
    color: #333 !important;
    line-height: 1.7;
    margin: 0 0 24px;
}

.gandhi-canimm-tr-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gandhi-canimm-tr .gandhi-canimm-tr-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #000 !important;
    line-height: 1.5;
}

.gandhi-canimm-tr-arrow {
    color: #000000 !important;
    font-size: 8px;
    margin-top: 4px;
    flex-shrink: 0;
}

.gandhi-canimm-tr .gandhi-canimm-tr-closing {
    font-size: 14px;
    color: #333 !important;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .gandhi-canimm-tr {
        overflow: visible;
        background-image: none !important;
    }

    .gandhi-canimm-tr-inner {
        flex-direction: column;
        min-height: auto;
    }

    .gandhi-canimm-tr-content {
        flex: none;
        max-width: 100%;
        width: 100%;
        padding: 20px 20px;
        text-align: center;
        align-items: center;
    }

    .gandhi-canimm-tr-content-wrap {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .gandhi-canimm-tr-badge {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }

    .gandhi-canimm-tr .gandhi-canimm-tr-list li {
        text-align: left;
    }
}

/* ══════════════════════════════════════════
   Appeals & Additional Services – Shared Split Layout
   ══════════════════════════════════════════ */

.gandhi-canimm-split-section {
    padding: 80px 0;
    background: #fff;
}

.gandhi-canimm-split-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ── Image ── */
.gandhi-canimm-split-image {
    flex: 0 0 50%;
    max-width: 50%;
}

.gandhi-canimm-split-image {
    position: relative;
}

.gandhi-canimm-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    box-shadow: 1px 5px 0px 0px rgb(95 95 95 / 0%), 3px 5px 11px 3px rgb(0 0 0 / 40%);
}

/* ── Content ── */
.gandhi-canimm-split-content {
    flex: 1;
}

.gandhi-canimm-split-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #F57D26;
    padding: 6px 16px;
    border: 1px solid #F57D26;
    border-radius: 30px;
    margin-bottom: 24px;
}

.gandhi-canimm-split-badge-arrow {
    font-size: 8px;
}

.gandhi-canimm-split-badge-icon {
    font-size: 16px;
}

.gandhi-canimm-split-section .gandhi-canimm-split-heading {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

.gandhi-canimm-split-section .gandhi-canimm-split-intro {
    font-size: 14px;
    color: #333 !important;
    line-height: 1.7;
    margin: 0 0 20px;
}

.gandhi-canimm-split-section .gandhi-canimm-split-pre {
    font-size: 14px;
    font-weight: 600;
    color: #1A3668 !important;
    line-height: 1.6;
    margin: 0 0 12px;
}

.gandhi-canimm-split-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gandhi-canimm-split-section .gandhi-canimm-split-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #000 !important;
    line-height: 1.5;
}

.gandhi-canimm-split-arrow {
    color: #000000 !important;
    font-size: 8px;
    margin-top: 4px;
    flex-shrink: 0;
}

.gandhi-canimm-split-section .gandhi-canimm-split-closing {
    font-size: 14px;
    color: #333 !important;
    line-height: 1.7;
    margin: 0;
}

.gandhi-canimm-split-section .gandhi-canimm-split-closing + .gandhi-canimm-split-closing {
    margin-top: 12px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .gandhi-canimm-split-inner {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    /* Global Education: image first, text second on mobile */
    .gandhi-study-edu .gandhi-canimm-split-image  { order: 1; }
    .gandhi-study-edu .gandhi-canimm-split-content { order: 2; }

    /* Why Choose (Financial Aid addl): image first, text second on mobile */
    .gandhi-fa-addl .gandhi-canimm-split-image   { order: 1; }
    .gandhi-fa-addl .gandhi-canimm-split-content { order: 2; }

    /* Immigration Documentation & Compliance Support: image first on mobile */
    .gandhi-ais-docs .gandhi-canimm-split-image   { order: 1; }
    .gandhi-ais-docs .gandhi-canimm-split-content { order: 2; }

    /* Why Choose Gandhi Immigration Ltd.: image first on mobile */
    .gandhi-ais-addl .gandhi-canimm-split-image   { order: 1; }
    .gandhi-ais-addl .gandhi-canimm-split-content { order: 2; }

    /* Additional Canadian Immigration Services: image first on mobile */
    .gandhi-canimm-addl .gandhi-canimm-split-image   { order: 1; }
    .gandhi-canimm-addl .gandhi-canimm-split-content { order: 2; }

    /* International Immigration – Additional Services: image first on mobile */
    .gandhi-intl-addl .gandhi-canimm-split-image   { order: 1; }
    .gandhi-intl-addl .gandhi-canimm-split-content { order: 2; }

    .gandhi-canimm-split-image {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .gandhi-canimm-split-content {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gandhi-canimm-split-badge {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }

    .gandhi-canimm-split-section .gandhi-canimm-split-list li {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .gandhi-canimm-split-section {
        padding: 30px 0;
    }

    .gandhi-canimm-pr {
        padding: 40px 0;
    }

    .gandhi-canimm-pr-inner {
        padding: 0 20px;
    }
}

/* ══════════════════════════════════════════
   FAQ Section
   ══════════════════════════════════════════ */

.gandhi-canimm-faq {
    background: #f8fafd;
    padding: 90px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gandhi-canimm-faq.has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 40, 80, 0.75);
    pointer-events: none;
    z-index: 0;
}

.gandhi-canimm-faq.has-bg .gandhi-canimm-faq-inner {
    position: relative;
    z-index: 1;
}

.gandhi-canimm-faq.has-bg .gandhi-canimm-faq-heading {
    color: #fff;
}

.gandhi-canimm-faq.has-bg .gandhi-canimm-faq-item {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.gandhi-canimm-faq.has-bg .gandhi-canimm-faq-item.is-open {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: none;
}

.gandhi-canimm-faq.has-bg .gandhi-canimm-faq-q-text {
    color: #fff;
}

.gandhi-canimm-faq.has-bg .gandhi-canimm-faq-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.gandhi-canimm-faq.has-bg .gandhi-canimm-faq-item.is-open .gandhi-canimm-faq-icon {
    background: #F57D26;
}

.gandhi-canimm-faq.has-bg .gandhi-canimm-faq-answer {
    color: rgba(255, 255, 255, 0.85);
    border-top-color: rgba(255, 255, 255, 0.12);
}

.gandhi-canimm-faq-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.gandhi-canimm-faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.gandhi-canimm-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F57D26;
    background: rgba(245, 125, 38, 0.08);
    border: 1.5px solid rgba(245, 125, 38, 0.35);
    border-radius: 50px;
    padding: 7px 18px;
    margin-bottom: 16px;
}

.gandhi-canimm-faq-badge i {
    font-size: 12px;
}

.gandhi-canimm-faq-heading {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #111;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Two independent columns — each column is its own flex stack */
.gandhi-canimm-faq-columns {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.gandhi-canimm-faq-col {
    flex: 1;
    min-width: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gandhi-canimm-faq-item {
    background: #fff;
    border-radius: 10px;
    border: 1.5px solid #e8edf4;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.gandhi-canimm-faq-item:hover {
    border-color: #01559E;
    box-shadow: 0 6px 24px rgba(1, 85, 158, 0.12);
    transform: translateY(-3px);
}

.gandhi-canimm-faq-item:hover .gandhi-canimm-faq-q-text {
    color: #01559E;
}

.gandhi-canimm-faq-item:hover .gandhi-canimm-faq-icon {
    background: #01559E;
    color: #fff;
}

.gandhi-canimm-faq-item.is-open {
    border-color: #01559E;
    box-shadow: 0 4px 20px rgba(1, 85, 158, 0.08);
    transform: none;
}

.gandhi-canimm-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    height: 80px;
}

.gandhi-canimm-faq-q-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1A3668;
    line-height: 1.45;
    flex: 1;
}

.gandhi-canimm-faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f5fb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #01559E;
    font-size: 13px;
    transition: background 0.25s ease, transform 0.3s ease;
}

.gandhi-canimm-faq-item.is-open .gandhi-canimm-faq-icon {
    background: #01559E;
    color: #fff;
    transform: rotate(45deg);
}

.gandhi-canimm-faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: #444;
    line-height: 1.75;
    border-top: 1px solid #f0f4fa;
}

.gandhi-canimm-faq-item.is-open .gandhi-canimm-faq-answer {
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .gandhi-canimm-faq-columns {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .gandhi-canimm-faq {
        padding: 60px 0;
    }

    .gandhi-canimm-faq-inner {
        padding: 0 24px;
    }

    .gandhi-canimm-faq-heading {
        font-size: 24px;
    }

    .gandhi-canimm-faq-question {
        padding: 16px 18px;
    }

    .gandhi-canimm-faq-answer {
        padding: 0 18px 16px;
    }
}

@media (max-width: 480px) {
    .gandhi-canimm-faq-heading {
        font-size: 20px;
    }

    .gandhi-canimm-faq-q-text {
        font-size: 14px;
    }
}

/* ══════════════════════════════════════════
   Generic Cards Mobile Slider
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
    .gcards-slider {
        width: 100%;
        overflow: visible;
        position: relative;
        padding-bottom: 40px;
    }

    .gcards-clip {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        position: relative;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .gcards-track {
        display: flex;
        flex-wrap: nowrap;
        will-change: transform;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .gcards-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
    }

    .gcards-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: background 0.2s;
        display: inline-block;
    }

    .gcards-dot.active {
        background: #01559E;
    }
}

@media (max-width: 768px) {
    .page-template-template-canadian-immigration section {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .page-template-template-canadian-immigration .gandhi-canimm-faq,
    .page-template-template-canadian-immigration .gandhi-home-cta {
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .page-template-template-international-immigration section {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .page-template-template-international-immigration .gandhi-canimm-faq,
    .page-template-template-international-immigration .gandhi-home-cta {
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .page-template-template-study-abroad section {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .page-template-template-study-abroad .gandhi-canimm-faq,
    .page-template-template-study-abroad .gandhi-home-cta {
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .page-template-template-financial-aid section {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .page-template-template-financial-aid .gandhi-canimm-faq,
    .page-template-template-financial-aid .gandhi-home-cta {
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .page-template-template-additional-immigration section {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .page-template-template-additional-immigration .gandhi-canimm-faq,
    .page-template-template-additional-immigration .gandhi-home-cta {
        margin-top: 0;
        margin-bottom: 0;
    }
}
