/* =====================================================================
   SITE ENHANCEMENT STYLESHEET
   Premium visual upgrade for the Home (Index) page sections:
   About Us · What We Do · Other Services · Testimonials · Gallery · Videos
   Loaded LAST in _Layout.cshtml so it layers on top of style.css.
   Fully responsive (web + mobile). Brand: #00529c (navy) + #07bf6f (green).
   ===================================================================== */

:root {
    --vk-navy: #00529c;
    --vk-navy-dark: #023a6e;
    --vk-green: #07bf6f;
    --vk-green-dark: #009454;
    --vk-gold: #c9a24b;
    --vk-ink: #243746;
    --vk-muted: #5c6b78;
    --vk-line: #e7ecf1;
    --vk-card-shadow: 0 18px 40px -18px rgba(16, 42, 67, 0.35);
    --vk-card-shadow-hover: 0 28px 55px -20px rgba(0, 82, 156, 0.45);
    --vk-radius: 16px;
    --vk-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----------------------------------------------------------------
   Section title — refined typography + gradient underline accent
   ---------------------------------------------------------------- */
.about-section .sec-title h1,
.trusted-service-area .sec-title h1,
.best-service-area .sec-title h2,
.wheel-work-area .sec-title h1,
.faq-and-gallery-area .sec-title h1,
.meet-our-specialist-area .sec-title h1,
.our-latest-news-area .sec-title h1 {
    font-family: 'Titillium Web', 'Roboto Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 0.4px;
    position: relative;
    margin-bottom: 6px;
}

.about-section .sec-title span.decor,
.trusted-service-area .sec-title span.decor,
.best-service-area .sec-title span.decor,
.wheel-work-area .sec-title span.decor,
.faq-and-gallery-area .sec-title span.decor,
.meet-our-specialist-area .sec-title span.decor,
.our-latest-news-area .sec-title span.decor {
    border: none;
    width: 70px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--vk-navy), var(--vk-green));
}

.about-section .sec-title span.decor::before,
.about-section .sec-title span.decor::after,
.trusted-service-area .sec-title span.decor::before,
.trusted-service-area .sec-title span.decor::after,
.best-service-area .sec-title span.decor::before,
.best-service-area .sec-title span.decor::after,
.wheel-work-area .sec-title span.decor::before,
.wheel-work-area .sec-title span.decor::after,
.faq-and-gallery-area .sec-title span.decor::before,
.faq-and-gallery-area .sec-title span.decor::after,
.meet-our-specialist-area .sec-title span.decor::before,
.meet-our-specialist-area .sec-title span.decor::after,
.our-latest-news-area .sec-title span.decor::before,
.our-latest-news-area .sec-title span.decor::after {
    width: 26px;
    height: 4px;
    top: 0;
    border-radius: 4px;
    background: var(--vk-gold);
    opacity: 0.85;
}

.about-section .sec-title span.decor::before,
.trusted-service-area .sec-title span.decor::before,
.best-service-area .sec-title span.decor::before,
.wheel-work-area .sec-title span.decor::before,
.faq-and-gallery-area .sec-title span.decor::before,
.meet-our-specialist-area .sec-title span.decor::before,
.our-latest-news-area .sec-title span.decor::before {
    left: -34px;
}

.about-section .sec-title span.decor::after,
.trusted-service-area .sec-title span.decor::after,
.best-service-area .sec-title span.decor::after,
.wheel-work-area .sec-title span.decor::after,
.faq-and-gallery-area .sec-title span.decor::after,
.meet-our-specialist-area .sec-title span.decor::after,
.our-latest-news-area .sec-title span.decor::after {
    right: -34px;
}

/* ----------------------------------------------------------------
   ABOUT US
   ---------------------------------------------------------------- */
.about-section {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
    padding: 70px 0 !important;
}

.about-section > .container > .row > .col-md-12 {
    background: #fff;
    border: 1px solid var(--vk-line);
    border-radius: var(--vk-radius);
    box-shadow: var(--vk-card-shadow);
    padding: 38px 34px;
}

/* Clear the homepage About columns (col-md-9 / col-md-3 float) so the
   card wraps them, without using flex (which would shrink full-width
   accordion content on pages that also use .about-section). */
.about-section > .container > .row > .col-md-12::after {
    content: "";
    display: table;
    clear: both;
}

.about-section > .container > .row > .col-md-12 .col-md-9 {
    padding-right: 34px;
}

.about-section .sec-title.text-center {
    text-align: left;
}

.about-section .sec-title.text-center span.decor {
    margin-left: 0;
}

.about-section .sec-title.text-center span.decor::before {
    display: none;
}

.about-section p {
    color: var(--vk-muted);
    line-height: 1.9;
    text-align: justify;
}

.about-section .btn.btn-primary {
    margin-top: 14px;
    background: linear-gradient(90deg, var(--vk-navy), var(--vk-navy-dark));
    border: none;
    padding: 12px 34px;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 0.4px;
    box-shadow: 0 10px 22px -8px rgba(0, 82, 156, 0.65);
    transition: transform 0.3s var(--vk-ease), box-shadow 0.3s var(--vk-ease), background 0.3s var(--vk-ease);
}

.about-section .btn.btn-primary:hover {
    background: linear-gradient(90deg, var(--vk-green-dark), var(--vk-green));
    transform: translateY(-2px);
    box-shadow: 0 16px 28px -10px rgba(7, 191, 111, 0.6);
}

.about-section .col-md-3 img,
.about-section .col-md-4 img {
    border: none !important;
    border-radius: var(--vk-radius) !important;
    box-shadow: var(--vk-card-shadow);
    padding: 6px;
    background: linear-gradient(135deg, var(--vk-navy), var(--vk-green)) !important;
    width: 100%;
}

/* ----------------------------------------------------------------
   WHAT WE DO  (trusted-service-area)
   Override the inline .single-items rule from Index.cshtml.
   ---------------------------------------------------------------- */
.trusted-service-area {
    background: #ffffff;
    padding: 70px 0;
}

.trusted-service-area .single-item.single-items {
    height: auto !important;
    background: #fff !important;
    border: 1px solid var(--vk-line) !important;
    border-radius: var(--vk-radius);
    box-shadow: var(--vk-card-shadow) !important;
    padding: 34px 26px 30px !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--vk-ease), box-shadow 0.35s var(--vk-ease);
    min-height: 290px;
}

.trusted-service-area .single-item.single-items::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vk-navy), var(--vk-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--vk-ease);
}

.trusted-service-area .single-item.single-items:hover {
    transform: translateY(-8px);
    box-shadow: var(--vk-card-shadow-hover) !important;
}

.trusted-service-area .single-item.single-items:hover::before {
    transform: scaleX(1);
}

.trusted-service-area .single-item .icon-holder {
    width: 92px;
    height: 92px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 82, 156, 0.10), rgba(7, 191, 111, 0.12));
    border: 1px solid rgba(0, 82, 156, 0.12);
    transition: transform 0.35s var(--vk-ease);
}

.trusted-service-area .single-item.single-items:hover .icon-holder {
    transform: scale(1.08) rotate(-3deg);
}

.trusted-service-area .single-item .icon-holder img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.trusted-service-area .single-item .content h3 {
    color: var(--vk-ink);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.trusted-service-area .single-item .content p {
    color: var(--vk-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.trusted-service-area .single-item .content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--vk-navy);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: color 0.3s var(--vk-ease), gap 0.3s var(--vk-ease);
}

.trusted-service-area .single-item .content a i {
    transition: transform 0.3s var(--vk-ease);
}

.trusted-service-area .single-item .content a:hover {
    color: var(--vk-green-dark);
}

.trusted-service-area .single-item .content a:hover i {
    transform: translateX(4px);
}

/* ----------------------------------------------------------------
   OTHER SERVICES  (best-service-area)
   ---------------------------------------------------------------- */
.best-service-area {
    background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
    padding-bottom: 70px;
}

.best-service-area .our-best-service-items .single-item {
    border-radius: var(--vk-radius);
    overflow: hidden;
    box-shadow: var(--vk-card-shadow);
    transition: transform 0.35s var(--vk-ease), box-shadow 0.35s var(--vk-ease);
}

.best-service-area .our-best-service-items .single-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--vk-card-shadow-hover);
}

.best-service-area .single-item > .img-holder img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s var(--vk-ease);
}

.best-service-area .single-item:hover > .img-holder img {
    transform: scale(1.06);
}

.best-service-area .single-item .title {
    background: #fff;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--vk-navy), var(--vk-green)) 1;
}

.best-service-area .single-item .title h3 {
    color: var(--vk-ink);
    font-weight: 700;
}

.best-service-area .single-item .overlay {
    background: linear-gradient(135deg, rgba(0, 82, 156, 0.92), rgba(7, 191, 111, 0.92));
}

/* ----------------------------------------------------------------
   TESTIMONIALS  (wheel-work-area)
   ---------------------------------------------------------------- */
.wheel-work-area {
    background: linear-gradient(135deg, var(--vk-navy-dark), var(--vk-navy));
    position: relative;
    padding: 70px 0;
}

.wheel-work-area .single-testimonial-item {
    margin: 12px;
}

.wheel-work-area .single-testimonial-item .content {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--vk-radius);
    padding: 30px 28px 34px;
    box-shadow: 0 20px 45px -20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.wheel-work-area .single-testimonial-item .content::before {
    content: "\201C";
    position: absolute;
    top: 6px;
    left: 20px;
    font-family: Georgia, serif;
    font-size: 70px;
    line-height: 1;
    color: rgba(0, 82, 156, 0.14);
}

.wheel-work-area .single-testimonial-item .content p {
    color: var(--vk-muted);
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.wheel-work-area .single-testimonial-item .client-info {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    padding-left: 6px;
}

.wheel-work-area .single-testimonial-item .client-photo {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    flex: 0 0 auto;
}

.wheel-work-area .single-testimonial-item .client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wheel-work-area .single-testimonial-item .client-name h6 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}

/* ----------------------------------------------------------------
   GALLERY  (faq-and-gallery-area / work-gallery)
   ---------------------------------------------------------------- */
.faq-and-gallery-area {
    background: #ffffff;
    padding: 70px 0;
}

.faq-and-gallery-area .work-gallery-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.faq-and-gallery-area .work-gallery-items .single-item {
    padding: 10px;
}

.faq-and-gallery-area .work-gallery-items .single-item .img-holder {
    border-radius: var(--vk-radius);
    overflow: hidden;
    box-shadow: var(--vk-card-shadow);
    position: relative;
}

.faq-and-gallery-area .work-gallery-items .single-item .img-holder img {
    width: 100%;
    height: 260px !important;
    object-fit: cover;
    transition: transform 0.6s var(--vk-ease);
}

.faq-and-gallery-area .work-gallery-items .single-item:hover .img-holder img {
    transform: scale(1.08);
}

.faq-and-gallery-area .work-gallery-items .single-item .overlay {
    background: linear-gradient(135deg, rgba(0, 82, 156, 0.78), rgba(7, 191, 111, 0.78));
    opacity: 0;
    transition: opacity 0.4s var(--vk-ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-and-gallery-area .work-gallery-items .single-item:hover .overlay {
    opacity: 1;
}

/* ----------------------------------------------------------------
   VIDEOS  (meet-our-specialist-area / Video_blcok)
   Override the harsh black-border blocks from _Layout.cshtml.
   ---------------------------------------------------------------- */
.meet-our-specialist-area {
    background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
    padding: 70px 0;
}

/* Scoped to .Video_blcok so it applies on BOTH the homepage and the
   ResourceCenter/Videos page (removes the old black border + frame). */
.Video_blcok .blocks {
    margin-bottom: 26px;
}

.Video_blcok .blockstart {
    border: none !important;
    border-radius: var(--vk-radius);
    overflow: hidden;
    padding: 0 !important;
    height: auto !important;
    box-shadow: var(--vk-card-shadow);
    background: #fff;
    transition: transform 0.35s var(--vk-ease), box-shadow 0.35s var(--vk-ease);
    position: relative;
}

.Video_blcok .blockstart:hover {
    transform: translateY(-6px);
    box-shadow: var(--vk-card-shadow-hover);
}

.Video_blcok .blockstart a {
    display: block;
    position: relative;
}

.Video_blcok .blockstart a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.45) 100%);
    transition: background 0.35s var(--vk-ease);
}

.Video_blcok .blockimg {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover;
    display: block;
    border: none !important;
}

.Video_blcok .blocks .blockstart span.fa-play {
    width: 70px !important;
    height: 70px !important;
    margin-top: -35px !important;
    margin-left: -35px !important;
    line-height: 70px !important;
    font-size: 26px !important;
    text-align: center;
    color: #fff !important;
    background: linear-gradient(135deg, var(--vk-navy), var(--vk-green));
    border-radius: 50%;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
    z-index: 2;
    transition: transform 0.35s var(--vk-ease);
}

.Video_blcok .blockstart:hover span.fa-play {
    transform: translate(0, 0) scale(1.12);
}

.Video_blcok .blocks .greenhead {
    background: #fff !important;
    color: var(--vk-ink) !important;
    font-size: 16px !important;
    font-weight: 600;
    line-height: 1.4 !important;
    padding: 16px 14px !important;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--vk-navy), var(--vk-green)) 1;
}

/* ----------------------------------------------------------------
   GROW YOUR INVESTMENT (light polish so it matches)
   ---------------------------------------------------------------- */
.our-latest-news-area {
    padding: 60px 0;
}

.our-latest-news-area p {
    color: var(--vk-muted);
    line-height: 1.9;
}

/* ----------------------------------------------------------------
   RESPONSIVE  (tablet + mobile)
   ---------------------------------------------------------------- */
@media (max-width: 991px) {
    .about-section > .container > .row > .col-md-12 {
        padding: 28px 22px;
    }

    .about-section > .container > .row > .col-md-12 .col-md-9,
    .about-section > .container > .row > .col-md-12 .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-section > .container > .row > .col-md-12 .col-md-9 {
        padding-right: 0;
    }

    .about-section .col-md-3 {
        margin-top: 24px;
    }

    .about-section .col-md-3 img,
    .about-section .col-md-4 img {
        max-width: 320px;
        display: block;
        margin: 0 auto;
    }

    .trusted-service-area .single-item.single-items {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .about-section,
    .trusted-service-area,
    .best-service-area,
    .wheel-work-area,
    .faq-and-gallery-area,
    .meet-our-specialist-area {
        padding: 45px 0 !important;
    }

    .about-section .sec-title.text-center,
    .about-section .sec-title.text-center span.decor {
        text-align: center;
    }

    .trusted-service-area .row {
        padding-top: 0 !important;
    }

    .trusted-service-area .single-item.single-items {
        margin-bottom: 22px;
    }

    .best-service-area .our-best-service-items .single-item {
        margin-bottom: 22px;
    }

    .best-service-area .single-item > .img-holder img {
        height: 210px;
    }

    .faq-and-gallery-area .work-gallery-items .single-item {
        width: 50%;
    }

    .faq-and-gallery-area .work-gallery-items .single-item .img-holder img {
        height: 380px !important;
    }

    .meet-our-specialist-area .blockimg {
        height: 220px !important;
    }

    .wheel-work-area .single-testimonial-item .content {
        padding: 26px 22px 30px;
    }
}

/* ----------------------------------------------------------------
   DATA TABLES  (Bootstrap .table — used across LIC Info, Knowledge,
   Resource Center, Calculators). Self-styled .bordered tables are
   intentionally left as-is.
   ---------------------------------------------------------------- */
.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid var(--vk-line);
    border-radius: var(--vk-radius);
    overflow: hidden;
    box-shadow: var(--vk-card-shadow);
    margin-bottom: 26px;
    font-size: 15px;
}

.table > thead > tr > th,
.table > thead > tr > td {
    background: linear-gradient(135deg, var(--vk-navy), var(--vk-navy-dark));
    color: #fff !important;
    border: none;
    border-bottom: 3px solid var(--vk-green);
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 13.5px;
    padding: 14px 16px;
    vertical-align: middle;
}

.table > tbody > tr > td,
.table > tbody > tr > th {
    border-top: 1px solid var(--vk-line);
    padding: 12px 16px;
    color: var(--vk-ink);
    vertical-align: middle;
}

.table > tbody > tr:first-child > td,
.table > tbody > tr:first-child > th {
    border-top: none;
}

/* Vertical column separators (skip the first cell in each row) */
.table > thead > tr > th + th,
.table > thead > tr > td + td {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.table > tbody > tr > td + td,
.table > tbody > tr > th + th {
    border-left: 1px solid var(--vk-line);
}

/* Zebra striping (overrides Bootstrap .table-striped greys) */
.table.table-striped > tbody > tr:nth-of-type(odd),
.table > tbody > tr:nth-of-type(odd) {
    background-color: #f6f9fc;
}

.table.table-striped > tbody > tr:nth-of-type(even),
.table > tbody > tr:nth-of-type(even) {
    background-color: #ffffff;
}

/* Row hover */
.table > tbody > tr:hover,
.table.table-hover > tbody > tr:hover {
    background-color: #eaf3fb;
    transition: background-color 0.2s var(--vk-ease);
}

/* Bordered variant: keep crisp inner cell lines but soft colour */
.table.table-bordered {
    border: 1px solid var(--vk-line);
}

.table.table-bordered > thead > tr > th,
.table.table-bordered > thead > tr > td {
    border: none;
    border-bottom: 3px solid var(--vk-green);
}

.table.table-bordered > tbody > tr > td,
.table.table-bordered > tbody > tr > th {
    border: 1px solid var(--vk-line);
}

/* Plain text links inside tables stay on-brand... */
.table > tbody > tr > td a:not(.aut-cr-btn):not(.btn) {
    color: var(--vk-navy);
    font-weight: 600;
}

.table > tbody > tr > td a:not(.aut-cr-btn):not(.btn):hover {
    color: var(--vk-green-dark);
}

/* ...but button-style links (e.g. the "View" action button) keep
   their white label so it stays readable on the coloured button. */
.table > tbody > tr > td a.aut-cr-btn,
.table > tbody > tr > td a.aut-cr-btn:hover,
.table > tbody > tr > td a.btn {
    color: #fff !important;
}

/* Responsive: let wide tables scroll horizontally on small screens
   instead of breaking the layout. */
@media (max-width: 767px) {
    .table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        font-size: 14px;
    }

    .table > thead > tr > th,
    .table > thead > tr > td {
        padding: 11px 12px;
    }

    .table > tbody > tr > td,
    .table > tbody > tr > th {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .faq-and-gallery-area .work-gallery-items .single-item {
        width: 100%;
    }

    .about-section .sec-title h1,
    .trusted-service-area .sec-title h1,
    .wheel-work-area .sec-title h1,
    .faq-and-gallery-area .sec-title h1,
    .meet-our-specialist-area .sec-title h1 {
        font-size: 24px;
        line-height: 30px;
    }

    .best-service-area .sec-title h2 {
        font-size: 22px;
    }
}

/* ----------------------------------------------------------------
   BREADCRUMB BANNER (shared inner-page header, e.g. "LIC PLANS")
   Adds a navy gradient overlay so the title is always crisp/readable
   over the background image.
   ---------------------------------------------------------------- */
.breadcrumb-area {
    position: relative;
    padding-top: 70px !important;
    padding-bottom: 70px !important;
    background-blend-mode: multiply;
}

.breadcrumb-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(2, 58, 110, 0.92), rgba(0, 82, 156, 0.78) 55%, rgba(7, 191, 111, 0.62));
}

.breadcrumb-area .container {
    position: relative;
    z-index: 1;
}

.breadcrumbs h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.5px;
}

.breadcrumbs h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 4px;
    background: #fff;
    opacity: 0.9;
}

/* ----------------------------------------------------------------
   ACCORDION  (LIC Plans / FAQ — .our_client_faq_area)
   Selectors mirror the high-specificity rules in _Layout.cshtml so
   they override cleanly. Turns the flat bars into spaced, rounded,
   gradient cards with a circular toggle badge.
   ---------------------------------------------------------------- */
.our_client_faq_area .fast_faq_area .fast_faq_content .panel-group .panel-default {
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 10px 26px -14px rgba(16, 42, 67, 0.4);
    background: #fff;
    border: 1px solid var(--vk-line) !important;
}

.our_client_faq_area .fast_faq_area .fast_faq_content .panel-group .panel + .panel {
    margin-top: 16px !important;
}

/* Header link */
.our_client_faq_area .fast_faq_area .fast_faq_content .panel-group .panel-default .panel-heading .panel-title a,
.our_client_faq_area .fast_faq_area .fast_faq_content .panel-group .panel-default .panel-heading .panel-title a.collapsed {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    background: #ffffff !important;
    color: var(--vk-ink) !important;
    transition: background 0.3s var(--vk-ease), color 0.3s var(--vk-ease);
}

.our_client_faq_area .fast_faq_area .fast_faq_content .panel-group .panel-default .panel-heading .panel-title a span {
    padding: 18px 4px;
    font-size: 17px !important;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Toggle badge (the +/- icon) */
.our_client_faq_area .fast_faq_area .fast_faq_content .panel-group .panel-default .panel-heading .panel-title a:before,
.our_client_faq_area .fast_faq_area .fast_faq_content .panel-group .panel-default .panel-heading .panel-title a.collapsed:before {
    content: "\f068"; /* minus (open state) */
    width: 56px;
    height: auto;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    font-family: "FontAwesome";
    background: linear-gradient(135deg, var(--vk-green-dark), var(--vk-green));
    padding: 0;
    margin-right: 0;
    transition: all 0.3s var(--vk-ease);
}

/* Open (expanded) state — green header accent */
.our_client_faq_area .fast_faq_area .fast_faq_content .panel-group .panel-default .panel-heading .panel-title a:not(.collapsed) {
    background: linear-gradient(90deg, rgba(0, 82, 156, 0.10), rgba(7, 191, 111, 0.08)) !important;
    color: var(--vk-navy) !important;
}

.our_client_faq_area .fast_faq_area .fast_faq_content .panel-group .panel-default .panel-heading .panel-title a:not(.collapsed) span {
    color: var(--vk-navy) !important;
}

/* Collapsed state — plus icon on navy badge */
.our_client_faq_area .fast_faq_area .fast_faq_content .panel-group .panel-default .panel-heading .panel-title a.collapsed:before {
    content: "\f067"; /* plus */
    background: linear-gradient(135deg, var(--vk-navy), var(--vk-navy-dark));
}

.our_client_faq_area .fast_faq_area .fast_faq_content .panel-group .panel-default .panel-heading .panel-title a.collapsed:hover {
    color: var(--vk-navy) !important;
    background: rgba(0, 82, 156, 0.06) !important;
}

/* Body */
.our_client_faq_area .fast_faq_area .fast_faq_content .panel-group .panel-default .panel-body {
    margin: 0 !important;
    border: none !important;
    border-top: 1px solid var(--vk-line) !important;
    padding: 22px 24px !important;
    color: var(--vk-ink);
}

@media (max-width: 767px) {
    .our_client_faq_area .fast_faq_area .fast_faq_content .panel-group .panel-default .panel-heading .panel-title a span {
        font-size: 15px !important;
        padding: 15px 4px;
    }

    .our_client_faq_area .fast_faq_area .fast_faq_content .panel-group .panel-default .panel-heading .panel-title a:before,
    .our_client_faq_area .fast_faq_area .fast_faq_content .panel-group .panel-default .panel-heading .panel-title a.collapsed:before {
        width: 46px;
    }

    .breadcrumbs h1 {
        font-size: 28px;
    }
}

/* ----------------------------------------------------------------
   ONLINE PREMIUM PAYMENT cards (.yel) — equal-height cards with
   content centred both ways and matching buttons.
   ---------------------------------------------------------------- */
/* Neutralise the nested .container so it fits inside the card instead
   of using Bootstrap's fixed width (which overflowed the right card). */
.about-section section.padding > .container {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.about-section section.padding .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
}

.about-section section.padding .row > [class*="col-"] {
    display: flex;
    float: none;
}

.about-section .yel {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(160deg, #ffd94a, #f5bd06);
    border: none;
    border-radius: var(--vk-radius);
    box-shadow: var(--vk-card-shadow);
    padding: 38px 26px;
    transition: transform 0.35s var(--vk-ease), box-shadow 0.35s var(--vk-ease);
}

.about-section .yel:hover {
    transform: translateY(-6px);
    box-shadow: var(--vk-card-shadow-hover);
}

.about-section .yel p {
    margin: 0;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.7;
}

.about-section .yel p img {
    display: block;
    margin: 4px auto 16px !important;
    max-width: 78%;
    height: auto;
}

.about-section .yel .aut-cr-btn {
    display: table;
    margin: 24px auto 0 !important;
    background: linear-gradient(135deg, var(--vk-navy), var(--vk-navy-dark));
    border: none;
    color: #fff !important;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 13.5px;
    box-shadow: 0 10px 20px -8px rgba(0, 82, 156, 0.7);
    transition: background 0.3s var(--vk-ease), transform 0.3s var(--vk-ease);
}

.about-section .yel .aut-cr-btn:hover {
    background: linear-gradient(135deg, var(--vk-green-dark), var(--vk-green));
    transform: translateY(-2px);
    color: #fff !important;
}

/* ----------------------------------------------------------------
   CALCULATOR flip cards (Home/Calculator) — shrink the oversized
   icons so they read clearly, and tidy the card.
   ---------------------------------------------------------------- */
.about-section .flip .inner img,
.about-section .flip .inner1 img {
    display: block;
    width: auto;
    max-width: 110px;
    max-height: 110px;
    height: auto;
    margin: 0 auto 6px;
}

.about-section .flip .inner {
    border-radius: 12px;
    box-shadow: var(--vk-card-shadow);
    padding: 28px 20px;
}

.about-section .flip .inner h3 b {
    color: var(--vk-ink);
}

@media (max-width: 991px) {
    .about-section section.padding .row {
        display: block;
    }

    .about-section section.padding .row > [class*="col-"] {
        display: block;
    }

    .about-section .yel {
        margin-bottom: 20px;
        min-height: 230px;
    }
}
